/* EDM V8.6 ACTIVE - standards éditoriaux 2026 */
:root {
  --edm-blue: #235f83;
  --edm-blue-dark: #174862;
  --edm-ink: #111827;
  --edm-text: #273444;
  --edm-muted: #6b7280;
  --edm-line: #e5e7eb;
  --edm-soft: #f5f7f9;
  --edm-white: #ffffff;
  --edm-black: #171717;
  --edm-orange: #f47c38;
  --edm-container-max: 1560px;
  --edm-gutter: clamp(16px, 2.4vw, 48px);
  --edm-radius: 2px;
  --edm-sidebar: 340px;
  --edm-shadow: 0 1px 2px rgba(15, 23, 42, .08);
  --edm-font: "Arial Narrow", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body.edm-v8 {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  min-width: 0 !important;
  width: 100% !important;
  overflow-x: hidden !important;
  color: var(--edm-text);
  background: var(--edm-soft);
  font-family: var(--edm-font);
  font-size: 16px;
  line-height: 1.55;
}
body.edm-v8 > * { max-width: none; }
a { color: #006f94; text-decoration: none; }
a:hover { color: var(--edm-blue-dark); text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

.edm-skip-link {
  position: absolute; left: -999px; top: 0; z-index: 9999;
  padding: 10px 14px; background: #fff; color: #000;
}
.edm-skip-link:focus { left: 10px; top: 10px; }

.edm-container {
  width: min(var(--edm-container-max), calc(100vw - var(--edm-gutter)));
  margin-inline: auto;
}

/* Header */
.edm-site-header, .edm-site-main, .edm-site-footer { display: block !important; width: 100% !important; clear: both !important; }
.edm-topbar { background: var(--edm-black); color: #fff; font-size: 14px; }
.edm-topbar-inner { min-height: 28px; display: flex; justify-content: flex-end; align-items: center; }
.edm-top-menu, .edm-primary-menu, .edm-footer-menu { list-style: none; margin: 0; padding: 0; }
.edm-top-menu { display: flex; gap: 22px; flex-wrap: wrap; }
.edm-top-menu a { color: #fff; line-height: 28px; }

.edm-brandbar { background: #fff; }
.edm-brandbar-inner { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.edm-site-title { display: block; font-size: clamp(28px, 2.3vw, 38px); line-height: 1; color: #106a8d; font-weight: 700; letter-spacing: .16em; text-decoration: none; }
.edm-site-title:hover { text-decoration: none; color: #106a8d; }
.edm-site-description { margin: 8px 0 0; color: #666; font-size: 15px; }
.custom-logo { max-height: 72px; width: auto; }
.edm-subscribe-button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; padding: 0 18px; background: var(--edm-orange); color: #fff;
  font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.edm-subscribe-button:hover { color: #fff; text-decoration: none; background: #df6826; }

.edm-mainnav { background: var(--edm-blue); }
.edm-mainnav-inner { display: flex; align-items: center; min-height: 50px; }
.edm-primary-menu { display: flex; align-items: center; flex-wrap: wrap; }
.edm-primary-menu > li > a {
  display: block; padding: 17px 18px; color: #fff; text-transform: uppercase;
  font-weight: 700; font-size: 14px; line-height: 1;
}
.edm-primary-menu > li > a:hover { background: rgba(0,0,0,.13); text-decoration: none; color: #fff; }
.edm-menu-toggle { display: none; border: 0; background: rgba(0,0,0,.15); color: #fff; padding: 12px 14px; font-weight: 700; text-transform: uppercase; }

/* Layout */
.edm-site-main { padding: 32px 0 44px; }
.edm-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) var(--edm-sidebar) !important;
  gap: 30px !important;
  align-items: start;
}
.edm-content-column { min-width: 0; display: block !important; }

/* Hero */
.edm-hero { background: #fff; border: 1px solid var(--edm-line); box-shadow: var(--edm-shadow); margin-bottom: 28px; }
.edm-hero-image { display: block; background: #d8e6ec; }
.edm-hero-image img { width: 100%; aspect-ratio: 16 / 7.35; object-fit: cover; }
.edm-hero-body { padding: 20px 22px 22px; }
.edm-kicker { display: inline-flex; color: #fff; background: var(--edm-blue); padding: 5px 9px; font-size: 12px; text-transform: uppercase; font-weight: 700; letter-spacing: .03em; margin-bottom: 10px; }
.edm-hero h1 { margin: 0 0 8px; color: var(--edm-ink); font-size: clamp(28px, 3vw, 46px); line-height: 1.08; font-weight: 500; }
.edm-hero h1 a { color: inherit; }
.edm-hero p { font-size: 18px; margin: 12px 0 0; color: #465260; max-width: 78ch; }

.edm-meta { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; color: var(--edm-muted); font-size: 13px; text-transform: none; }
.edm-meta span:not(:last-child)::after { content: '|'; padding-left: 6px; color: #b0b7c0; }

/* Sections */
.edm-section { margin: 28px 0 34px; }
.edm-section-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 3px solid var(--edm-blue); margin-bottom: 16px; }
.edm-section-header h2 { margin: 0; display: inline-flex; background: var(--edm-blue); color: #fff; padding: 8px 13px; font-size: 22px; line-height: 1; }
.edm-section-header a { font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--edm-blue-dark); }

.edm-card-grid { display: grid !important; gap: 20px; }
.edm-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.edm-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.edm-card { background: #fff; border: 1px solid var(--edm-line); box-shadow: var(--edm-shadow); min-width: 0; }
.edm-card-image { display: block; background: #f0f3f6; }
.edm-card-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.edm-card-body { padding: 13px 14px 15px; }
.edm-card-title { margin: 0 0 8px; font-size: 19px; line-height: 1.24; font-weight: 500; }
.edm-card-title a { color: var(--edm-ink); }
.edm-card-excerpt { margin: 10px 0 0; color: #4b5563; }
.edm-image-placeholder { display: grid; place-items: center; width: 100%; aspect-ratio: 16 / 9; background: linear-gradient(135deg, #d9edf3, #f7fbfd); color: #0b6384; font-weight: 700; }

.edm-featured-list { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: 20px; }
.edm-featured-list .edm-card-featured { grid-row: span 4; }
.edm-card-featured .edm-card-title { font-size: 24px; }
.edm-card-horizontal { display: grid; grid-template-columns: 128px minmax(0,1fr); gap: 0; }
.edm-card-horizontal .edm-card-image img, .edm-card-horizontal .edm-image-placeholder { height: 100%; aspect-ratio: auto; object-fit: cover; }
.edm-card-horizontal .edm-card-title { font-size: 16px; }
.edm-card-horizontal .edm-card-excerpt { display: none; }

.edm-compact-list { background: #fff; border: 1px solid var(--edm-line); }
.edm-compact-item { padding: 13px 16px; border-bottom: 1px solid var(--edm-line); }
.edm-compact-item:last-child { border-bottom: 0; }
.edm-compact-item h3 { margin: 0 0 6px; font-size: 17px; line-height: 1.25; font-weight: 500; }
.edm-compact-item h3 a { color: var(--edm-ink); }

/* Sidebar */
.edm-sidebar { display: block !important; width: 100% !important; min-width: 0; }
.edm-widget { background: #fff; border: 1px solid var(--edm-line); margin-bottom: 22px; box-shadow: var(--edm-shadow); }
.edm-widget-title { background: var(--edm-blue); color: #fff; padding: 9px 13px; margin: 0; font-size: 17px; line-height: 1; font-weight: 500; }
.edm-widget > :not(.edm-widget-title) { margin: 14px; }
.edm-ad-box { min-height: 250px; border: 1px dashed #c9cdd3; background: #fafafa; display: grid; place-items: center; color: #8b8f96; }
.edm-news-list { list-style: none; padding: 0; margin: 0; }
.edm-news-list li { padding: 10px 0; border-bottom: 1px solid var(--edm-line); font-size: 14px; }
.edm-news-list li:last-child { border-bottom: 0; }

/* Single / archive */
.edm-single-article, .edm-page-narrow { background: #fff; border: 1px solid var(--edm-line); padding: clamp(22px, 3vw, 42px); }
.edm-page-narrow { max-width: 960px; margin: 0 auto; }
.edm-single-header h1, .edm-archive-header h1 { margin: 0 0 12px; color: var(--edm-ink); font-size: clamp(34px, 4vw, 56px); line-height: 1.07; font-weight: 500; }
.edm-single-image { margin: 24px 0; }
.edm-single-image img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.edm-entry-content { font-size: 18px; line-height: 1.72; color: #26323f; }
.edm-entry-content p { margin: 0 0 1.25em; }
.edm-entry-content h2, .edm-entry-content h3 { color: var(--edm-ink); line-height: 1.2; margin: 1.6em 0 .6em; }
.edm-entry-content a { text-decoration: underline; text-underline-offset: 2px; }
.edm-tags { margin-top: 28px; color: var(--edm-muted); }
.edm-related { margin-top: 32px; }
.edm-related h2 { font-size: 24px; margin: 0 0 16px; }
.edm-archive-header { background: #fff; border: 1px solid var(--edm-line); padding: 24px; margin-bottom: 22px; }
.edm-archive-header h1 { font-size: clamp(30px, 3vw, 44px); }
.edm-pagination { margin-top: 26px; }
.edm-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.edm-pagination a, .edm-pagination span { background: #fff; border: 1px solid var(--edm-line); padding: 8px 12px; }

/* Footer */
.edm-site-footer { background: var(--edm-black); color: #fff; margin-top: 32px; }
.edm-footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 42px; padding: 34px 0; }
.edm-footer-title, .edm-footer-brand h2 { color: #fff; margin: 0 0 12px; font-size: 20px; }
.edm-site-footer a { color: #fff; }
.edm-footer-menu li { margin-bottom: 8px; }
.edm-footer-cta { display: inline-flex; background: var(--edm-blue); padding: 8px 12px; }
.edm-footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 13px 0; color: #cfd4dc; font-size: 13px; }

/* Defensive reset against parent/old CSS */
body.edm-v8 .site,
body.edm-v8 .site-content,
body.edm-v8 .content-area,
body.edm-v8 .inside-article,
body.edm-v8 .edm-site-header,
body.edm-v8 .edm-site-main,
body.edm-v8 .edm-site-footer {
  float: none !important;
  clear: both !important;
  transform: none !important;
}

@media (max-width: 1280px) {
  :root { --edm-container-max: 1180px; --edm-sidebar: 320px; }
  .edm-grid-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .edm-layout { grid-template-columns: 1fr !important; }
  .edm-sidebar { display: grid !important; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
  .edm-widget { margin-bottom: 0; }
}

@media (max-width: 820px) {
  :root { --edm-gutter: 24px; }
  .edm-topbar-inner { justify-content: flex-start; }
  .edm-top-menu { gap: 14px; overflow-x: auto; flex-wrap: nowrap; white-space: nowrap; }
  .edm-brandbar-inner { min-height: 86px; }
  .edm-menu-toggle { display: inline-flex; margin: 8px 0; }
  .edm-mainnav-inner { flex-direction: column; align-items: stretch; }
  .edm-primary-menu { display: none; flex-direction: column; align-items: stretch; width: 100%; }
  .edm-primary-menu.is-open { display: flex; }
  .edm-primary-menu > li > a { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.18); }
  .edm-grid-3, .edm-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .edm-featured-list { grid-template-columns: 1fr; }
  .edm-footer-grid { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 600px) {
  :root { --edm-gutter: 18px; }
  .edm-brandbar-inner { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .edm-subscribe-button { align-self: flex-start; }
  .edm-site-main { padding-top: 20px; }
  .edm-hero-image img { aspect-ratio: 16 / 10; }
  .edm-hero-body { padding: 16px; }
  .edm-grid-3, .edm-grid-4, .edm-sidebar { grid-template-columns: 1fr !important; }
  .edm-card-horizontal { grid-template-columns: 106px minmax(0, 1fr); }
  .edm-section-header h2 { font-size: 19px; }
  .edm-entry-content { font-size: 17px; }
}

/* EDM V8.4 - ajustements demandés : #235f83, Arial Narrow, header proche existant */
:root {
  --edm-blue: #235f83;
  --edm-blue-dark: #174862;
  --edm-font: "Arial Narrow", Arial, Helvetica, sans-serif;
}

body.edm-v8 {
  font-family: var(--edm-font) !important;
  font-stretch: condensed;
}

body.edm-v8 a {
  color: var(--edm-blue);
}

body.edm-v8 a:hover {
  color: var(--edm-blue-dark);
}

body.edm-v8 .edm-topbar {
  background: var(--edm-blue) !important;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}

body.edm-v8 .edm-topbar-inner {
  min-height: 52px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  justify-content: normal;
}

body.edm-v8 .edm-topbar-left,
body.edm-v8 .edm-topbar-right {
  min-width: 0;
}

body.edm-v8 .edm-top-menu {
  display: flex;
  align-items: center;
  gap: 27px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: visible;
}

body.edm-v8 .edm-top-menu a,
body.edm-v8 .edm-profile-link,
body.edm-v8 .edm-lang {
  color: #fff;
  line-height: 52px;
  text-decoration: none;
}

body.edm-v8 .edm-top-menu a:hover,
body.edm-v8 .edm-profile-link:hover {
  color: #fff;
  text-decoration: underline;
}

body.edm-v8 .edm-top-highlight a,
body.edm-v8 .edm-top-menu li:nth-last-child(2) a,
body.edm-v8 .edm-top-menu li:nth-last-child(1) a {
  color: #ffad2f;
  font-weight: 700;
}

body.edm-v8 .edm-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.edm-v8 .edm-profile-link::after {
  content: "⌄";
  margin-left: 6px;
  font-size: .85em;
}

body.edm-v8 .edm-lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

body.edm-v8 .edm-lang::after {
  content: "⌄";
  margin-left: 3px;
  font-size: .85em;
  color: rgba(255,255,255,.85);
}

body.edm-v8 .edm-top-search {
  display: flex;
  align-items: stretch;
  height: 38px;
  margin: 0;
}

body.edm-v8 .edm-top-search input {
  width: 150px;
  border: 0;
  border-radius: 0;
  background: #e88a24;
  color: #fff;
  padding: 0 12px;
  font-family: var(--edm-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  outline: none;
}

body.edm-v8 .edm-top-search input::placeholder {
  color: rgba(255,255,255,.95);
  opacity: 1;
}

body.edm-v8 .edm-top-search button {
  width: 38px;
  border: 0;
  border-radius: 0;
  background: #e88a24;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

body.edm-v8 .edm-brandnav {
  background: #fff;
  border-bottom: 1px solid #eef1f3;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}

body.edm-v8 .edm-brandnav-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

body.edm-v8 .edm-branding {
  display: flex;
  align-items: center;
  min-width: 0;
}

body.edm-v8 .edm-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

body.edm-v8 .edm-logo {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
}

body.edm-v8 .edm-mainnav {
  background: transparent !important;
}

body.edm-v8 .edm-mainnav-inner {
  min-height: 0;
  display: block;
}

body.edm-v8 .edm-primary-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
  flex-wrap: nowrap;
  white-space: nowrap;
}

body.edm-v8 .edm-primary-menu > li > a {
  position: relative;
  display: block;
  padding: 29px 0 25px;
  color: #61666b;
  background: transparent !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  text-decoration: none;
}

body.edm-v8 .edm-primary-menu > li > a:hover,
body.edm-v8 .edm-primary-menu > li.current-menu-item > a,
body.edm-v8 .edm-primary-menu > li.current-menu-ancestor > a {
  color: #e88a24;
  text-decoration: none;
}

body.edm-v8 .edm-primary-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: transparent;
}

body.edm-v8 .edm-primary-menu > li > a:hover::after,
body.edm-v8 .edm-primary-menu > li.current-menu-item > a::after,
body.edm-v8 .edm-primary-menu > li.current-menu-ancestor > a::after {
  background: #e88a24;
}

body.edm-v8 .edm-primary-menu > li:last-child > a,
body.edm-v8 .edm-primary-menu > li.menu-item:last-child > a {
  color: #0500c9;
  font-weight: 800;
}

body.edm-v8 .edm-primary-menu > li:last-child > a::after {
  display: none;
}

/* Couleur globale des titres/sections */
body.edm-v8 .edm-section-header {
  border-bottom-color: var(--edm-blue);
}
body.edm-v8 .edm-section-header h2,
body.edm-v8 .edm-kicker,
body.edm-v8 .edm-widget-title,
body.edm-v8 .edm-footer-cta {
  background: var(--edm-blue);
}
body.edm-v8 .edm-section-header a {
  color: var(--edm-blue-dark);
}

@media (max-width: 1280px) {
  body.edm-v8 .edm-brandnav-inner {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
  }
  body.edm-v8 .edm-logo { width: 190px; }
  body.edm-v8 .edm-primary-menu { gap: 20px; }
  body.edm-v8 .edm-primary-menu > li > a { font-size: 16px; }
}

@media (max-width: 1024px) {
  body.edm-v8 .edm-topbar-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  body.edm-v8 .edm-topbar-right {
    justify-content: flex-end;
  }
  body.edm-v8 .edm-brandnav-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 0;
  }
  body.edm-v8 .edm-mainnav {
    margin-top: 12px;
  }
  body.edm-v8 .edm-primary-menu {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  body.edm-v8 .edm-primary-menu > li > a {
    padding: 14px 0 12px;
  }
}

@media (max-width: 820px) {
  body.edm-v8 .edm-top-menu {
    overflow-x: auto;
  }
  body.edm-v8 .edm-topbar-right {
    justify-content: flex-start;
    overflow-x: auto;
    padding-top: 4px;
  }
  body.edm-v8 .edm-top-search input {
    width: 130px;
  }
  body.edm-v8 .edm-menu-toggle {
    display: inline-flex;
    margin: 0 0 10px;
    background: var(--edm-blue);
    color: #fff;
  }
  body.edm-v8 .edm-primary-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow: visible;
    white-space: normal;
  }
  body.edm-v8 .edm-primary-menu.is-open {
    display: flex;
  }
  body.edm-v8 .edm-primary-menu > li,
  body.edm-v8 .edm-primary-menu > li > a {
    width: 100%;
  }
  body.edm-v8 .edm-primary-menu > li > a {
    border-top: 1px solid #edf1f4;
    padding: 13px 0;
  }
}


/* V8.6 - Sous-catégories contextuelles en sidebar */
.edm-subcategories-widget .edm-widget-title {
  background: var(--edm-blue);
}
.edm-subcategory-list {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}
.edm-subcategory-item {
  border-bottom: 1px solid var(--edm-line);
}
.edm-subcategory-item:last-child {
  border-bottom: 0;
}
.edm-subcategory-item a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 13px;
  color: var(--edm-text);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.25;
}
.edm-subcategory-item a:hover,
.edm-subcategory-item.is-current a {
  color: var(--edm-blue);
  background: #f3f7fa;
}
.edm-subcategory-item.is-current a {
  font-weight: 700;
  border-left: 4px solid var(--edm-orange);
  padding-left: 9px;
}
.edm-subcategory-item em {
  flex: 0 0 auto;
  min-width: 24px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #eef3f6;
  color: #5d6b75;
  font-size: 12px;
  font-style: normal;
  text-align: center;
}


/* V8.6 - Menus déroulants : empêcher l'affichage permanent des sous-menus */
body.edm-v8 .edm-top-menu li,
body.edm-v8 .edm-primary-menu li {
  position: relative;
  list-style: none;
}

body.edm-v8 .edm-top-menu .sub-menu,
body.edm-v8 .edm-primary-menu .sub-menu {
  display: none !important;
  position: absolute;
  z-index: 9999;
  left: 0;
  top: 100%;
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .14);
  white-space: normal;
}

body.edm-v8 .edm-top-menu li:hover > .sub-menu,
body.edm-v8 .edm-top-menu li:focus-within > .sub-menu,
body.edm-v8 .edm-primary-menu li:hover > .sub-menu,
body.edm-v8 .edm-primary-menu li:focus-within > .sub-menu {
  display: block !important;
}

body.edm-v8 .edm-top-menu .sub-menu .sub-menu,
body.edm-v8 .edm-primary-menu .sub-menu .sub-menu {
  left: 100%;
  top: -8px;
}

body.edm-v8 .edm-top-menu .sub-menu a,
body.edm-v8 .edm-primary-menu .sub-menu a {
  display: block;
  padding: 10px 14px;
  color: #263238 !important;
  background: #fff !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
}

body.edm-v8 .edm-top-menu .sub-menu a:hover,
body.edm-v8 .edm-primary-menu .sub-menu a:hover {
  color: #235f83 !important;
  background: #f4f7f9 !important;
  text-decoration: none;
}

body.edm-v8 .edm-primary-menu > li.menu-item-has-children > a::before,
body.edm-v8 .edm-top-menu > li.menu-item-has-children > a::before {
  content: "⌄";
  float: right;
  margin-left: 6px;
  font-size: .75em;
  line-height: 1;
}

body.edm-v8 .edm-topbar,
body.edm-v8 .edm-brandnav,
body.edm-v8 .edm-mainnav,
body.edm-v8 .edm-topbar-inner,
body.edm-v8 .edm-brandnav-inner {
  overflow: visible !important;
}

@media (max-width: 900px) {
  body.edm-v8 .edm-top-menu .sub-menu,
  body.edm-v8 .edm-primary-menu .sub-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    padding-left: 14px;
  }
}
