@font-face {
  font-family: "MaisonNeue";
  font-weight: 200;
  src: url("../fonts/MaisonNeue-Light.woff2") format("woff2"),
       url("../fonts/MaisonNeue-Light.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "MaisonNeue";
  font-weight: 300 400;
  src: url("../fonts/MaisonNeue-Book.woff2") format("woff2"),
       url("../fonts/MaisonNeue-Book.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "MaisonNeue";
  font-weight: 500 700;
  src: url("../fonts/MaisonNeue-Demi.woff2") format("woff2"),
       url("../fonts/MaisonNeue-Demi.woff") format("woff");
  font-display: swap;
}

:root {
  --teal: #1a5f6a;
  --teal-dark: #144d57;
  --teal-light: #2a7f8e;
  --teal-pale: #e8f4f6;
  --teal-accent: #7ec8d4;
  --ink: #111;
  --warm: #f8f6f2;
  --white: #fff;
  --mid: #5a6068;
  --border: rgba(26, 95, 106, 0.16);
  --serif: "bodoni-urw", Georgia, serif;
  --sans: "MaisonNeue", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--gh-font-body, var(--sans));
  font-size: 16px;
  font-weight: 200;
  overflow-x: hidden;
}
body.consent-hidden .tracking-consent { display: none; }
body.cookie-modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { letter-spacing: 0; }
a { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header { position: relative; z-index: 200; }
.site-nav {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 3rem;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.site-logo { display: flex; align-items: center; }
.site-logo img { width: auto; height: 36px; }
.desktop-nav {
  display: flex;
  align-self: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
.desktop-nav li { display: flex; }
.desktop-nav a {
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  border-bottom: 2px solid transparent;
  color: var(--mid);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s, border-color 0.2s;
}
.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
.nav-actions { display: flex; align-items: center; gap: 0.65rem; }
.nav-cta,
.hero-search,
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--teal-pale); border-color: var(--teal); }
.search-button {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--teal-dark);
  cursor: pointer;
}
.search-button span {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.search-button span::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  right: -6px;
  bottom: -3px;
  background: currentColor;
  transform: rotate(45deg);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--teal-dark);
  cursor: pointer;
}
.nav-toggle-lines { display: flex; flex-direction: column; gap: 5px; width: 18px; }
.nav-toggle-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-navigation { display: none; }

/* Shared editorial elements */
.eyebrow {
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.25rem;
}
.section-heading h2,
.archive-header h1,
.simple-page h1,
.error-page h1 {
  margin: 0.55rem 0 0;
  font-family: var(--gh-font-heading, var(--serif));
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 0.98;
}
.text-link,
.back-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span,
.back-link span { transition: transform 0.2s; }
.text-link:hover span,
.back-link:hover span { transform: translateX(4px); }

/* Blog home */
.blog-hero {
  position: relative;
  min-height: min(68vh, 720px);
  display: flex;
  align-items: center;
  background: url("../images/blog-hero-v2.jpg") center 58% / cover no-repeat;
  color: var(--white);
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 77, 87, 0.94) 0%, rgba(20, 77, 87, 0.76) 46%, rgba(20, 77, 87, 0.2) 82%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
}
.blog-hero-inner {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  margin-left: max(5vw, calc((100vw - 1320px) / 2));
  padding: 5rem 2rem 5rem 0;
}
.blog-hero .eyebrow { color: var(--teal-accent); }
.blog-hero h1 {
  margin: 1rem 0 1.3rem;
  font-family: var(--gh-font-heading, var(--serif));
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.86;
}
.blog-hero h1 em { color: var(--teal-accent); font-weight: 400; }
.blog-hero p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.75;
}
.hero-search {
  margin-top: 2rem;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  cursor: pointer;
}
.hero-search:hover { background: var(--white); border-color: var(--white); color: var(--teal-dark); }
.featured-story,
.article-feed,
.related-posts {
  padding: 6rem max(5vw, calc((100vw - 1320px) / 2));
}
.featured-story { background: var(--warm); }
.featured-card {
  background: var(--white);
  border: 1px solid var(--border);
}
.featured-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--teal-dark);
}
.featured-media img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.5s ease; }
.featured-card:hover .featured-media img { transform: scale(1.025); }
.featured-placeholder,
.post-card-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(126, 200, 212, 0.18), transparent),
    var(--teal-dark);
}
.featured-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1080px;
  padding: clamp(2rem, 4vw, 4rem);
}
.post-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  color: var(--mid);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.post-card-meta a { color: var(--teal); text-decoration: none; }
.featured-copy h2 {
  margin: 1.25rem 0 1rem;
  font-family: var(--gh-font-heading, var(--serif));
  font-size: clamp(2.25rem, 3.4vw, 3.75rem);
  font-weight: 400;
  line-height: 1.03;
}
.featured-copy h2 a,
.post-card h2 a { text-decoration: none; }
.featured-copy p {
  margin: 0 0 1.8rem;
  color: var(--mid);
  line-height: 1.75;
}
.article-feed { background: var(--white); }
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.post-card {
  min-width: 0;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.post-card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--teal-dark); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.post-card:hover .post-card-media img { transform: scale(1.035); }
.post-card-content { padding: 2rem; }
.post-card h2 {
  margin: 1.1rem 0 0.9rem;
  font-family: var(--gh-font-heading, var(--serif));
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  font-weight: 400;
  line-height: 1.05;
}
.post-card h2 a:hover { color: var(--teal-dark); }
.post-card p {
  min-height: 4.8em;
  margin: 0 0 1.5rem;
  color: var(--mid);
  font-size: 0.93rem;
  line-height: 1.6;
}
.pagination {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 3rem;
  color: var(--mid);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pagination div:last-child { text-align: right; }
.pagination a { color: var(--teal-dark); font-weight: 600; text-decoration: none; }

/* Article */
.article-header {
  display: block;
  min-height: 0;
  padding-bottom: 5rem;
  background: var(--warm);
}
.article-header.without-image { padding-bottom: 0; }
.article-header-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.5rem 5vw 3rem;
}
.article-header h1 {
  max-width: 1050px;
  margin: 1.25rem 0 1.4rem;
  font-family: var(--gh-font-heading, var(--serif));
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  font-weight: 400;
  line-height: 0.98;
}
.article-dek {
  max-width: 690px;
  margin: 0;
  color: var(--mid);
  font-size: 1.08rem;
  line-height: 1.7;
}
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 2rem;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-feature {
  position: relative;
  width: min(1200px, 90vw);
  min-height: 0;
  margin: 0 auto;
  background: var(--teal-dark);
}
.article-feature img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}
.article-feature figcaption {
  position: absolute;
  padding: 0.5rem 0.8rem;
  background: rgba(17, 17, 17, 0.72);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
}
.article-layout {
  display: grid;
  grid-template-columns: 150px minmax(0, 760px);
  gap: 3rem;
  justify-content: center;
  padding: 6rem 5vw;
}
.article-aside {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
  color: var(--mid);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article-aside > span { color: var(--teal); font-weight: 600; }
.article-aside a { text-decoration: none; }
.article-aside a:hover { color: var(--teal); }
.gh-content {
  min-width: 0;
  font-family: var(--sans);
  color: #363b40;
  font-size: 1.08rem;
  line-height: 1.85;
}
.gh-content > * { margin-top: 0; margin-bottom: 1.65rem; }
.gh-content h2,
.gh-content h3,
.gh-content h4 {
  color: var(--ink);
  font-family: var(--gh-font-heading, var(--serif));
  font-weight: 400;
  line-height: 1.08;
}
.gh-content h2 { margin-top: 3.5rem; font-size: clamp(2.2rem, 4vw, 3.4rem); }
.gh-content h3 { margin-top: 2.75rem; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.gh-content h4 { margin-top: 2.25rem; font-size: 1.55rem; }
.gh-content a { color: var(--teal-dark); font-weight: 500; text-decoration-color: var(--teal-accent); text-underline-offset: 3px; }
.gh-content strong { color: var(--ink); font-weight: 600; }
.gh-content blockquote {
  margin: 3rem 0;
  padding: 0 0 0 2rem;
  border-left: 3px solid var(--teal-accent);
  color: var(--teal-dark);
  font-family: var(--gh-font-heading, var(--serif));
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-style: italic;
  line-height: 1.2;
}
.gh-content ul,
.gh-content ol { padding-left: 1.4rem; }
.gh-content li { margin-bottom: 0.65rem; padding-left: 0.3rem; }
.gh-content hr { margin: 3.5rem 0; border: 0; border-top: 1px solid var(--border); }
.gh-content pre {
  overflow-x: auto;
  padding: 1.5rem;
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
}
.gh-content table { display: block; max-width: 100%; overflow-x: auto; border-collapse: collapse; }
.gh-content th,
.gh-content td { padding: 0.8rem; border: 1px solid var(--border); text-align: left; }
.gh-content .kg-width-wide {
  width: min(1100px, calc(100vw - 3rem));
  margin-left: 50%;
  transform: translateX(-50%);
}
.gh-content .kg-width-full {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.gh-content figure img { width: 100%; }
.gh-content figcaption { margin-top: 0.65rem; color: var(--mid); font-size: 0.75rem; text-align: center; }
.gh-content .kg-card { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.gh-content .kg-callout-card,
.gh-content .kg-toggle-card { border-radius: 0; }
.gh-content .kg-button-card a.kg-btn {
  border-radius: 0;
  background: var(--teal);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1060px;
  margin: 0 auto;
  padding: 3rem 5vw 5rem;
  border-top: 1px solid var(--border);
}
.article-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.9rem; }
.article-tags a {
  padding: 0.6rem 0.8rem;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}
.related-posts { background: var(--warm); }

/* Archives and pages */
.archive-header,
.simple-page > header,
.error-page {
  padding: 6rem max(5vw, calc((100vw - 1120px) / 2));
  background: var(--warm);
}
.archive-header p,
.simple-page > header p,
.error-page p {
  max-width: 700px;
  margin: 1.5rem 0 0;
  color: var(--mid);
  line-height: 1.7;
}
.archive-feed { padding-top: 4rem; }
.author-header {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.author-header img { width: 130px; height: 130px; object-fit: cover; border-radius: 50%; }
.simple-page > .gh-content { max-width: 760px; margin: 0 auto; padding: 5rem 1.5rem; }
.simple-page-image {
  width: min(1120px, 100%);
  max-height: 620px;
  margin-top: 3rem;
  object-fit: cover;
}
.error-page { min-height: 60vh; }
.error-page .button-primary {
  margin-top: 2rem;
  background: var(--teal);
  color: var(--white);
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 5rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
}
.footer-brand img { width: auto; height: 36px; filter: brightness(0) invert(1); }
.footer-brand p { margin: 1.4rem 0 0; color: rgba(255, 255, 255, 0.4); font-size: 0.82rem; line-height: 1.8; }
.footer-column h2 {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-column ul { display: flex; flex-direction: column; gap: 0.65rem; margin: 0; padding: 0; list-style: none; }
.footer-column a,
.footer-column button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.84rem;
  text-decoration: none;
  cursor: pointer;
}
.footer-column a:hover,
.footer-column button:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
  font-weight: 600;
  text-decoration: none;
}
.footer-social a:hover { border-color: var(--teal-accent); color: var(--teal-accent); }

.tracking-consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 5vw;
  background: #101f21;
  box-shadow: 0 -12px 36px rgba(17, 17, 17, 0.24);
}
.tracking-consent p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.55;
}
.tracking-consent a { color: var(--white); text-decoration: underline; text-underline-offset: 0.18em; }
.notice-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.notice-actions button {
  min-height: 40px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.notice-actions button:last-child {
  border-color: var(--teal-accent);
  background: var(--teal-accent);
  color: var(--teal-dark);
}
.cookie-settings-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.cookie-settings-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.62);
  backdrop-filter: blur(8px);
}
.cookie-settings-panel {
  position: relative;
  width: min(100%, 560px);
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: var(--warm);
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.28);
}
.cookie-settings-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 38px;
  padding: 0 0.9rem;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--teal-dark);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cookie-settings-panel h2 {
  max-width: 360px;
  margin: 0.6rem 0 1.5rem;
  color: var(--teal-dark);
  font-family: var(--gh-font-heading, var(--serif));
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 0.98;
}
.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  color: var(--ink);
}
.cookie-option strong { display: block; color: var(--teal-dark); font-size: 0.95rem; }
.cookie-option small { display: block; margin-top: 0.25rem; color: var(--mid); font-size: 0.82rem; line-height: 1.45; }
.cookie-option input { width: 44px; height: 24px; accent-color: var(--teal-accent); cursor: pointer; }
.cookie-save {
  width: 100%;
  min-height: 48px;
  margin-top: 1.5rem;
  border: 0;
  background: var(--teal-dark);
  color: var(--white);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .desktop-nav a { padding: 0 0.85rem; }
  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  body.mobile-nav-open { overflow: hidden; }
  .site-nav { padding: 0 1.5rem; }
  .desktop-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-navigation {
    position: fixed;
    inset: 70px 0 0;
    z-index: 190;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 86vw);
    visibility: hidden;
    pointer-events: none;
  }
  .mobile-navigation[aria-hidden="false"] { visibility: visible; pointer-events: auto; }
  .mobile-nav-backdrop {
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: background 0.25s;
  }
  .mobile-navigation[aria-hidden="false"] .mobile-nav-backdrop { background: rgba(17, 17, 17, 0.48); }
  .mobile-nav-panel {
    height: 100%;
    padding: 2rem 1.5rem 2.5rem;
    overflow-y: auto;
    border-left: 1px solid var(--border);
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  .mobile-navigation[aria-hidden="false"] .mobile-nav-panel { transform: translateX(0); }
  .mobile-nav-label {
    margin-bottom: 1.25rem;
    color: var(--teal);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .mobile-nav-panel ul { margin: 0; padding: 0; border-top: 1px solid var(--border); list-style: none; }
  .mobile-nav-panel li { border-bottom: 1px solid var(--border); }
  .mobile-nav-panel li a {
    display: flex;
    align-items: center;
    min-height: 54px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
  }
  .mobile-nav-panel li a[aria-current="page"] { color: var(--teal); }
  .mobile-search,
  .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    margin-top: 1rem;
    padding: 0.8rem 1rem;
    border: 1px solid var(--teal);
    background: transparent;
    color: var(--teal);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
  }
  .mobile-nav-cta { background: var(--teal); color: var(--white); }
  .blog-hero { min-height: 600px; background-position: 72% center; }
  .blog-hero-inner { margin-left: 0; padding: 4rem 1.5rem; }
  .featured-story,
  .article-feed,
  .related-posts { padding: 4rem 1.5rem; }
  .featured-copy { padding: 2.5rem; }
  .article-header { padding-bottom: 4rem; }
  .article-header-copy { padding: 4rem 1.5rem 2.5rem; }
  .article-feature,
  .article-feature img { min-height: 0; max-height: none; }
  .article-feature { width: calc(100% - 3rem); }
  .article-layout { grid-template-columns: 1fr; padding: 4rem 1.5rem; }
  .article-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 3rem 1.5rem; gap: 2.5rem; }
  .footer-bottom { padding: 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
  .tracking-consent { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .site-nav { height: 64px; padding: 0 1rem; }
  .site-logo img { height: 31px; }
  .nav-cta { display: none; }
  .search-button { width: 40px; height: 40px; }
  .mobile-navigation { inset: 64px 0 0; grid-template-columns: minmax(0, 1fr) minmax(270px, 92vw); }
  .blog-hero { min-height: 550px; }
  .blog-hero h1 { font-size: clamp(3.5rem, 16vw, 5rem); }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .featured-story,
  .article-feed,
  .related-posts { padding: 3.5rem 1.25rem; }
  .featured-copy { padding: 2rem 1.25rem; }
  .post-grid { grid-template-columns: 1fr; }
  .post-card p { min-height: 0; }
  .pagination { grid-template-columns: 1fr 1fr; }
  .pagination > span { grid-column: 1 / -1; grid-row: 1; text-align: center; }
  .article-header { padding-bottom: 3rem; }
  .article-header-copy { padding: 3.5rem 1.25rem 2rem; }
  .article-header h1 { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .article-feature,
  .article-feature img { min-height: 0; }
  .article-feature { width: calc(100% - 2.5rem); }
  .article-layout { padding: 3.5rem 1.25rem; }
  .gh-content { font-size: 1rem; line-height: 1.78; }
  .gh-content .kg-width-wide,
  .gh-content .kg-width-full { width: calc(100vw - 2rem); }
  .article-footer { align-items: flex-start; flex-direction: column; padding: 2.5rem 1.25rem 4rem; }
  .archive-header,
  .simple-page > header,
  .error-page { padding: 4rem 1.25rem; }
  .author-header { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; padding: 3rem 1.25rem; }
  .footer-column ul { display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.25rem; }
  .tracking-consent { gap: 0.75rem; padding: 0.85rem 1rem; }
  .tracking-consent p { font-size: 0.7rem; line-height: 1.4; }
  .notice-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
  }
  .notice-actions button { width: 100%; min-height: 40px; padding: 0.45rem; font-size: 0.6rem; }
}
