:root {
  --ink: #17333a;
  --ink-soft: #4d666b;
  --paper: #fbfcf9;
  --paper-strong: #ffffff;
  --mist: #edf4f2;
  --line: #d8e3df;
  --teal: #0b6a68;
  --teal-dark: #074e4e;
  --sun: #f1b646;
  --coral: #df675c;
  --green: #4b8c70;
  --blue: #4e7ea6;
  --purple: #7867a7;
  --shadow: 0 20px 60px rgba(21, 58, 65, 0.12);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

button,
summary {
  font: inherit;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.nowrap-name {
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--paper-strong);
  color: var(--teal-dark);
  box-shadow: var(--shadow);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.info-bar {
  background: var(--teal-dark);
  color: #eaf8f5;
  font-size: 0.78rem;
  letter-spacing: 0.015em;
}

.info-bar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.info-bar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(216, 227, 223, 0.9);
  background: rgba(251, 252, 249, 0.96);
  backdrop-filter: blur(14px);
}

.header-main {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 50% 50% 50% 10px;
  background: var(--teal);
  color: white;
  box-shadow: inset -8px -8px 0 rgba(255, 255, 255, 0.09);
}

.brand-mark::after {
  content: "+";
  position: absolute;
  right: 5px;
  top: -4px;
  color: var(--sun);
  font-size: 1.55rem;
  font-weight: 800;
}

.brand-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  line-height: 1.12;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  padding: 0 20px;
  background: var(--teal);
  color: white;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta:focus-visible,
.button:focus-visible,
.desktop-nav a:focus-visible,
.mobile-menu a:focus-visible,
.related-card:focus-visible,
.sources-section a:focus-visible,
.contact-line:focus-visible {
  outline: 3px solid rgba(241, 182, 70, 0.9);
  outline-offset: 3px;
}

.desktop-nav {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.nav-track {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-track::-webkit-scrollbar {
  display: none;
}

.desktop-nav a {
  flex: 0 0 auto;
  position: relative;
  padding: 13px 12px 12px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 730;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 2px;
  border-radius: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--teal-dark);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  font-size: 0.88rem;
  font-weight: 700;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(310px, calc(100vw - 40px));
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 11px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 650;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
}

.mobile-menu nav a.is-active {
  background: var(--mist);
  color: var(--teal-dark);
}

.hero {
  --accent: var(--sun);
  position: relative;
  overflow: hidden;
  padding: 30px 0 0;
  background: radial-gradient(circle at 88% 10%, color-mix(in srgb, var(--accent) 23%, transparent) 0, transparent 30%), linear-gradient(150deg, #f9fbf8 0%, #edf5f2 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: 70px;
  width: 250px;
  height: 250px;
  border: 1px solid color-mix(in srgb, var(--accent) 58%, white);
  border-radius: 50%;
  box-shadow: 0 0 0 36px color-mix(in srgb, var(--accent) 9%, transparent), 0 0 0 72px color-mix(in srgb, var(--accent) 6%, transparent);
  pointer-events: none;
}

.accent-sun { --accent: var(--sun); }
.accent-coral { --accent: var(--coral); }
.accent-green { --accent: var(--green); }
.accent-blue { --accent: var(--blue); }
.accent-purple { --accent: var(--purple); }

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
}

.breadcrumbs a:hover { color: var(--teal); }

.hero-grid {
  min-height: 525px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(38px, 7vw, 90px);
  padding: 42px 0 58px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  margin: 0 0 13px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.site-footer h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.032em;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 5.2rem);
  font-weight: 600;
  line-height: 0.99;
}

.hero-intro {
  max-width: 710px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-contact-mini {
  max-width: 760px;
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(280px, 1.18fr);
  gap: 10px;
  margin-top: 18px;
  padding: 11px;
  border: 1px solid rgba(11, 106, 104, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(21, 58, 65, 0.08);
}

.hero-contact-mini a {
  min-width: 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 12px;
  color: var(--teal-dark);
}

.hero-contact-mini a:hover {
  background: var(--mist);
}

.hero-contact-mini svg,
.hero-contact-mini .mini-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 7px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-weight: 900;
}

.hero-contact-mini span {
  min-width: 0;
  display: grid;
}

.hero-contact-mini small {
  color: var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 780;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-contact-mini strong {
  margin-top: 3px;
  font-size: 0.77rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.button { padding: 0 20px; }

.button-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 10px 25px rgba(11, 106, 104, 0.2);
}

.button-quiet { color: var(--teal-dark); }
.button-quiet:hover { background: rgba(255, 255, 255, 0.7); }

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 0;
  aspect-ratio: 4 / 3;
  display: grid;
  overflow: visible;
  margin-bottom: 72px;
  border: 10px solid rgba(255, 255, 255, 0.82);
  border-radius: 46% 46% 46% 12%;
  background: white;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(23, 51, 58, 0.06);
  border-radius: inherit;
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.hero-visual.is-contain img {
  padding: 26px;
  object-fit: contain;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 0;
  left: 10px;
  transform: translateY(calc(100% + 13px));
  padding: 11px 14px;
  border: 1px solid rgba(11, 106, 104, 0.18);
  border-radius: 14px;
  background: #075b59;
  box-shadow: 0 10px 22px rgba(21, 58, 65, 0.14);
  color: white;
  font-size: 0.7rem;
  font-weight: 760;
  line-height: 1.35;
  letter-spacing: 0.055em;
  hyphens: none;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}

.stat-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 -16px 40px rgba(21, 58, 65, 0.07);
}

.stat-card {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}

.stat-card:last-child { border-right: 0; }

.stat-card strong {
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.1;
}

.stat-card span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.section { padding: clamp(72px, 9vw, 118px) 0; }
.section-editorial { background: white; }

.editorial-grid {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.section-aside {
  position: sticky;
  top: 160px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.section-aside ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: section-nav;
}

.section-aside li {
  counter-increment: section-nav;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.35;
}

.section-aside li::before {
  content: "0" counter(section-nav);
  color: var(--teal);
  font-weight: 800;
}

.section-aside a:hover { color: var(--teal-dark); }

.article-flow {
  display: grid;
  gap: 72px;
}

.content-block {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  scroll-margin-top: 170px;
}

.content-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 850;
}

.content-block h2,
.section-heading h2,
.sources-section h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 600;
  line-height: 1.08;
}

.content-block p:not(.kicker) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.82;
}

.content-block p:not(.kicker):first-of-type { color: var(--ink); }

.contact-section {
  padding: 70px 0;
  background: var(--teal-dark);
  color: white;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.contact-card .eyebrow { color: var(--sun); }

.contact-card p:not(.eyebrow) {
  max-width: 520px;
  color: #cce1de;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-line {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.07);
  transition: background 160ms ease, transform 160ms ease;
}

.contact-line:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.12);
}

.contact-line > svg,
.contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 11px;
  border-radius: 50%;
  background: var(--sun);
  color: var(--teal-dark);
  font-weight: 900;
}

.contact-line span { display: grid; }

.contact-line small {
  color: #a9cbc6;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-line strong { font-size: 0.95rem; }
.related-section { background: var(--mist); }

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading > p:not(.eyebrow) { color: var(--ink-soft); }

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

.related-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: var(--card-accent, var(--teal));
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.related-1 { --card-accent: var(--coral); }
.related-2 { --card-accent: var(--sun); }
.related-3 { --card-accent: var(--green); }

.related-index {
  color: var(--card-accent);
  font-size: 0.75rem;
  font-weight: 850;
}

.related-card h3 {
  margin: 30px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.15;
}

.related-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
}

.faq-section { background: white; }

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(45px, 8vw, 100px);
  align-items: start;
}

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.35;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 20px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--teal);
  font-family: Inter, "Segoe UI", sans-serif;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  margin: 0;
  padding: 0 48px 24px 0;
  color: var(--ink-soft);
}

.sources-section {
  padding: 66px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.sources-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: 60px;
}

.sources-section h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }

.sources-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sources-section li { border-top: 1px solid var(--line); }
.sources-section li:last-child { border-bottom: 1px solid var(--line); }

.sources-section a {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 20px;
  gap: 10px;
  align-items: center;
  padding: 15px 2px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.sources-section a:hover { color: var(--teal-dark); }
.sources-section a svg:first-child { color: var(--green); }

.site-footer {
  padding: 70px 0 24px;
  background: #102f35;
  color: #d2e3e0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 70px;
}

.footer-brand {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
}

.footer-grid p {
  max-width: 470px;
  color: #a9c6c2;
  font-size: 0.88rem;
}

.site-footer h2 {
  margin: 0 0 15px;
  color: white;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid > div:not(:first-child) a {
  color: #bcd4d0;
  font-size: 0.83rem;
}

.footer-grid a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #89aaa5;
  font-size: 0.72rem;
}

@media (max-width: 1000px) {
  .desktop-nav,
  .header-cta { display: none; }
  .mobile-menu { display: block; }
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr 320px;
    gap: 36px;
  }
  .hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
  .hero-visual,
  .hero-visual img { min-height: 0; }
  .editorial-grid {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 46px;
  }
  .contact-card,
  .sources-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-card:last-child {
    grid-column: 1 / -1;
    min-height: 240px;
  }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .info-bar-note,
  .brand-copy small { display: none !important; }
  .header-main { min-height: 70px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 1.22rem; }
  .hero { padding-top: 20px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0 40px;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 1.02;
  }
  .hero-intro { margin-top: 20px; }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-contact-mini {
    grid-template-columns: 1fr;
  }
  .button {
    width: 100%;
    padding: 8px 18px;
    text-align: center;
  }
  .hero-visual {
    min-height: 0;
    margin-bottom: 78px;
    border-width: 7px;
    border-radius: 34% 34% 34% 10%;
  }
  .hero-visual img { min-height: 0; }
  .stat-grid {
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 20px;
  }
  .stat-card {
    min-height: 100px;
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .stat-card:last-child { border-bottom: 0; }
  .editorial-grid,
  .faq-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .section-aside { position: static; }
  .article-flow { gap: 56px; }
  .content-block {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .content-number { width: 42px; height: 42px; }
  .content-block h2,
  .section-heading h2,
  .sources-section h2,
  .contact-card h2 { font-size: clamp(1.9rem, 10vw, 3rem); }
  .content-block p:not(.kicker) { font-size: 1rem; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card:last-child {
    grid-column: auto;
    min-height: 310px;
  }
  .footer-grid { gap: 38px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { transition-duration: 0.01ms !important; }
}

@media print {
  .info-bar,
  .site-header,
  .hero-actions,
  .section-aside,
  .site-footer { display: none !important; }
  .hero,
  .section,
  .contact-section,
  .related-section,
  .faq-section,
  .sources-section {
    padding: 24px 0;
    background: white !important;
    color: black !important;
  }
  .hero-grid,
  .editorial-grid,
  .faq-grid,
  .sources-grid { display: block; }
}
