:root {
  --em-petrol:#213b52;
  --em-petrol-soft:#2d5668;
  --em-orange:#FF7400;
  --em-gold:#ed9726;
  --em-cream:#fffaf3;
  --em-sand:#f7ecdf;
  --em-soft-pink:#FFCFBE;
  --em-taupe:#d9c7b8;
  --em-ink:#000000;
  --em-white:#ffffff;
  --em-shadow:0 24px 70px rgba(33,59,82,.14);
  --em-radius-lg:34px;
  --em-radius-md:24px;
  --em-radius-sm:16px;
  --em-max:1540px;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
}

body {
  margin:0;
  min-width:320px;
  background:var(--em-cream);
  color:var(--em-petrol);
  font-family:Georgia,"Times New Roman",serif;
  overflow-x:hidden;
}

img {
  display:block;
  max-width:100%;
  border:0;
}

a {
  color:inherit;
  text-decoration:none;
}

button {
  font:inherit;
}

p {
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  font-size:clamp(16px,1.05vw,18px);
  line-height:1.68;
  color:var(--em-petrol);
}

h1,
h2,
h3,
h4 {
  margin:0;
  color:var(--em-petrol);
  letter-spacing:-.045em;
}

.site-header {
  position:absolute;
  top:34px;
  left:0;
  right:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:0 72px;
  color:var(--em-white);
  background:transparent;
}

.brand-link {
  display:inline-flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
}

.brand-link img {
  width:92px;
  height:92px;
  border-radius:50%;
  object-fit:cover;
  filter:drop-shadow(0 18px 28px rgba(0,0,0,.38));
}

.primary-nav {
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex-wrap:wrap;
  gap:18px;
  max-width:calc(100% - 128px);
  font-family:Arial,Helvetica,sans-serif;
  font-size:14px;
  font-weight:800;
  line-height:1;
}

.primary-nav a {
  color:var(--em-white);
  text-shadow:0 3px 14px rgba(0,0,0,.35);
  transition:color .22s ease, opacity .22s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color:var(--em-gold);
}

.nav-search {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  margin:0;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  color:var(--em-white);
  appearance:none;
  cursor:pointer;
  line-height:1;
  box-shadow:none;
}

.nav-search svg {
  display:block;
  width:18px;
  height:18px;
}

.nav-search path {
  stroke:currentColor;
}

.nav-search:hover,
.nav-search:focus-visible {
  color:var(--em-gold);
  outline:none;
}

.news-hero {
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:var(--em-white);
  background:#111;
}

.news-hero-media {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}

.news-hero::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg, rgba(0,0,0,.42), rgba(0,0,0,.22) 42%, rgba(0,0,0,.04) 72%, rgba(0,0,0,.08));
  pointer-events:none;
}

.news-hero-inner {
  position:relative;
  z-index:2;
  width:100%;
  padding:210px 76px 96px;
}

.news-hero-copy {
  max-width:620px;
  padding-left:14px;
}

.kicker {
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  font-family:Arial,Helvetica,sans-serif;
  font-size:12px;
  font-weight:900;
  line-height:1.2;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--em-gold);
}

.kicker-dot {
  width:10px;
  height:10px;
  border-radius:50%;
  background:#16c784;
  box-shadow:0 0 0 5px rgba(22,199,132,.18);
}

.news-hero h1 {
  max-width:560px;
  color:var(--em-white);
  font-size:clamp(54px,5.5vw,96px);
  line-height:.95;
  letter-spacing:normal;
  text-wrap:balance;
  text-shadow:0 15px 34px rgba(0,0,0,.42);
}

.news-hero p {
  max-width:590px;
  margin-top:24px;
  color:rgba(255,255,255,.95);
  font-size:clamp(17px,1.55vw,21px);
  line-height:1.65;
  text-shadow:0 4px 16px rgba(0,0,0,.40);
}

.hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
  font-family:Arial,Helvetica,sans-serif;
}

.em-button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:14px 22px;
  border:0;
  border-radius:999px;
  background:var(--em-orange);
  color:var(--em-white);
  font-family:Arial,Helvetica,sans-serif;
  font-size:14px;
  font-weight:900;
  box-shadow:0 16px 34px rgba(0,0,0,.16);
  cursor:pointer;
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.em-button:hover,
.em-button:focus-visible {
  transform:translateY(-2px);
  box-shadow:0 22px 42px rgba(0,0,0,.20);
}

.em-button.em-button-light {
  background:var(--em-white);
  color:var(--em-petrol);
}

main {
  background:var(--em-cream);
}

section {
  width:100%;
  scroll-margin-top:96px;
}

.scroll-lift-target {
  animation:emScrollLift .95s ease both;
}

@keyframes emScrollLift {
  0% { transform:translateY(0); }
  35% { transform:translateY(-10px); }
  100% { transform:translateY(0); }
}

.section-inner {
  width:min(var(--em-max), calc(100% - 144px));
  margin:0 auto;
}

.section-soft {
  padding:92px 0;
  background:var(--em-cream);
}

.section-sand {
  padding:92px 0;
  background:var(--em-sand);
}

.section-orange {
  padding:96px 0;
  background:var(--em-orange);
  color:var(--em-white);
}

.section-orange h2,
.section-orange h3,
.section-orange h4,
.section-orange p,
.section-orange .kicker,
.section-orange .section-lead,
.section-orange .card-text,
.section-orange .small-label {
  color:var(--em-white);
}

.section-head {
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(280px,.72fr);
  gap:44px;
  align-items:end;
  margin-bottom:44px;
}

.section-head h2 {
  font-size:clamp(42px,5vw,82px);
  line-height:.94;
  text-wrap:balance;
}

.section-head .section-lead {
  max-width:650px;
  font-family:Arial,Helvetica,sans-serif;
  font-size:clamp(17px,1.5vw,21px);
  line-height:1.72;
}

.editorial-grid {
  display:grid;
  grid-template-columns:minmax(360px,.95fr) repeat(3,minmax(180px,.38fr));
  gap:34px;
  align-items:stretch;
}

.editorial-feature {
  min-height:440px;
  padding:46px;
  border-radius:var(--em-radius-lg);
  background:var(--em-orange);
  color:var(--em-white);
  box-shadow:var(--em-shadow);
}

.editorial-feature h2,
.editorial-feature p,
.editorial-feature .kicker {
  color:var(--em-white);
}

.editorial-feature h2 {
  max-width:760px;
  font-size:clamp(40px,5.6vw,82px);
  line-height:.92;
}

.editorial-feature p {
  max-width:710px;
  margin-top:24px;
  color:var(--em-white);
}

.editorial-point {
  min-height:440px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:36px;
  border-radius:var(--em-radius-md);
  background:var(--em-white);
  border:1px solid rgba(33,59,82,.08);
  box-shadow:0 22px 50px rgba(33,59,82,.08);
}

.point-number {
  font-family:Arial,Helvetica,sans-serif;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  color:var(--em-orange);
}

.editorial-point h3 {
  font-size:clamp(30px,3.1vw,54px);
  line-height:.96;
}

.editorial-point p {
  font-size:15px;
  color:#4b625f;
}

.status-strip {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:26px;
}

.status-pill,
.filter-button {
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  padding:10px 14px;
  border:1px solid rgba(33,59,82,.12);
  border-radius:999px;
  background:rgba(255,255,255,.78);
  color:var(--em-petrol);
  font-family:Arial,Helvetica,sans-serif;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.filter-row {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:32px;
}

.filter-button {
  cursor:pointer;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  background:var(--em-orange);
  border-color:var(--em-orange);
  color:var(--em-white);
}

.news-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.news-card {
  min-height:100%;
  border-radius:var(--em-radius-md);
  overflow:hidden;
  background:var(--em-white);
  border:1px solid rgba(33,59,82,.08);
  box-shadow:var(--em-shadow);
}

.news-card-link {
  display:flex;
  flex-direction:column;
  height:100%;
}

.news-card-media {
  height:228px;
  min-height:228px;
  overflow:hidden;
  background:#f7ecdf;
}

.news-card-image {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
}

.drawer-image.media-tourism { background-image:none; }
.drawer-image.media-unesco { background-image:url("/assets/images/news/drawer-unesco-courtyard-fountain.webp"); }
.drawer-image.media-culture { background-image:url("/assets/images/news/drawer-culture-zellige-artisan.webp"); }
.drawer-image.media-economy { background-image:url("/assets/images/news/drawer-economy-morocco-rail.webp"); }
.drawer-image.media-events { background-image:none; }
.drawer-image.media-cities { background-image:none; }
.drawer-image.media-world { background-image:url("/assets/images/news/drawer-world-marrakech-square.webp"); }
.drawer-image.media-craft { background-image:url("/assets/images/news/drawer-craft-ceramic-plates.webp"); }

.news-card-body {
  display:flex;
  flex:1;
  flex-direction:column;
  padding:28px;
}

.news-card-meta {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
  font-family:Arial,Helvetica,sans-serif;
  font-size:11px;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:var(--em-orange);
}

.news-card-meta span {
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background:#fff3e8;
}

.news-card h3 {
  font-size:clamp(25px,2.3vw,38px);
  line-height:1;
}

.news-card p {
  margin-top:16px;
  color:#4c625e;
  font-size:15px;
}

.news-link {
  margin-top:auto;
  padding-top:22px;
  color:var(--em-orange);
  font-family:Arial,Helvetica,sans-serif;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.orange-grid {
  display:grid;
  grid-template-columns:minmax(320px,.86fr) minmax(0,1fr);
  gap:32px;
  align-items:stretch;
}

.orange-panel {
  min-height:360px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:44px;
  border-radius:var(--em-radius-lg);
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.24);
}

.orange-panel h2 {
  color:var(--em-white);
  font-size:clamp(38px,5vw,76px);
  line-height:.94;
}

.orange-panel p {
  margin-top:22px;
  color:var(--em-white);
}

.page-link-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}

.page-link-card {
  min-height:170px;
  padding:28px;
  border-radius:var(--em-radius-md);
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.25);
}

.page-link-card .small-label {
  display:block;
  margin-bottom:14px;
  font-family:Arial,Helvetica,sans-serif;
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--em-white);
}

.page-link-card h3 {
  color:var(--em-white);
  font-size:clamp(26px,2.7vw,42px);
  line-height:1;
}

#news {
  background-color:var(--em-soft-pink);
}

#news .orange-panel,
#news .page-link-card {
  background-color:var(--em-white);
  border-color:rgba(0,0,0,.08);
}

#news #page-linked-title {
  color:var(--em-gold);
}

#news .kicker,
#news p,
#news .small-label,
#news .page-link-card h3 {
  color:var(--em-ink);
}

#unesco .news-card,
#unesco .empty-message {
  background-color:var(--em-white);
  border-color:rgba(33,59,82,.08);
  box-shadow:var(--em-shadow);
}

#unesco .news-card h3 {
  color:var(--em-gold);
}

#source-policy .orange-panel,
#source-policy .page-link-card {
  background-color:var(--em-white);
  border-color:rgba(0,0,0,.08);
}

#source-policy h2,
#source-policy h3 {
  color:var(--em-gold);
}

#source-policy .kicker,
#source-policy .small-label,
#source-policy p {
  color:var(--em-ink);
}

#source-policy .page-link-card h3 {
  color:var(--em-gold);
}

#source-policy .page-link-card p {
  color:var(--em-ink);
}

.em-news-morocco-pulse {
  padding:118px 0;
  background:linear-gradient(180deg,#fffaf3 0%, #f7ecdf 100%);
}

.em-news-wide-shell {
  width:min(1600px, calc(100% - 96px));
  margin:0 auto;
}

.em-news-section-head {
  max-width:1180px;
  margin:0 0 52px;
  display:block;
}

.em-news-section-head h2 {
  max-width:980px;
  font-size:clamp(46px,6vw,96px);
  line-height:.9;
  letter-spacing:-.06em;
  color:var(--em-petrol);
  text-wrap:balance;
}

.em-news-section-head p {
  max-width:760px;
  margin-top:18px;
  color:#52645f;
  font-size:18px;
  line-height:1.7;
}

.em-news-pulse-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:36px;
}

.em-news-pulse-card {
  position:relative;
  min-height:470px;
  overflow:hidden;
  border-radius:42px;
  background-size:cover;
  background-position:top center;
  box-shadow:0 30px 76px rgba(33,59,82,.18);
}

.em-news-pulse-card::before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(13,24,35,.05), rgba(13,24,35,.86));
}

.em-news-pulse-card div {
  position:absolute;
  inset:auto 0 0;
  padding:34px;
  color:var(--em-white);
}

.em-news-pulse-card span {
  color:var(--em-gold);
  font-family:Arial,Helvetica,sans-serif;
  font-size:12px;
  font-weight:900;
  line-height:1;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.em-news-pulse-card strong {
  display:block;
  margin:12px 0;
  color:var(--em-white);
  font-size:clamp(26px,2.8vw,42px);
  line-height:.92;
  letter-spacing:-.055em;
}

.em-news-pulse-card p {
  color:rgba(255,255,255,.88);
  line-height:1.58;
}

.em-news-cat-tourism { background-image:none; }
.em-news-cat-culture { background-image:url("/assets/images/news/pulse-culture-carved-wood-door.webp"); }
.em-news-cat-events { background-image:none; }
.em-news-cat-economy { background-image:none; }

.drawer-section {
  padding:104px 0;
  background:var(--em-cream);
}

.drawer-shell {
  width:min(1580px, calc(100% - 144px));
}

.drawer-section-head {
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:44px;
  align-items:end;
  margin-bottom:46px;
}

.drawer-section-head h2 {
  max-width:860px;
  font-size:clamp(44px,5.8vw,96px);
  line-height:.9;
  color:var(--em-petrol);
  text-wrap:balance;
}

.drawer-section-head .section-lead {
  max-width:740px;
  color:#465d59;
  font-size:18px;
}

.drawer-stack {
  display:grid;
  gap:28px;
}

.news-drawer {
  overflow:hidden;
  border-radius:30px;
  background:var(--em-white);
  border:1px solid rgba(33,59,82,.10);
  box-shadow:0 24px 62px rgba(33,59,82,.09);
}

.news-drawer summary {
  display:grid;
  grid-template-columns:170px minmax(0,1fr) auto;
  gap:30px;
  align-items:center;
  padding:30px 34px;
  list-style:none;
  cursor:pointer;
}

.news-drawer summary::-webkit-details-marker {
  display:none;
}

.drawer-label,
.drawer-kicker {
  font-family:Arial,Helvetica,sans-serif;
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--em-orange);
}

.drawer-label {
  align-self:start;
  padding-top:8px;
}

.drawer-kicker {
  display:none;
}

.news-drawer summary h3 {
  color:var(--em-petrol);
  font-size:clamp(30px,3.2vw,48px);
  line-height:.98;
}

.news-drawer summary p {
  max-width:720px;
  margin-top:8px;
  color:#4c625e;
  font-size:15px;
}

.drawer-toggle {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:68px;
  height:36px;
  padding:0 16px;
  border-radius:999px;
  background:var(--em-orange);
  color:var(--em-white);
  font-family:Arial,Helvetica,sans-serif;
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.drawer-toggle::before {
  content:"Open";
}

.news-drawer[open] .drawer-toggle::before {
  content:"Close";
}

.drawer-body {
  display:grid;
  grid-template-columns:minmax(260px,390px) minmax(0,1fr);
  gap:28px;
  padding:0 34px 34px;
  align-items:stretch;
}

.drawer-image {
  min-height:250px;
  border-radius:24px;
  background-size:cover;
  background-position:top center;
}

.headline-list {
  display:grid;
  align-content:start;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}

.headline-list a {
  display:grid;
  grid-template-columns:118px minmax(0,1fr) 150px;
  gap:18px;
  align-items:center;
  min-height:58px;
  padding:14px 18px;
  border:1px solid rgba(33,59,82,.10);
  border-radius:999px;
  background:#f7ecdf;
}

.row-date,
.row-source {
  font-family:Arial,Helvetica,sans-serif;
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--em-orange);
}

.headline-list strong {
  color:var(--em-petrol);
  font-size:clamp(17px,1.25vw,22px);
  line-height:1.12;
}

.empty-message {
  grid-column:1 / -1;
  padding:40px;
  border-radius:var(--em-radius-md);
  background:var(--em-white);
  font-family:Arial,Helvetica,sans-serif;
  color:var(--em-petrol);
}

@media (max-width:1280px) {
  .site-header {
    padding:0 36px;
  }

  .brand-link img {
    width:78px;
    height:78px;
  }

  .primary-nav {
    gap:12px;
    font-size:12px;
  }

  .news-hero-inner {
    padding:190px 36px 88px;
  }

  .news-hero-copy {
    max-width:600px;
  }

  .section-inner,
  .drawer-shell {
    width:min(var(--em-max), calc(100% - 72px));
  }

  .editorial-grid,
  .orange-grid {
    grid-template-columns:1fr;
  }

  .editorial-point {
    min-height:240px;
  }

  .news-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .em-news-pulse-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}


@media (max-width:900px) {
  .section-head,
  .drawer-section-head {
    grid-template-columns:1fr;
    gap:20px;
  }

  .page-link-grid {
    grid-template-columns:1fr;
  }

  .news-drawer summary {
    grid-template-columns:1fr auto;
    gap:18px;
  }

  .drawer-label {
    grid-column:1 / -1;
    padding:0;
  }

  .drawer-body {
    grid-template-columns:1fr;
  }

  .headline-list a {
    grid-template-columns:1fr;
    border-radius:22px;
    gap:7px;
  }
}

@media (max-width:760px) {
  .site-header {
    top:22px;
    padding:0 20px;
    align-items:flex-start;
  }

  .brand-link img {
    width:64px;
    height:64px;
  }

  .primary-nav {
    max-width:calc(100% - 78px);
    gap:10px;
    overflow:hidden;
    font-size:11px;
    line-height:1.3;
  }

  .news-hero {
    min-height:86vh;
  }

  .news-hero-inner {
    padding:132px 24px 72px;
  }

  .news-hero-copy {
    max-width:100%;
    padding-left:0;
  }

  .news-hero h1 {
    font-size:clamp(40px,11vw,60px);
    line-height:.94;
  }

  .section-inner,
  .drawer-shell {
    width:calc(100% - 40px);
  }

  .section-soft,
  .section-sand,
  .section-orange,
  .drawer-section,
  .em-news-morocco-pulse {
    padding:70px 0;
  }

  .section-head h2,
  .drawer-section-head h2,
  .em-news-section-head h2 {
    font-size:clamp(38px,12vw,60px);
  }

  .editorial-grid,
  .news-grid,
  .em-news-pulse-grid {
    grid-template-columns:1fr;
  }

  .editorial-feature,
  .orange-panel {
    padding:30px;
  }

  .em-news-pulse-card {
    min-height:320px;
  }

  .news-drawer summary {
    padding:24px;
  }

  .drawer-body {
    padding:0 24px 24px;
  }
}

.em-global-footer{
  --em-footer-bg:#213b52;
  --em-footer-text:#f7f4ec;
  --em-footer-soft:rgba(247,244,236,.84);
  --em-footer-muted:rgba(247,244,236,.72);
  --em-footer-link:#f7f4ec;
  background:#213b52 !important;
  color:var(--em-footer-text) !important;
  font-family:Inter,Arial,Helvetica,sans-serif !important;
  width:100% !important;
  margin:0 !important;
  padding:clamp(42px,5.6vw,70px) 0 clamp(24px,3vw,34px) !important;
  min-height:0 !important;
  overflow:hidden !important;
  position:relative !important;
  z-index:4 !important;
  text-align:left !important;
}

.em-global-footer,
.em-global-footer *{
  box-sizing:border-box !important;
}

.em-global-footer a{
  color:var(--em-footer-link) !important;
  text-decoration:none !important;
}

.em-footer-shell{
  width:min(1480px,calc(100% - 64px)) !important;
  margin:0 auto !important;
  padding:0 !important;
  display:grid !important;
  grid-template-columns:minmax(260px,1.12fr) repeat(5,minmax(145px,.92fr)) !important;
  gap:clamp(24px,2.45vw,44px) !important;
  align-items:start !important;
}

.em-footer-brand,
.em-footer-col{
  padding:0 !important;
  margin:0 !important;
  min-height:0 !important;
  height:auto !important;
  width:auto !important;
  max-width:none !important;
  display:block !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  text-align:left !important;
}

.em-footer-brand{
  max-width:320px !important;
}

.em-footer-logo{
  width:82px !important;
  height:82px !important;
  border-radius:50% !important;
  overflow:hidden !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin:0 0 32px !important;
  padding:0 !important;
  background:rgba(255,255,255,.06) !important;
  box-shadow:none !important;
}

.em-footer-logo img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
  max-width:none !important;
}

.em-footer-brand h2{
  font-family:Inter,Arial,Helvetica,sans-serif !important;
  font-size:16px !important;
  font-weight:800 !important;
  line-height:1.25 !important;
  margin:0 0 18px !important;
  color:#fff !important;
  letter-spacing:-.01em !important;
  text-transform:none !important;
}

.em-footer-brand p{
  font-family:Inter,Arial,Helvetica,sans-serif !important;
  font-size:15px !important;
  line-height:1.72 !important;
  color:var(--em-footer-soft) !important;
  margin:0 0 20px !important;
  max-width:320px !important;
  letter-spacing:0 !important;
}

.em-footer-brand .em-footer-copyright{
  font-weight:800 !important;
  color:#fff !important;
  margin-top:26px !important;
  line-height:1.55 !important;
}

.em-footer-col{
  min-width:0 !important;
}

.em-footer-col h3{
  font-family:Inter,Arial,Helvetica,sans-serif !important;
  font-size:15px !important;
  line-height:1.35 !important;
  font-weight:800 !important;
  color:#fff !important;
  margin:3px 0 18px !important;
  letter-spacing:-.01em !important;
  text-transform:none !important;
}

.em-footer-col ul{
  list-style:none !important;
  padding:0 !important;
  margin:0 !important;
  display:grid !important;
  gap:12px !important;
}

.em-footer-col li{
  margin:0 !important;
  padding:0 !important;
  list-style:none !important;
}

.em-footer-col a{
  font-family:Inter,Arial,Helvetica,sans-serif !important;
  font-size:14.5px !important;
  color:rgba(247,244,236,.84) !important;
  line-height:1.38 !important;
  display:inline-block !important;
  transition:color .18s ease,opacity .18s ease !important;
}

.em-footer-col a:hover{
  color:#fff !important;
  opacity:1 !important;
}

.em-footer-social{
  width:min(1480px,calc(100% - 64px)) !important;
  margin:clamp(34px,4.3vw,56px) auto 0 !important;
  padding:0 !important;
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap:22px !important;
}

.em-footer-social a{
  width:24px !important;
  height:24px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:#fff !important;
  font-size:24px !important;
  font-weight:800 !important;
  line-height:1 !important;
  font-family:Arial,Helvetica,sans-serif !important;
  opacity:.96 !important;
  text-transform:lowercase !important;
}

.em-footer-social a[aria-label="YouTube"]{
  font-size:20px !important;
}

.em-footer-social a:hover{
  opacity:.78 !important;
}

@media(max-width:1280px){
  .em-footer-shell{
    grid-template-columns:minmax(260px,1.1fr) repeat(3,minmax(180px,1fr)) !important;
    gap:36px 44px !important;
  }
}

@media(max-width:980px){
  .em-footer-shell{
    width:min(100% - 44px,900px) !important;
    grid-template-columns:1fr 1fr !important;
    gap:34px 46px !important;
  }

  .em-footer-brand{
    max-width:none !important;
    grid-column:1 / -1 !important;
  }

  .em-footer-brand p{
    max-width:560px !important;
  }

  .em-footer-social{
    width:min(100% - 44px,900px) !important;
  }
}

@media(max-width:620px){
  .em-global-footer{
    padding:42px 0 26px !important;
  }

  .em-footer-shell{
    width:min(100% - 34px,520px) !important;
    grid-template-columns:1fr !important;
    gap:34px !important;
  }

  .em-footer-brand{
    grid-column:auto !important;
  }

  .em-footer-logo{
    width:72px !important;
    height:72px !important;
    margin-bottom:20px !important;
  }

  .em-footer-col h3{
    margin-bottom:14px !important;
  }

  .em-footer-col ul{
    gap:10px !important;
  }

  .em-footer-social{
    width:min(100% - 34px,520px) !important;
    justify-content:flex-start !important;
    margin-top:34px !important;
  }
}
