:root {
  --ink: #0a0a0a;
  --paper: #fff;
  --soft: #f4f2ee;
  --line: #dcd9d3;
  --muted: #777;
  --aged: #ece5d6;
  --page-pad: clamp(20px, 3.35vw, 52px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-language-override: "BGR";
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input { font: inherit; }
::selection { background: var(--ink); color: var(--paper); }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link:focus { position: fixed !important; z-index: 9999; top: 8px; left: 8px; width: auto; height: auto; padding: 12px 18px; clip: auto; background: #fff; color: #000; }

/* Header */
.site-header { position: relative; z-index: 100; border-bottom: 3px solid var(--ink); background: #fff; }
.masthead { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 24px var(--page-pad); border-bottom: 1px solid var(--line); }
.masthead-context { display: flex; align-items: center; gap: 16px; color: #666; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.masthead-context .location { display: flex; align-items: center; gap: 7px; padding-left: 16px; border-left: 1px solid var(--line); color: var(--ink); }
.masthead-context svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.site-brand { display: block; line-height: 0; }
.site-brand img { display: block; width: auto; height: 58px; max-width: min(34vw, 290px); object-fit: contain; filter: brightness(0); }
.masthead-actions { display: flex; justify-content: flex-end; align-items: center; }
.header-search { display: flex; align-items: center; width: min(100%, 240px); border: 0; border-bottom: 1px solid rgba(10,10,10,.24); background: transparent; transition: border-color .2s ease; }
.header-search:focus-within { border-bottom-color: var(--ink); }
.header-search input { flex: 1; min-width: 0; padding: 8px 4px; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 12px; font-weight: 600; }
.header-search input::placeholder { color: rgba(10,10,10,.48); }
.header-search button { display: grid; width: 34px; height: 34px; place-items: center; border: 0; border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; transition: transform .2s ease, background .2s ease; }
.header-search button:hover { background: var(--ink); color: #fff; transform: translateY(-1px); }
.header-search svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.menu-toggle { display: none; width: 46px; height: 42px; padding: 10px; border: 2px solid var(--ink); background: #fff; cursor: pointer; }
.menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; margin: 4px 0; background: var(--ink); }
.primary-navigation { padding: 0 var(--page-pad); }
.primary-menu, .primary-navigation ul { display: flex; justify-content: flex-start; align-items: center; flex-wrap: wrap; gap: 0; width: 100%; margin: 0; padding: 14px 0; list-style: none; }
.primary-navigation a { display: block; padding: 3px 0; border-bottom: 3px solid transparent; font-size: clamp(12px, 1vw, 15px); font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.primary-navigation .primary-menu > li + li { margin-left: clamp(11px, 1.4vw, 25px); padding-left: clamp(11px, 1.4vw, 25px); border-left: 1px solid #d6d2cb; }
.primary-navigation .primary-menu > li:last-child { margin-left: auto; padding-left: 0; border-left: 0; }
.primary-navigation .primary-menu > li:last-child > a { display: flex; align-items: center; gap: 7px; }
.primary-navigation .primary-menu > li:last-child > a::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  background: currentColor;
  opacity: .46;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg fill='none' stroke='black' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m8 1.8 5.5 3.1v6.2L8 14.2l-5.5-3.1V4.9L8 1.8Z'/%3E%3Cpath d='m2.7 5 5.3 3 5.3-3M8 8v6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cg fill='none' stroke='black' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m8 1.8 5.5 3.1v6.2L8 14.2l-5.5-3.1V4.9L8 1.8Z'/%3E%3Cpath d='m2.7 5 5.3 3 5.3-3M8 8v6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  transition: opacity .2s ease, transform .2s ease;
}
.primary-navigation .primary-menu > li:last-child > a:hover::before,
.primary-navigation .primary-menu > li:last-child.current-menu-item > a::before { opacity: .75; transform: translateY(-1px); }
.primary-navigation a:hover, .primary-navigation .current-menu-item > a { border-bottom-color: var(--ink); }
.primary-navigation .sub-menu { position: absolute; display: none; min-width: 220px; padding: 10px 18px 14px; border: 1px solid var(--ink); background: #fff; box-shadow: 6px 6px 0 rgba(0,0,0,.14); }
.primary-navigation li { position: relative; }
.primary-navigation li:hover > .sub-menu, .primary-navigation li:focus-within > .sub-menu { display: block; }
.primary-navigation .sub-menu li + li { border-top: 1px solid var(--line); }
.primary-navigation .sub-menu a { padding: 10px 0; font-size: 12px; }

/* Shared editorial pieces */
.site-main { overflow: hidden; }
.image-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.1) 65%, transparent 82%); }
.micro-label { display: inline-block; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.post-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 9px; color: #999; font-size: 11px; font-weight: 600; }
.editorial-section { padding: 64px var(--page-pad); border-bottom: 1px solid var(--ink); }
.section-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-kicker > span { width: 10px; height: 10px; flex: 0 0 10px; background: var(--ink); }
.section-title-row { display: flex; align-items: baseline; gap: 22px; margin-bottom: 38px; }
.section-title-row h2 { margin: 0; font-size: clamp(38px, 4vw, 62px); line-height: 1; letter-spacing: -.045em; }
.section-title-row > i { flex: 1; height: 3px; background: var(--ink); transform: translateY(-8px); }
.section-title-row > a { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.section-title-row > b { padding: 6px 12px; transform: translateY(-5px); background: var(--ink); color: var(--aged); font-size: 10px; letter-spacing: .11em; text-transform: uppercase; white-space: nowrap; }
.card-image, .portrait-image, .compact-image { display: block; overflow: hidden; background: var(--soft); }
.card-image img, .portrait-image img, .compact-image img, .immersive-feature > img, .split-image > img, .heritage-feature > img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.card-image:hover img, .portrait-image:hover img, .compact-image:hover img, .split-image:hover > img, .heritage-feature:hover > img { transform: scale(1.025); }

/* Hero */
.hero-section { display: grid; grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr); height: clamp(540px, 68vh, 680px); border-bottom: 1px solid var(--ink); }
.hero-main { position: relative; min-height: 0; overflow: hidden; border-right: 1px solid var(--ink); background: var(--ink); color: #fff; }
.hero-main > img { width: 100%; height: 100%; object-fit: cover; opacity: .9; transition: transform .6s ease; }
.hero-main:hover > img { transform: scale(1.015); }
.hero-copy { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 0 var(--page-pad) 46px; }
.hero-copy .eyebrow { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-copy .eyebrow > span:first-child { padding: 5px 11px; background: #fff; color: var(--ink); }
.hero-copy .post-meta { margin: 0; color: rgba(255,255,255,.65); }
.hero-copy h1 { max-width: 1050px; margin: 0 0 14px; font-size: clamp(38px, 4.35vw, 70px); line-height: .99; letter-spacing: -.04em; text-wrap: balance; }
.hero-copy p { max-width: 650px; margin: 0; color: rgba(255,255,255,.82); font-size: clamp(15px, 1.3vw, 18px); line-height: 1.5; }
.hero-side { display: flex; flex-direction: column; min-width: 0; }
.hero-side-item { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 25px 30px; border-bottom: 1px solid var(--ink); transition: background .2s, color .2s; }
.hero-side-item:hover { background: var(--ink); color: #fff; }
.hero-side-item:hover .micro-label, .hero-side-item:hover .post-meta { color: rgba(255,255,255,.55); }
.hero-side-item h2 { margin: 9px 0 0; font-size: clamp(17px, 1.4vw, 22px); line-height: 1.2; letter-spacing: -.015em; }
.hero-side > .editorial-ad { flex: .7; min-height: 150px; }

/* Ads */
.editorial-ad { display: flex; align-items: center; justify-content: center; min-height: 110px; background: repeating-linear-gradient(45deg, var(--soft), var(--soft) 10px, #fff 10px, #fff 20px); color: #999; font-family: monospace; font-size: 11px; letter-spacing: .05em; text-transform: lowercase; }
.editorial-ad.has-banner { min-height: 0; padding: 12px; background: #fff; }
.stadv-banner { position: relative; width: 100%; text-align: center; }
.stadv-banner img { display: block; width: 100%; height: auto; max-height: 250px; margin: auto; object-fit: contain; }
.stadv-banner-tag { position: absolute; z-index: 2; top: 4px; left: 4px; padding: 2px 5px; background: rgba(255,255,255,.86); color: #555; font-size: 9px; text-transform: uppercase; }
.ad-wrap { padding: 0 var(--page-pad); border-bottom: 1px solid var(--ink); }
.ad-billboard .editorial-ad { min-height: 230px; }
.ad-leaderboard .editorial-ad { min-height: 120px; }

/* Ticker */
.news-ticker { overflow: hidden; border-bottom: 1px solid var(--ink); background: var(--ink); color: #fff; }
.ticker-track { display: inline-flex; gap: 46px; min-width: 200%; padding: 10px 28px; white-space: nowrap; font-size: 12px; font-weight: 600; animation: ticker 45s linear infinite; }
.news-ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* News mosaic */
.news-mosaic { display: grid; grid-template-columns: 1.45fr 1fr 1fr; border: 1px solid var(--ink); }
.news-card { min-width: 0; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.news-card-1 { grid-row: span 2; }
.news-card-3, .news-card-5 { border-right: 0; }
.news-card-4, .news-card-5 { border-bottom: 0; }
.news-card-4, .news-card-5 { display: flex; flex-direction: column; justify-content: center; }
.news-card-5 { background: var(--ink); color: #fff; }
.news-card-5 .micro-label, .news-card-5 .post-meta { color: rgba(255,255,255,.55); }
.news-card .card-image { aspect-ratio: 16 / 10; border-bottom: 1px solid var(--ink); }
.news-card-1 .card-image { aspect-ratio: 3 / 2; }
.card-copy { padding: 21px 24px 24px; }
.news-card-1 .card-copy { padding: 27px 31px; }
.card-copy h3 { margin: 8px 0 0; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.2; letter-spacing: -.015em; }
.news-card-1 h3 { font-size: clamp(25px, 2.25vw, 35px); line-height: 1.08; }
.card-copy p { margin: 12px 0; color: #555; font-size: 14px; line-height: 1.55; }

/* Popular */
.popular-strip { display: grid; grid-template-columns: minmax(210px, 270px) 1fr; border-bottom: 1px solid var(--ink); }
.popular-heading { display: flex; flex-direction: column; justify-content: space-between; padding: 38px 30px; background: var(--ink); color: #fff; }
.popular-heading h2 { margin: 0; font-size: 30px; line-height: 1.04; letter-spacing: -.03em; }
.popular-heading > span { color: rgba(255,255,255,.26); font-size: 58px; font-weight: 800; }
.popular-items { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.popular-items > a { min-width: 0; padding: 34px 26px; border-right: 1px solid var(--line); transition: background .2s, color .2s; }
.popular-items > a:last-child { border-right: 0; }
.popular-items > a:hover { background: var(--ink); color: #fff; }
.popular-items strong { display: block; margin-bottom: 16px; font-size: 49px; line-height: 1; letter-spacing: -.06em; }
.popular-items h3 { margin: 0 0 14px; font-size: 16px; line-height: 1.3; }
.popular-items span { color: #888; font-size: 11px; font-weight: 700; }

/* Rails */
.rail-section { padding-right: 0; padding-left: 0; }
.rail-section .section-heading { padding: 0 var(--page-pad); }
.rail-controls { display: flex; align-self: center; }
.rail-controls button { display: grid; width: 48px; height: 48px; place-items: center; border: 2px solid var(--ink); background: #fff; color: var(--ink); font-size: 19px; font-weight: 800; cursor: pointer; }
.rail-controls button + button { border-left: 0; background: var(--ink); color: #fff; }
.card-rail { display: flex; gap: 28px; overflow-x: auto; padding: 0 var(--page-pad) 8px; scroll-behavior: smooth; scrollbar-width: none; }
.card-rail::-webkit-scrollbar { display: none; }
.portrait-card { flex: 0 0 clamp(270px, 25vw, 400px); }
.portrait-image { aspect-ratio: 3 / 4; margin-bottom: 15px; }
.portrait-card h3 { margin: 7px 0 0; font-size: clamp(18px, 1.4vw, 22px); line-height: 1.2; letter-spacing: -.015em; }

/* Full feature */
.immersive-feature { position: relative; min-height: max(560px, 78vh); overflow: hidden; background: var(--ink); color: #fff; }
.immersive-feature > img { position: absolute; inset: 0; opacity: .82; }
.immersive-feature .image-shade { background: linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.25) 65%, transparent); }
.immersive-copy { position: absolute; z-index: 2; bottom: 60px; left: var(--page-pad); max-width: 760px; }
.feature-label { display: inline-block; margin-bottom: 18px; padding: 6px 12px; background: #fff; color: var(--ink); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.immersive-copy h2 { margin: 0 0 15px; font-size: clamp(35px, 4.35vw, 66px); line-height: 1; letter-spacing: -.04em; text-wrap: balance; }
.immersive-copy p { max-width: 580px; margin: 0; color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.5; }
.immersive-copy .post-meta { color: rgba(255,255,255,.58); }

/* Split building section */
.split-feature { display: grid; grid-template-columns: 1fr 1.4fr; border-bottom: 1px solid var(--ink); }
.split-list { padding: 60px var(--page-pad); border-right: 1px solid var(--ink); }
.split-list > h2 { margin: 0 0 31px; font-size: clamp(34px, 3.2vw, 50px); letter-spacing: -.04em; }
.headline-row { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 20px 0; border-top: 1px solid var(--ink); }
.headline-row h3 { margin: 0; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.25; letter-spacing: -.015em; }
.headline-row > span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
.outline-button { display: inline-block; margin-top: 25px; padding: 11px 22px; border: 2px solid var(--ink); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: background .2s, color .2s; }
.outline-button:hover { background: var(--ink); color: #fff; }
.split-image { position: relative; min-height: 560px; overflow: hidden; background: var(--ink); color: #fff; }
.split-image > img { position: absolute; inset: 0; opacity: .88; }
.split-image > div { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 0 38px 38px; }
.split-image h3 { max-width: 780px; margin: 10px 0 0; font-size: clamp(26px, 2.6vw, 42px); line-height: 1.08; letter-spacing: -.025em; }
.split-image .micro-label, .split-image .post-meta { color: rgba(255,255,255,.65); }

/* Heritage */
.heritage-section { padding-top: 70px; padding-bottom: 76px; background: var(--aged); }
.heritage-grid { display: grid; grid-template-columns: 1.45fr 1fr; border: 1px solid var(--ink); }
.heritage-feature { position: relative; min-height: 570px; overflow: hidden; border-right: 1px solid var(--ink); }
.heritage-feature > img { position: absolute; inset: 0; filter: sepia(.4) contrast(1.04); }
.heritage-stamp { position: absolute; top: 22px; left: 22px; padding: 7px 11px; border: 1px solid var(--ink); background: var(--aged); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.heritage-feature > div { position: absolute; bottom: 0; left: 0; max-width: 560px; padding: 29px 34px; border-top: 1px solid var(--ink); border-right: 1px solid var(--ink); background: var(--aged); }
.heritage-feature h3 { margin: 9px 0 0; font-size: clamp(25px, 2.35vw, 38px); line-height: 1.07; letter-spacing: -.025em; }
.heritage-list { display: flex; flex-direction: column; }
.heritage-list > a { flex: 1; display: grid; grid-template-columns: 104px 1fr 22px; align-items: center; gap: 18px; padding: 20px 26px; border-bottom: 1px solid var(--ink); transition: background .2s, color .2s; }
.heritage-list > a:last-child { border-bottom: 0; }
.heritage-list > a:hover { background: var(--ink); color: var(--aged); }
.heritage-list img { width: 104px; height: 78px; object-fit: cover; filter: sepia(.4); }
.heritage-list h3 { margin: 5px 0 0; font-size: 16px; line-height: 1.22; }
.heritage-list strong { font-size: 18px; }
.heritage-list > a:hover .micro-label, .heritage-list > a:hover .post-meta { color: rgba(236,229,214,.6); }

/* People */
.dark-section { border-bottom-color: var(--ink); background: var(--ink); color: #fff; }
.dark-section .section-kicker { color: rgba(255,255,255,.55); }
.dark-section .section-kicker > span { background: #fff; }
.dark-section .section-title-row > i { background: rgba(255,255,255,.3); }
.dark-section .rail-controls button { border-color: #fff; background: transparent; color: #fff; }
.dark-section .rail-controls button + button { background: #fff; color: var(--ink); }
.dark-section .micro-label, .dark-section .post-meta { color: rgba(255,255,255,.5); }
.people-section .portrait-card { flex-basis: clamp(240px, 23vw, 360px); }
.people-section .portrait-card-featured { flex-basis: clamp(340px, 36vw, 560px); }
.people-section .portrait-card-featured .portrait-image { aspect-ratio: 1 / 1.04; }
.people-section .portrait-card-featured h3 { font-size: clamp(25px, 2.2vw, 36px); line-height: 1.08; }

/* Design, product and side ad */
.compact-columns { display: grid; grid-template-columns: 1fr 1fr minmax(220px, 300px); border-bottom: 3px solid var(--ink); }
.compact-column { padding: 58px 38px 52px; border-right: 1px solid var(--ink); }
.compact-column > h2 { margin: 0 0 24px; font-size: clamp(30px, 2.7vw, 42px); letter-spacing: -.035em; }
.compact-column article { display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 17px; padding: 17px 0; border-top: 1px solid var(--line); }
.compact-image { width: 130px; height: 94px; }
.compact-column h3 { margin: 5px 0 0; font-size: 16px; line-height: 1.25; }
.compact-ad > .editorial-ad { height: 100%; min-height: 100%; }

/* Footer */
.site-footer { background: var(--ink); color: #fff; }
.footer-main { display: grid; grid-template-columns: 1.35fr 1fr; gap: 50px; padding: 76px var(--page-pad) 60px; border-bottom: 1px solid rgba(255,255,255,.2); }
.newsletter-block h2 { margin: 0 0 13px; font-size: clamp(34px, 3.5vw, 54px); line-height: 1.02; letter-spacing: -.04em; }
.newsletter-block p { max-width: 470px; margin: 0 0 25px; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.55; }
.newsletter-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 70px; min-width: min(100%, 390px); padding: 14px 18px; border: 1px solid #fff; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: background .2s, color .2s; }
.newsletter-link:hover { background: #fff; color: var(--ink); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer-links h3 { margin: 0 0 17px; color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.footer-links ul, .footer-links .primary-menu { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-links li { font-size: 13px; }
.footer-links a { color: rgba(255,255,255,.78); }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 25px var(--page-pad); color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.footer-brand img { display: block; width: auto; height: 30px; filter: brightness(0) invert(1); }

/* Archive cards and standard pages */
.archive-header { padding: 64px var(--page-pad) 44px; border-bottom: 1px solid var(--ink); }
.archive-header .section-kicker { margin-bottom: 14px; }
.archive-header h1 { max-width: 1050px; margin: 0; font-size: clamp(40px, 5.6vw, 82px); line-height: .97; letter-spacing: -.055em; }
.archive-header p { max-width: 760px; margin: 20px 0 0; color: #555; font-size: 16px; line-height: 1.6; }
.archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 0 var(--page-pad); }
.archive-card { padding: 34px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.archive-card:nth-child(3n) { border-right: 0; }
.archive-card .card-image { aspect-ratio: 3 / 2; margin-bottom: 20px; }
.archive-card h2 { margin: 8px 0 0; font-size: clamp(20px, 1.7vw, 27px); line-height: 1.15; letter-spacing: -.02em; }
.archive-card p { margin: 13px 0 0; color: #555; font-size: 13px; line-height: 1.55; }
.pagination { padding: 38px var(--page-pad) 58px; text-align: center; }
.pagination .nav-links { display: inline-flex; align-items: center; border: 1px solid var(--ink); }
.pagination a, .pagination span { display: grid; min-width: 44px; height: 44px; padding: 0 12px; place-items: center; border-right: 1px solid var(--ink); font-size: 12px; font-weight: 800; }
.pagination .current { background: var(--ink); color: #fff; }

/* Article */
.article-header { padding: 58px max(var(--page-pad), calc((100vw - 1240px) / 2)); border-bottom: 1px solid var(--ink); }
.article-header .micro-label { padding: 5px 10px; background: var(--ink); color: #fff; }
.article-header h1 { max-width: 1120px; margin: 18px 0 16px; font-size: clamp(40px, 5.4vw, 78px); line-height: .99; letter-spacing: -.052em; text-wrap: balance; }
.article-deck { max-width: 800px; margin: 0 0 25px; color: #505050; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5; }
.article-byline { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.author-line { display: flex; align-items: center; gap: 12px; }
.author-line img { width: 42px; height: 42px; border-radius: 50%; }
.author-line strong { display: block; font-size: 12px; }
.author-line span { display: block; margin-top: 3px; color: #777; font-size: 11px; }
.share-links { display: flex; gap: 7px; }
.share-links a { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--ink); font-size: 11px; font-weight: 800; }
.article-layout { display: grid; grid-template-columns: minmax(0, 820px) minmax(250px, 320px); justify-content: center; gap: 62px; padding: 52px var(--page-pad) 76px; }
.article-featured { margin: 0 0 35px; }
.article-featured img { display: block; width: 100%; height: auto; }
.article-featured figcaption { padding-top: 8px; color: #777; font-size: 11px; }
.entry-content { font-family: Georgia, "Times New Roman", serif; font-size: clamp(17px, 1.35vw, 20px); line-height: 1.75; }
.entry-content > * { max-width: 100%; }
.entry-content p { margin: 0 0 1.45em; }
.entry-content h2, .entry-content h3 { margin: 1.5em 0 .55em; font-family: "Manrope", sans-serif; line-height: 1.14; letter-spacing: -.025em; }
.entry-content h2 { font-size: clamp(29px, 2.6vw, 42px); }
.entry-content h3 { font-size: clamp(23px, 2vw, 32px); }
.entry-content a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.entry-content img, .entry-content iframe { max-width: 100%; height: auto; }
.entry-content blockquote { margin: 1.7em 0; padding: .2em 0 .2em 25px; border-left: 5px solid var(--ink); font-family: "Manrope", sans-serif; font-size: 1.35em; font-weight: 700; line-height: 1.35; }
.entry-content .alignwide { width: min(1120px, calc(100vw - 2 * var(--page-pad))); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.article-sidebar { min-width: 0; }
.sidebar-sticky { position: sticky; top: 24px; }
.sidebar-block { padding: 24px 0; border-top: 3px solid var(--ink); }
.sidebar-block h2 { margin: 0 0 17px; font-size: 22px; letter-spacing: -.02em; }
.sidebar-post { display: grid; grid-template-columns: 82px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
.sidebar-post img { width: 82px; height: 65px; object-fit: cover; }
.sidebar-post h3 { margin: 0; font-size: 13px; line-height: 1.3; }
.sidebar-post span { display: block; margin-top: 5px; color: #888; font-size: 10px; }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 35px; padding-top: 20px; border-top: 1px solid var(--ink); }
.post-tags a { padding: 6px 10px; border: 1px solid var(--line); font: 700 10px "Manrope", sans-serif; letter-spacing: .05em; text-transform: uppercase; }
.post-navigation { display: grid; grid-template-columns: 1fr 1fr; margin-top: 42px; border: 1px solid var(--ink); font-family: "Manrope", sans-serif; }
.post-navigation a { padding: 20px; }
.post-navigation a + a { border-left: 1px solid var(--ink); text-align: right; }
.post-navigation span { display: block; margin-bottom: 6px; color: #777; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.post-navigation strong { font-size: 13px; line-height: 1.3; }

.page-shell { max-width: 980px; margin: 0 auto; padding: 60px var(--page-pad) 80px; }
.page-shell h1 { margin: 0 0 36px; font-size: clamp(42px, 5vw, 72px); line-height: 1; letter-spacing: -.05em; }
.not-found { min-height: 58vh; display: grid; place-content: center; padding: 60px var(--page-pad); text-align: center; }
.not-found strong { font-size: clamp(90px, 15vw, 220px); line-height: .8; letter-spacing: -.08em; }
.not-found h1 { margin: 25px 0 12px; font-size: clamp(30px, 4vw, 50px); }
.not-found p { color: #666; }

@media (max-width: 1100px) {
  .masthead-context { display: none; }
  .masthead { grid-template-columns: 1fr auto; }
  .site-brand { grid-row: 1; justify-self: start; }
  .masthead-actions { grid-column: 2; }
  .hero-section { grid-template-columns: 1.6fr 1fr; }
  .hero-section { height: clamp(520px, 66vh, 620px); }
  .hero-main { min-height: 0; }
  .hero-side-item { padding: 22px; }
  .news-mosaic { grid-template-columns: 1.3fr 1fr; }
  .news-card-3, .news-card-5 { border-right: 1px solid var(--ink); }
  .news-card:nth-child(even) { border-right: 0; }
  .news-card-1 { grid-row: span 2; }
  .news-card-5 { grid-column: span 2; }
  .popular-strip { grid-template-columns: 200px 1fr; }
  .popular-items { grid-template-columns: repeat(2, 1fr); }
  .popular-items > a:nth-child(2) { border-right: 0; }
  .popular-items > a:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split-feature { grid-template-columns: 1fr 1.15fr; }
  .heritage-grid { grid-template-columns: 1.2fr 1fr; }
  .compact-columns { grid-template-columns: 1fr 1fr; }
  .compact-ad { grid-column: span 2; min-height: 190px; }
  .archive-card { padding: 26px; }
  .article-layout { gap: 38px; }
}

@media (max-width: 780px) {
  :root { --page-pad: 20px; }
  .masthead { padding-top: 16px; padding-bottom: 16px; }
  .site-brand img { height: 43px; max-width: 190px; }
  .header-search { display: none; }
  .menu-toggle { display: block; }
  .primary-navigation { position: fixed; z-index: 99; inset: 77px 0 0; display: none; overflow-y: auto; padding: 20px; background: #fff; }
  .primary-navigation.is-open { display: block; }
  .primary-navigation .primary-menu, .primary-navigation > ul { display: block; padding: 0; }
  .primary-navigation li { border-bottom: 1px solid var(--ink); }
  .primary-navigation .primary-menu > li + li { margin-left: 0; padding-left: 0; border-left: 0; }
  .primary-navigation .primary-menu > li:last-child { margin-left: 0; }
  .primary-navigation .primary-menu > li:last-child > a::before { width: 17px; height: 17px; flex-basis: 17px; }
  .primary-navigation a { padding: 17px 0; font-size: 17px; }
  .primary-navigation .sub-menu { position: static; display: block; min-width: 0; padding: 0 0 8px 18px; border: 0; box-shadow: none; }
  .primary-navigation .sub-menu li { border: 0; }
  .primary-navigation .sub-menu a { padding: 8px 0; font-size: 13px; }
  .hero-section { display: block; height: auto; min-height: 0; }
  .hero-main { display: block; min-height: 540px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .hero-copy { padding-bottom: 28px; }
  .hero-copy h1 { font-size: clamp(34px, 11vw, 54px); }
  .hero-copy p { display: none; }
  .hero-side-item { min-height: 150px; }
  .hero-side > .editorial-ad { min-height: 180px; }
  .ticker-track { gap: 30px; animation-duration: 32s; }
  .editorial-section { padding-top: 48px; padding-bottom: 48px; }
  .section-title-row { gap: 14px; margin-bottom: 28px; }
  .section-title-row h2 { font-size: clamp(34px, 11vw, 48px); }
  .section-title-row > i { display: none; }
  .section-title-row > a { margin-left: auto; }
  .section-title-row > b { display: none; }
  .news-mosaic { display: block; }
  .news-card { border-right: 0 !important; border-bottom: 1px solid var(--ink); }
  .news-card:last-child { border-bottom: 0; }
  .news-card-4, .news-card-5 { min-height: 180px; }
  .news-card-1 h3 { font-size: 27px; }
  .ad-billboard .editorial-ad { min-height: 160px; }
  .popular-strip { display: block; }
  .popular-heading { display: block; padding: 26px 20px; }
  .popular-heading h2 { font-size: 28px; }
  .popular-heading h2 br { display: none; }
  .popular-heading > span { display: none; }
  .popular-items { display: flex; overflow-x: auto; }
  .popular-items > a { flex: 0 0 75vw; border-bottom: 0 !important; }
  .portrait-card { flex-basis: 76vw; }
  .immersive-feature { min-height: 590px; }
  .immersive-copy { right: var(--page-pad); bottom: 35px; }
  .immersive-copy h2 { font-size: 38px; }
  .split-feature { display: flex; flex-direction: column; }
  .split-list { border-right: 0; border-bottom: 1px solid var(--ink); padding-top: 48px; padding-bottom: 48px; }
  .split-image { min-height: 520px; }
  .split-image > div { padding: 0 24px 28px; }
  .headline-row { display: block; }
  .headline-row > span { display: block; margin-top: 7px; }
  .heritage-section { padding-right: 0; padding-left: 0; }
  .heritage-section .section-heading { padding: 0 var(--page-pad); }
  .heritage-grid { display: block; border-right: 0; border-left: 0; }
  .heritage-feature { display: block; min-height: 540px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .heritage-feature > div { right: 20px; max-width: none; padding: 24px; }
  .heritage-list > a { grid-template-columns: 84px 1fr 18px; gap: 13px; padding: 16px 20px; }
  .heritage-list img { width: 84px; height: 70px; }
  .people-section .portrait-card, .people-section .portrait-card-featured { flex-basis: 78vw; }
  .compact-columns { display: block; }
  .compact-column { padding: 44px 20px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .compact-column article { grid-template-columns: 105px 1fr; }
  .compact-image { width: 105px; height: 82px; }
  .compact-ad { min-height: 190px; }
  .footer-main { display: block; padding-top: 58px; }
  .footer-links { margin-top: 50px; }
  .footer-bottom { flex-wrap: wrap; }
  .footer-bottom .footer-brand { width: 100%; }
  .archive-grid { display: block; padding: 0; }
  .archive-card { padding: 28px 20px; border-right: 0; }
  .archive-card h2 { font-size: 25px; }
  .article-header { padding-top: 45px; }
  .article-header h1 { font-size: clamp(39px, 11vw, 60px); }
  .article-byline { align-items: flex-start; flex-direction: column; }
  .article-layout { display: block; padding-top: 28px; }
  .article-sidebar { margin-top: 50px; }
  .post-navigation { display: block; }
  .post-navigation a { display: block; }
  .post-navigation a + a { border-top: 1px solid var(--ink); border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  * { transition-duration: .01ms !important; }
}
