:root {
  --ink: #162a28;
  --muted: #5e6965;
  --paper: #f7f7f2;
  --white: #ffffff;
  --blue: #176c8e;
  --blue-dark: #124d67;
  --cypress: #3f6653;
  --coral: #c8664c;
  --line: #d7ddd7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; line-height: 1.65; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }

.site-header {
  display: grid;
  grid-template-columns: minmax(245px, .7fr) 1.3fr;
  align-items: center;
  gap: 32px;
  min-height: 112px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--blue-dark);
  border-bottom: 6px solid var(--coral);
}
.brand { display: inline-flex; flex-direction: column; width: fit-content; text-decoration: none; }
.brand strong { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(30px, 4vw, 50px); font-weight: 400; line-height: 1; }
.brand span { margin-top: 8px; color: #d7e8ed; font-size: 11px; font-weight: 700; line-height: 1.3; text-transform: uppercase; }
.site-nav { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 4px 22px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.site-nav a { padding: 8px 0 6px; text-decoration: none; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a[aria-current='page'] { color: var(--white); border-color: #f4be76; }

main { width: min(1180px, calc(100% - 96px)); margin: 0 auto; }
.content-layout { display: grid; grid-template-columns: minmax(0, 790px) minmax(240px, 300px); justify-content: space-between; gap: 54px; }
.article-shell { width: min(790px, 100%); padding: clamp(50px, 7vw, 88px) 0 60px; }
.eyebrow { margin: 0 0 14px; color: var(--coral); font-size: 12px; font-weight: 800; line-height: 1.2; text-transform: uppercase; }
h1, h2 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; letter-spacing: 0; }
h1 { max-width: 820px; margin: 0 0 32px; color: var(--blue-dark); font-size: clamp(42px, 7vw, 76px); line-height: 1.02; }
h2 { margin: 0; font-size: 30px; line-height: 1.2; }
p { margin: 0 0 1.25em; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(18px, 2vw, 21px); }
.article-shell h2 { margin: 46px 0 16px; color: var(--blue-dark); }
.article-update { padding: 18px 20px; font-family: Arial, Helvetica, sans-serif; font-size: 15px; background: var(--white); border-left: 4px solid var(--coral); }
.article-hero { position: relative; margin: 0 0 38px; }
.article-hero::before { content: ''; position: absolute; z-index: 1; top: -8px; left: 22px; width: 92px; height: 8px; background: var(--coral); }
.article-hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border: 1px solid var(--line); }
.article-hero figcaption { padding: 10px 0; color: var(--muted); font-size: 13px; line-height: 1.4; border-bottom: 1px solid var(--line); }
.ad-rail { align-self: start; width: 100%; min-height: 280px; margin-top: 88px; overflow: hidden; }

.related { padding: 42px 0 72px; border-top: 3px solid var(--blue); }
.related h2 { color: var(--blue-dark); }
.link-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 24px; margin-top: 24px; border-top: 1px solid var(--line); }
.link-grid a { min-height: 82px; padding: 18px 4px 18px 0; font-family: Georgia, 'Times New Roman', serif; font-size: 18px; font-weight: 700; text-decoration-color: var(--coral); border-bottom: 1px solid var(--line); }

.home-page main { width: 100%; }
.home-page .content-layout { display: block; }
.home-page .article-shell { display: grid; grid-template-columns: minmax(430px, .9fr) minmax(0, 1.1fr); gap: 0 64px; width: min(1180px, calc(100% - 96px)); margin: 0 auto; padding-bottom: 72px; }
.home-page .eyebrow, .home-page h1 { grid-column: 1; }
.home-page h1 { align-self: end; max-width: 100%; margin-bottom: 34px; font-size: 78px; overflow-wrap: anywhere; }
.home-page .article-hero { grid-column: 2; grid-row: 1 / span 8; margin-top: 8px; }
.home-page .article-hero img { min-height: 480px; aspect-ratio: 4 / 3; }
.home-page .article-shell > p:not(.eyebrow) { grid-column: 1; }
.home-page .ad-rail { width: min(970px, calc(100% - 96px)); min-height: 120px; margin: 0 auto 54px; }
.home-page .related { width: min(1180px, calc(100% - 96px)); margin: 0 auto; }

.site-footer { display: flex; justify-content: space-between; gap: 24px; padding: 30px clamp(20px, 5vw, 72px); color: var(--white); background: var(--ink); font-size: 14px; line-height: 1.4; }
.site-footer div { display: flex; flex-direction: column; gap: 4px; }
.site-footer nav { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.site-footer a { color: var(--white); }
.privacy-settings { padding: 0; color: var(--white); background: transparent; border: 0; font: inherit; text-decoration: underline; cursor: pointer; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr; align-items: start; gap: 16px; }
  .site-nav { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { white-space: nowrap; }
  main { width: min(100% - 30px, 700px); }
  .content-layout { display: block; }
  .ad-rail { min-height: 120px; margin: 0 0 42px; }
  .home-page .article-shell { display: block; width: min(100% - 30px, 700px); }
  .home-page h1 { font-size: 62px; overflow-wrap: normal; }
  .home-page .article-hero img { min-height: 0; aspect-ratio: 16 / 10; }
  .home-page .related { width: min(100% - 30px, 700px); }
  .link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer { flex-direction: column; }
}

@media (max-width: 440px) {
  h1, .home-page h1 { font-size: 42px; }
  .link-grid { grid-template-columns: 1fr; }
}
