:root {
  --brand: #34559d;
  --brand-dark: #203b78;
  --brand-soft: #dce6ff;
  --ink: #151515;
  --muted: #657084;
  --bg: #eff3ff;
  --surface: #fff;
  --surface-soft: #f7f9ff;
  --line: #dbe3f0;
  --line-strong: #c7d1e2;
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 18px 55px rgba(31, 54, 104, .12);
  --shadow-soft: 0 10px 30px rgba(31, 54, 104, .08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background-color: var(--bg);
  background-image: radial-gradient(circle at 8% 5%, rgba(52,85,157,.12), transparent 30rem), radial-gradient(circle at 95% 30%, rgba(52,85,157,.08), transparent 25rem), radial-gradient(circle, rgba(52,85,157,.1) .75px, transparent .9px);
  background-size: auto, auto, 22px 22px;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid rgba(52,85,157,.38); outline-offset: 3px; }
.site-container { width: 85%; margin-inline: auto; }
.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 { position: fixed; top: .7rem; left: .7rem; z-index: 1000; padding: .7rem 1rem; background: var(--ink); color: #fff; border-radius: 8px; transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.topbar { background: var(--ink); color: rgba(255,255,255,.8); font-size: .74rem; }
.topbar-inner { display: flex; min-height: 34px; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-date { display: inline-flex; align-items: center; gap: .45rem; text-transform: capitalize; }
.topbar-date svg { width: 14px; color: #8eabef; }
.utility-nav { display: flex; gap: 1.2rem; }
.utility-nav a:hover { color: #fff; }

.site-header { position: sticky; top: 0; z-index: 200; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); transition: box-shadow .2s ease; }
.site-header.is-scrolled { box-shadow: 0 9px 30px rgba(31,54,104,.1); }
.brand-row { display: grid; min-height: 78px; grid-template-columns: 44px 1fr auto; align-items: center; gap: .75rem; }
.site-brand { justify-self: center; }
.custom-logo-link, .bundled-logo-link { display: block; }
.custom-logo, .bundled-logo { width: min(340px, 52vw); max-height: 64px; object-fit: contain; object-position: left center; }
.wordmark { display: inline-flex; align-items: center; gap: .65rem; font: 700 clamp(1.4rem,3vw,2.2rem)/1 var(--serif); letter-spacing: -.04em; }
.brand-symbol { position: relative; display: inline-block; width: 12px; height: 12px; background: var(--brand); border-radius: 50%; box-shadow: 0 0 0 6px rgba(52,85,157,.12); }
.brand-symbol::after { position: absolute; inset: -9px; border: 1px solid rgba(52,85,157,.25); border-radius: 50%; content: ""; animation: brand-pulse 2.8s ease-in-out infinite; }
@keyframes brand-pulse { 50% { transform: scale(1.25); opacity: .2; } }
.round-button { display: inline-grid; width: 43px; height: 43px; place-items: center; border: 1px solid var(--line); background: #fff; border-radius: 50%; cursor: pointer; transition: transform .2s, color .2s, border-color .2s; }
.round-button:hover { transform: translateY(-2px); border-color: var(--brand); color: var(--brand); }
.round-button svg { width: 19px; }
.header-actions { display: flex; align-items: center; gap: .55rem; }
.login-chip { display: inline-flex; min-height: 43px; align-items: center; gap: .45rem; padding: .55rem .85rem; background: var(--ink); color: #fff; border-radius: 99px; font-size: .78rem; font-weight: 700; transition: background .2s, transform .2s; }
.login-chip:hover { background: var(--brand); transform: translateY(-2px); }
.login-chip svg { width: 17px; }

.navigation-shell { position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,.08); background: #121a2b; color: #fff; box-shadow: inset 0 -1px rgba(255,255,255,.07); }
.navigation-shell::before { position: absolute; top: 0; bottom: 0; left: -220px; width: 180px; background: linear-gradient(90deg,transparent,rgba(83,124,218,.2),transparent); content: ""; animation: nav-scan 9s ease-in-out infinite; pointer-events: none; transform: skewX(-18deg); }
@keyframes nav-scan { 0%,12% { left: -220px; } 58%,100% { left: calc(100% + 220px); } }
.navigation-row { position: relative; z-index: 1; display: flex; min-height: 56px; align-items: stretch; }
.category-trigger { position: relative; display: inline-flex; flex: none; align-items: center; gap: .55rem; border: 0; padding: 0 1.15rem; overflow: hidden; background: var(--brand); color: #fff; font-size: .77rem; font-weight: 700; cursor: pointer; transition: background .2s; }
.category-trigger::after { position: absolute; right: -20px; width: 38px; height: 120%; background: rgba(255,255,255,.1); content: ""; transform: skewX(-18deg); }
.category-trigger:hover, .category-trigger[aria-expanded="true"] { background: #4569b9; }
.category-trigger svg { width: 16px; transition: transform .2s; }
.category-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.trigger-spark { width: 7px; height: 7px; background: #fff; border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,255,255,.14),0 0 12px #fff; animation: trigger-glow 1.8s ease-in-out infinite; }
@keyframes trigger-glow { 50% { box-shadow: 0 0 0 9px rgba(255,255,255,0); } }
.primary-navigation { min-width: 0; flex: 1; overflow: hidden; }
.primary-menu, .primary-navigation ul { display: flex; height: 100%; align-items: stretch; margin: 0; padding: 0; list-style: none; }
.primary-menu li { display: flex; }
.primary-menu a { position: relative; display: flex; align-items: center; margin: 8px 2px; padding: 0 .76rem; color: rgba(255,255,255,.78); border-radius: 8px; font-size: .8rem; font-weight: 650; white-space: nowrap; transition: color .2s,background .2s,transform .2s; }
.primary-menu a::after { position: absolute; right: .76rem; bottom: 5px; left: .76rem; height: 2px; background: #81a3ef; border-radius: 99px; box-shadow: 0 0 9px rgba(129,163,239,.7); content: ""; transform: scaleX(0); transition: transform .2s; transform-origin: left; }
.primary-menu a:hover, .primary-menu .current-menu-item > a, .primary-menu .current-menu-ancestor > a { background: rgba(92,132,222,.17); color: #fff; transform: translateY(-1px); }
.primary-menu a:hover::after, .primary-menu .current-menu-item > a::after { transform: scaleX(1); }
.trending-link { display: inline-flex; align-items: center; gap: .4rem; margin: 8px 0 8px auto; padding: 0 .9rem; background: rgba(201,48,38,.14); color: #ff8c82; border: 1px solid rgba(255,120,108,.18); border-radius: 8px; font-size: .76rem; font-weight: 700; transition: background .2s,color .2s; }
.trending-link:hover { background: #b42318; color: #fff; }
.trending-link svg { width: 17px; fill: currentColor; animation: flame-dance 1.8s ease-in-out infinite; }
@keyframes flame-dance { 50% { transform: translateY(-2px) rotate(4deg) scale(1.08); } }
.nav-datetime { display: inline-flex; flex: none; align-items: center; gap: .45rem; margin-left: auto; padding: .45rem .85rem; border-inline: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.045); color: #dce6ff; }
.nav-datetime > svg { width: 17px; }
.nav-datetime span { display: flex; align-items: baseline; gap: .4rem; white-space: nowrap; }
.nav-datetime small { color: rgba(255,255,255,.52); font-size: .59rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.nav-datetime strong { font-size: .78rem; }
.nav-datetime + .trending-link { margin-left: 0; }
.mobile-menu-button { display: inline-grid; }

.mega-menu { position: absolute; right: 0; left: 0; visibility: hidden; overflow: hidden; padding: 2.2rem 0; background: var(--ink); color: #fff; box-shadow: 0 28px 70px rgba(0,0,0,.24); opacity: 0; transform: translateY(-12px); transition: opacity .22s, transform .22s, visibility .22s; }
.mega-menu::before { position: absolute; top: -230px; left: -130px; width: 500px; height: 500px; border: 1px solid rgba(116,150,229,.16); border-radius: 50%; box-shadow: 0 0 0 45px rgba(52,85,157,.04), 0 0 0 90px rgba(52,85,157,.03); content: ""; }
.mega-menu.is-open { visibility: visible; opacity: 1; transform: none; }
.mega-grid { position: relative; display: grid; grid-template-columns: .75fr 1.5fr 1fr; gap: 2rem; }
.mega-kicker, .section-kicker, .panel-kicker { display: block; color: #7798e4; font-size: .64rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.mega-intro h2 { margin: .65rem 0; font: 700 clamp(2rem,4vw,3.5rem)/.98 var(--serif); letter-spacing: -.04em; }
.mega-intro p { color: rgba(255,255,255,.62); font-size: .85rem; }
.mega-categories { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-content: start; gap: .55rem; }
.mega-categories a { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; min-height: 58px; padding: .75rem 2.3rem .75rem .9rem; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; transition: border-color .2s, transform .2s, background .2s; }
.mega-categories a::before { position: absolute; top: 0; bottom: 0; left: 0; width: 4px; background: var(--category-color); content: ""; }
.mega-categories a:hover { background: rgba(255,255,255,.08); border-color: var(--category-color); transform: translateX(4px); }
.mega-categories span { font-size: .85rem; font-weight: 700; }
.mega-categories small { color: rgba(255,255,255,.48); font-size: .63rem; }
.mega-categories svg { position: absolute; right: .8rem; width: 16px; color: var(--category-color); }
.mega-latest { display: grid; align-content: start; gap: .85rem; }
.mega-story { display: grid; grid-template-columns: 95px 1fr; gap: .8rem; padding-bottom: .85rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.mega-story-image { overflow: hidden; border-radius: 8px; background: #26314b; }
.mega-story-image img, .mega-story-image .post-image-placeholder { width: 100%; height: 80px; object-fit: cover; }
.mega-story time { color: #8ca7e8; font-size: .61rem; }
.mega-story h3 { margin: .25rem 0 0; font: 700 1rem/1.12 var(--serif); }
.mega-story h3 a:hover { color: #9db9ff; }

.mobile-drawer { position: fixed; inset: 0 auto 0 0; z-index: 500; width: min(88vw,380px); padding: 1.25rem; overflow-y: auto; background: #121a2b; color: #fff; box-shadow: var(--shadow); transform: translateX(-105%); transition: transform .24s ease; }
.mobile-drawer.is-open { transform: none; }
.mobile-drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.mobile-datetime { display: flex; align-items: center; gap: .55rem; margin: -1rem 0 1rem; padding: .75rem; background: var(--brand-soft); color: var(--brand-dark); border-radius: 9px; font-size: .72rem; font-weight: 700; text-transform: capitalize; }
.mobile-datetime svg { width: 17px; }
.mobile-primary-menu, .mobile-drawer .primary-menu { display: block; height: auto; margin: 0; padding: 0; list-style: none; }
.mobile-primary-menu li, .mobile-drawer .primary-menu li { display: block; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-primary-menu a, .mobile-drawer .primary-menu a { display: block; margin: .25rem 0; padding: .8rem .7rem; color: rgba(255,255,255,.82); border-radius: 8px; font-weight: 700; transform: none; }
.mobile-primary-menu a:hover, .mobile-drawer .primary-menu a:hover, .mobile-drawer .current-menu-item > a { background: rgba(92,132,222,.2); color: #fff; }
.mobile-category-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .55rem; margin-top: 1.4rem; }
.mobile-category-grid a { padding: .7rem; border-left: 4px solid var(--category-color); background: rgba(255,255,255,.07); border-radius: 7px; color: rgba(255,255,255,.8); font-size: .72rem; font-weight: 700; }
.drawer-backdrop { position: fixed; inset: 0; z-index: 450; visibility: hidden; background: rgba(21,21,21,.58); opacity: 0; transition: .22s; }
.drawer-backdrop.is-open { visibility: visible; opacity: 1; }

.search-dialog { position: fixed; inset: 0; z-index: 600; display: grid; visibility: hidden; place-items: start center; padding: 11vh 1rem 1rem; background: rgba(10,15,25,.78); opacity: 0; transition: .2s; }
.search-dialog.is-open { visibility: visible; opacity: 1; }
.search-box { width: min(850px,100%); padding: clamp(1.2rem,4vw,2.2rem); background: #fff; border-radius: var(--radius); box-shadow: 0 30px 90px rgba(0,0,0,.3); }
.search-box-head { display: flex; align-items: start; justify-content: space-between; gap: 1rem; }
.search-box h2 { margin: .35rem 0 1.3rem; font: 700 clamp(2rem,5vw,3.4rem)/1 var(--serif); letter-spacing: -.04em; }
.live-search-form { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: .7rem; padding: .55rem .55rem .55rem 1rem; border: 2px solid var(--brand); border-radius: 12px; }
.live-search-form > svg { width: 20px; color: var(--brand); }
.live-search-form input { min-width: 0; border: 0; outline: 0; font-size: 1rem; }
.live-search-form button, .page-search-form button, .footer-newsletter button, .primary-button { display: inline-flex; min-height: 42px; align-items: center; justify-content: center; gap: .4rem; border: 0; padding: .65rem 1rem; background: var(--brand); color: #fff; border-radius: 8px; font-size: .78rem; font-weight: 700; cursor: pointer; }
.search-suggestions { min-height: 90px; padding-top: 1rem; }
.search-suggestions > p { color: var(--muted); font-size: .8rem; }
.suggestion-item { display: grid; grid-template-columns: 76px 1fr auto; gap: .85rem; align-items: center; padding: .65rem; border-top: 1px solid var(--line); border-radius: 8px; transition: background .15s; }
.suggestion-item:hover, .suggestion-item.is-active { background: #f1f5ff; }
.suggestion-item img, .suggestion-placeholder { width: 76px; height: 58px; object-fit: cover; border-radius: 7px; background: var(--brand-soft); }
.suggestion-item small { color: var(--brand); font-size: .61rem; font-weight: 700; text-transform: uppercase; }
.suggestion-item strong { display: block; font: 700 1rem/1.15 var(--serif); }
.suggestion-item > svg { width: 17px; color: var(--brand); }

.site-section { padding-block: clamp(2rem,5vw,4rem); }
.home-hero { padding-top: clamp(1.5rem,3.5vw,3rem); }
.home-cover-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.home-cover-heading p { margin: .25rem 0 0; color: var(--muted); font: 600 clamp(1rem,2vw,1.22rem)/1.25 var(--serif); }
.cover-edition { display: inline-flex; flex: none; align-items: center; gap: .45rem; padding: .45rem .72rem; border: 1px solid var(--line); background: rgba(255,255,255,.76); color: var(--brand); border-radius: 99px; font-size: .66rem; font-weight: 700; text-transform: uppercase; }
.cover-edition svg { width: 15px; }
.hero-layout { display: grid; gap: 1rem; align-items: stretch; }
.hero-story { position: relative; display: grid; overflow: hidden; border: 1px solid #cbd6ea; background: #fff; color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-story::after { position: absolute; right: 0; bottom: 0; left: 0; z-index: 3; height: 4px; background: linear-gradient(90deg,#b42318 0 18%,var(--brand) 18% 100%); content: ""; pointer-events: none; }
.hero-media { position: relative; min-height: 280px; overflow: hidden; aspect-ratio: 16/8.4; background: var(--ink); }
.hero-media img, .hero-media .post-image-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-media img { transform: scale(1.05) translate3d(var(--media-x,0),var(--media-y,0),0); transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 52%,rgba(8,12,20,.42)); }
.hero-number { position: absolute; bottom: -.2rem; left: 1.25rem; color: rgba(255,255,255,.9); font: 700 clamp(3rem,7vw,5.5rem)/1 var(--serif); text-shadow: 0 4px 24px rgba(0,0,0,.35); }
.hero-copy { position: relative; z-index: 2; padding: clamp(1.35rem,3.5vw,2.4rem); }
.hero-copy h1 { max-width: 920px; margin: .55rem 0 .8rem; font: 700 clamp(2.35rem,4.5vw,4.6rem)/.94 var(--serif); letter-spacing: -.05em; }
.hero-copy h1 a:hover { color: var(--brand); }
.hero-copy > p { max-width: 800px; margin: 0 0 1rem; color: var(--muted); }
.category-label { display: inline-flex; align-items: center; gap: .4rem; color: var(--brand); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.category-label::before { width: 16px; height: 2px; background: currentColor; content: ""; }
.category-label--light { color: var(--brand); }
.hero-meta, .story-meta { display: flex; flex-wrap: wrap; gap: .35rem .8rem; color: var(--muted); font-size: .68rem; }
.hero-meta { color: var(--muted); }
.read-link { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1rem; padding: .65rem .9rem; background: var(--brand); color: #fff; border-radius: 8px; font-size: .78rem; font-weight: 700; }
.read-link:hover { background: var(--brand-dark); }
.read-link svg { width: 18px; }
.news-orbit { position: absolute; top: 1.5rem; right: 1.5rem; z-index: 4; width: clamp(78px,8vw,120px); aspect-ratio: 1; border: 0; padding: 0; background: transparent; color: #fff; border-radius: 50%; cursor: pointer; transform: translate3d(var(--orbit-x,0),var(--orbit-y,0),0); }
.orbit-ring { position: absolute; inset: 0; border: 1px solid rgba(255,154,144,.9); border-radius: 50%; animation: orbit 8s linear infinite; }
.orbit-ring span { position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; background: #ff8276; border-radius: 50%; box-shadow: 0 0 0 5px rgba(255,94,82,.18),0 0 15px rgba(255,94,82,.9); }
.orbit-ring--inner { inset: 13%; border-style: dashed; border-color: rgba(255,182,175,.6); animation-duration: 5s; animation-direction: reverse; }
.orbit-ring--inner span { top: auto; right: 5%; bottom: 8%; left: auto; width: 6px; height: 6px; background: #fff; }
.orbit-core { position: absolute; inset: 22%; display: grid; place-content: center; background: rgba(180,35,24,.9); border: 1px solid rgba(255,255,255,.4); border-radius: 50%; box-shadow: 0 8px 24px rgba(97,13,8,.3); backdrop-filter: blur(7px); text-align: center; }
.orbit-core svg { width: 14px; margin: auto; }
.orbit-core small, .orbit-core strong { display: block; font-size: .4rem; line-height: 1.1; letter-spacing: .06em; }
.orbit-core strong { font-size: .46rem; }
.news-orbit.is-paused .orbit-ring { animation-play-state: paused; }
@keyframes orbit { to { transform: rotate(360deg); } }
.hero-secondary { display: grid; align-content: start; gap: .75rem; padding: .8rem; border: 1px solid #ccd7eb; background: rgba(255,255,255,.62); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.hero-secondary-head { display: flex; align-items: center; justify-content: space-between; padding: .2rem .35rem .45rem; border-bottom: 1px solid var(--line); }
.hero-secondary-head strong { display: block; margin-top: .05rem; font: 700 1rem/1 var(--serif); }
.hero-secondary-head > svg { width: 18px; color: var(--brand); animation: secondary-nudge 2s ease-in-out infinite; }
@keyframes secondary-nudge { 50% { transform: translateY(4px); } }
.hero-secondary-item { position: relative; transition: transform .2s; }
.hero-secondary-item:hover { transform: translateX(3px); }
.hero-secondary-item .story-card { height: 100%; border-color: #d4ddec; box-shadow: none; }
.secondary-number { position: absolute; top: .7rem; right: .7rem; z-index: 3; display: grid; width: 28px; height: 28px; place-items: center; background: var(--ink); color: #fff; border-radius: 50%; font: 700 .68rem/1 var(--serif); box-shadow: 0 5px 14px rgba(0,0,0,.18); }

.story-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 13px; transition: transform .2s, box-shadow .2s; }
.story-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.story-image { display: block; overflow: hidden; aspect-ratio: 16/10; background: var(--brand-soft); }
.story-image img, .story-image .post-image-placeholder { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.story-card:hover .story-image img { transform: scale(1.035); }
.post-image-placeholder { display: grid; place-items: center; background: linear-gradient(135deg,#d8e2fa,#f7f9ff); color: var(--brand); }
.post-image-placeholder svg { width: 28px; }
.story-body { padding: 1rem; }
.story-title { margin: .4rem 0 .65rem; font: 700 1.35rem/1.08 var(--serif); letter-spacing: -.02em; }
.story-title a:hover { color: var(--brand); }
.story-excerpt { margin: 0 0 .8rem; color: var(--muted); font-size: .82rem; }
.story-card--compact { display: grid; grid-template-columns: 120px 1fr; }
.story-card--compact .story-image { height: 100%; aspect-ratio: auto; }
.story-card--compact .story-title { font-size: 1.08rem; }
.story-card--secondary .story-image { aspect-ratio: 16/8.8; }
.story-card--secondary .story-title { font-size: clamp(1.35rem,2.2vw,1.8rem); }
.story-card--secondary .story-excerpt { display: none; }
.story-card--horizontal { display: grid; grid-template-columns: minmax(150px,220px) 1fr; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; }
.story-card--horizontal:hover { box-shadow: none; }
.story-card--horizontal .story-image { margin-block: .8rem; border-radius: 10px; }
.story-card--horizontal .story-body { padding-block: 1.25rem; }
.story-card--feature .story-title { font-size: clamp(1.7rem,4vw,2.7rem); }
.story-card--feature .story-image { aspect-ratio: 16/9; }

.headline-ticker { background: var(--brand); color: #fff; }
.headline-ticker .site-container { display: flex; min-height: 44px; align-items: center; gap: 1rem; overflow: hidden; }
.headline-ticker span { display: inline-flex; flex: none; align-items: center; gap: .4rem; padding-right: 1rem; border-right: 1px solid rgba(255,255,255,.35); font-size: .65rem; font-weight: 700; text-transform: uppercase; }
.headline-ticker span svg { width: 15px; }
.headline-ticker a { overflow: hidden; font-size: .78rem; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.content-sidebar-grid { display: grid; gap: 2rem; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; padding-bottom: .75rem; border-bottom: 1px solid var(--line); }
.section-heading h2 { margin: .2rem 0 0; font: 700 clamp(2rem,4vw,3rem)/1 var(--serif); letter-spacing: -.04em; }
.section-heading > a { display: inline-flex; flex: none; align-items: center; gap: .35rem; color: var(--brand); font-size: .73rem; font-weight: 700; }
.section-heading > a svg { width: 16px; }
.section-kicker, .panel-kicker { color: var(--brand); }
.latest-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.story-card--latest { display: grid; grid-template-rows: auto 1fr; min-width: 0; }
.story-card--latest .story-image { aspect-ratio: 16/9; }
.story-card--latest .story-body { display: flex; flex-direction: column; }
.story-card--latest .story-title { font-size: clamp(1.2rem,2vw,1.55rem); }
.story-card--latest .story-excerpt { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.story-card--latest .story-meta { margin-top: auto; }
.editorial-sidebar { display: grid; align-content: start; gap: 1.2rem; }
.sidebar-panel { padding: 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 12px 35px rgba(31,54,104,.06); }
.sidebar-panel h2 { margin: .35rem 0 1rem; font: 700 1.8rem/1 var(--serif); }
.ranked-list { display: grid; gap: .8rem; margin: 0; padding: 0; list-style-position: inside; counter-reset: rank; }
.ranked-list li { display: grid; grid-template-columns: 32px 1fr; gap: .55rem; padding-bottom: .8rem; border-bottom: 1px solid var(--line); counter-increment: rank; }
.ranked-list li::before { color: var(--brand); font: 700 1.55rem/1 var(--serif); content: counter(rank,decimal-leading-zero); }
.ranked-list a { font: 700 .98rem/1.15 var(--serif); }
.ranked-list time { grid-column: 2; color: var(--muted); font-size: .61rem; }
.ad-slot { display: grid; min-height: 250px; place-items: center; border: 1px dashed #b9c4d8; background: rgba(255,255,255,.45); color: var(--muted); font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; }
.sidebar-advertise { position: relative; display: block; min-height: 270px; padding: 1.4rem; overflow: hidden; background: var(--ink); color: #fff; border-radius: 14px; box-shadow: var(--shadow-soft); }
.sidebar-advertise::after { position: absolute; right: -65px; bottom: -65px; width: 170px; height: 170px; border: 1px solid rgba(119,152,228,.35); border-radius: 50%; box-shadow: 0 0 0 25px rgba(52,85,157,.11),0 0 0 50px rgba(52,85,157,.06); content: ""; }
.sidebar-advertise > svg { width: 34px; margin: 2rem 0 1rem; color: #8caaef; }
.sidebar-advertise h2 { max-width: 220px; margin: 0; font: 700 2rem/1 var(--serif); }
.sidebar-advertise p { max-width: 240px; color: rgba(255,255,255,.62); font-size: .76rem; }
.sidebar-advertise > strong { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: .4rem; color: #a9c0f8; font-size: .72rem; }
.sidebar-advertise > strong svg { width: 16px; }
.home-advertising { position: relative; display: grid; gap: 1.5rem; margin-block: clamp(2.5rem,5vw,4.5rem); padding: clamp(1.4rem,4vw,3rem); overflow: hidden; background: var(--ink); color: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.home-advertising::before { position: absolute; inset: 0; background-image: radial-gradient(circle at 12% 25%,rgba(91,127,211,.22),transparent 35%),linear-gradient(115deg,transparent 62%,rgba(52,85,157,.12)); content: ""; pointer-events: none; }
.advertising-copy, .advertising-preview { position: relative; z-index: 1; }
.advertising-copy h2 { max-width: 720px; margin: .45rem 0 .8rem; font: 700 clamp(2.1rem,4vw,4rem)/.96 var(--serif); letter-spacing: -.04em; }
.advertising-copy > p { max-width: 680px; color: rgba(255,255,255,.66); }
.advertising-copy > div { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.2rem; }
.advertising-copy > div > a:not(.primary-button) { color: #a9c0f8; font-size: .72rem; font-weight: 700; }
.advertising-preview { display: grid; min-height: 220px; align-content: center; padding: 1.4rem; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); border-radius: 14px; backdrop-filter: blur(5px); }
.advertising-preview > span { color: #8dabef; font-size: .61rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.advertising-preview > strong { max-width: 360px; margin: .6rem 0; font: 700 clamp(1.7rem,3vw,2.6rem)/1 var(--serif); }
.advertising-preview small { color: rgba(255,255,255,.5); font-size: .6rem; }
.ad-preview-lines { display: flex; gap: .4rem; margin: .8rem 0 1.2rem; }
.ad-preview-lines i { display: block; width: 38px; height: 5px; background: #7898e2; border-radius: 99px; }
.ad-preview-lines i:nth-child(2) { width: 65px; background: #fff; }
.ad-preview-lines i:nth-child(3) { width: 24px; background: #b42318; }
.topics-band { padding-block: 1.5rem; background: rgba(255,255,255,.58); border-block: 1px solid rgba(255,255,255,.8); }
.topic-list { display: flex; gap: .55rem; margin-top: .8rem; overflow-x: auto; padding-bottom: .4rem; }
.topic-list a { flex: none; padding: .5rem .8rem; background: #fff; border: 1px solid var(--line); border-radius: 99px; color: var(--brand); font-size: .7rem; font-weight: 700; }
.topic-list a:hover { background: var(--brand); color: #fff; }
.editors-section { scroll-margin-top: 170px; padding-block: clamp(2.5rem,5vw,4rem); }
.editors-section .section-heading > p { max-width: 330px; margin: 0; color: var(--muted); font-size: .78rem; text-align: right; }
.editors-grid { display: grid; grid-template-columns: 1fr; gap: .8rem; }
.editor-card { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: .8rem; padding: .8rem; border: 1px solid var(--line); background: rgba(255,255,255,.82); border-radius: 12px; transition: transform .2s, border-color .2s, box-shadow .2s; }
.editor-card:hover { border-color: var(--brand); box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.editor-card-avatar { width: 54px; height: 54px; object-fit: cover; border-radius: 50%; }
.editor-card strong, .editor-card small { display: block; }
.editor-card strong { font: 700 1.05rem/1.1 var(--serif); }
.editor-card small { margin-top: .25rem; color: var(--muted); font-size: .62rem; }
.editor-card > svg { width: 17px; color: var(--brand); }
.section-anchor { height: 1px; scroll-margin-top: 160px; }
.category-block { position: relative; margin-block: 2rem; padding: clamp(1rem,3vw,2.2rem); overflow: hidden; border: 1px solid var(--line); border-top: 4px solid var(--section-color); background: rgba(255,255,255,.78); border-radius: var(--radius); box-shadow: 0 18px 50px rgba(31,54,104,.07); }
.category-block::after { position: absolute; top: -70px; right: -70px; width: 180px; height: 180px; border: 1px solid color-mix(in srgb,var(--section-color) 22%,transparent); border-radius: 50%; box-shadow: 0 0 0 28px color-mix(in srgb,var(--section-color) 5%,transparent),0 0 0 55px color-mix(in srgb,var(--section-color) 3%,transparent); content: ""; pointer-events: none; }
.category-block .section-kicker, .category-block .section-heading > a { color: var(--section-color); }
.category-heading-title { display: flex; align-items: center; gap: .9rem; }
.section-number { color: color-mix(in srgb,var(--section-color) 22%,white); font: 700 clamp(2.7rem,5vw,4.2rem)/.8 var(--serif); }
.category-story-grid { position: relative; display: grid; gap: 1rem; }
.category-mini-list { display: grid; gap: .8rem; }
.category-block .story-card--feature .story-image { aspect-ratio: 16/8.2; }
.category-block .story-card--feature .story-excerpt { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

.archive-page, .content-page { padding-block: clamp(2rem,5vw,4.5rem); }
.contact-page, .trends-page { padding-block: clamp(2rem,5vw,4.5rem); }
.contact-hero, .trends-hero { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-bottom: 1.5rem; padding: clamp(1.5rem,4vw,3.5rem); overflow: hidden; background: var(--ink); color: #fff; border-radius: var(--radius-lg); }
.contact-hero .section-kicker, .trends-hero .section-kicker { color: #91aceb; }
.contact-hero h1, .trends-hero h1 { margin: .25rem 0 .7rem; font: 700 clamp(3.2rem,8vw,7rem)/.88 var(--serif); letter-spacing: -.055em; }
.contact-hero p, .trends-hero p { max-width: 730px; margin: 0; color: rgba(255,255,255,.67); }
.contact-signal { position: relative; display: grid; flex: none; width: clamp(100px,14vw,190px); aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; box-shadow: 0 0 0 28px rgba(52,85,157,.1),0 0 0 56px rgba(52,85,157,.06); }
.contact-signal span { position: absolute; inset: 12%; border: 1px dashed #7596e2; border-radius: 50%; animation: orbit 10s linear infinite; }
.contact-signal svg { width: 36px; color: #9cb6f3; }
.contact-layout { display: grid; gap: 1.25rem; align-items: start; }
.contact-details { display: grid; gap: .75rem; }
.contact-detail-card { display: grid; grid-template-columns: 46px minmax(0,1fr); align-items: center; gap: .85rem; padding: 1rem; border: 1px solid var(--line); background: rgba(255,255,255,.82); border-radius: 12px; transition: transform .2s,border-color .2s; }
.contact-detail-card:hover { border-color: var(--brand); transform: translateY(-2px); }
.contact-detail-card > svg { width: 20px; height: 20px; padding: 12px; box-sizing: content-box; background: var(--brand-soft); color: var(--brand); border-radius: 50%; }
.contact-detail-card small, .contact-detail-card strong { display: block; overflow-wrap: anywhere; }
.contact-detail-card small { color: var(--muted); font-size: .62rem; font-weight: 700; text-transform: uppercase; }
.contact-detail-card strong { font-size: .82rem; }
.contact-form-panel { padding: clamp(1.2rem,4vw,2.5rem); border: 1px solid var(--line); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.contact-form-panel h2 { margin: .35rem 0 1.5rem; font: 700 clamp(2rem,4vw,3rem)/1 var(--serif); }
.contact-form { display: grid; gap: 1rem; }
.form-grid { display: grid; gap: 1rem; }
.contact-form p { margin: 0; }
.contact-form label { display: block; margin-bottom: .3rem; font-size: .7rem; font-weight: 700; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line-strong); padding: .78rem .85rem; background: #fbfcff; border-radius: 8px; color: var(--ink); font: inherit; }
.contact-form textarea { resize: vertical; }
.privacy-check label { display: flex; align-items: start; gap: .55rem; color: var(--muted); font-weight: 500; }
.privacy-check input { margin-top: .3rem; }
.privacy-check a { color: var(--brand); text-decoration: underline; }
.contact-submit { justify-self: start; }
.contact-honeypot { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-notice { display: flex; align-items: center; gap: .55rem; margin-bottom: 1rem; padding: .8rem 1rem; border-radius: 8px; font-size: .75rem; font-weight: 700; }
.form-notice svg { width: 18px; }
.form-notice--success { background: #e6f6ee; color: #146c43; }
.form-notice--error { background: #fff0ef; color: #a52b21; }
.captcha-field { display: grid; grid-template-columns: minmax(0,1fr) auto 76px; align-items: center; gap: .8rem; padding: .9rem 1rem; border: 1px solid #cbd7f0; background: var(--brand-soft); border-radius: 10px; }
.captcha-field > div { display: flex; align-items: center; gap: .65rem; }
.captcha-field > div > svg { width: 22px; color: var(--brand); }
.captcha-field span, .captcha-field small { display: block; }
.captcha-field strong { font-size: .72rem; }
.captcha-field small { color: var(--muted); font-size: .62rem; }
.captcha-field label { margin: 0; color: var(--brand-dark); font-size: 1rem; }
.contact-form .captcha-field input { padding: .65rem; background: #fff; text-align: center; }

.about-page, .privacy-page { padding-bottom: 1rem; }
.about-hero, .privacy-hero { position: relative; display: flex; min-height: 390px; align-items: center; justify-content: space-between; gap: 2rem; margin-block: clamp(1rem,3vw,2.5rem); padding: clamp(1.5rem,5vw,4.5rem); overflow: hidden; background: var(--ink); color: #fff; border-radius: var(--radius-lg); }
.about-hero::before, .privacy-hero::before { position: absolute; inset: 0; background-image: radial-gradient(rgba(120,151,221,.2) 1px,transparent 1px); background-size: 23px 23px; content: ""; mask-image: linear-gradient(90deg,#000,transparent 85%); }
.about-hero-copy, .privacy-hero > div:first-child { position: relative; z-index: 1; max-width: 900px; }
.about-hero .section-kicker, .privacy-hero .section-kicker { color: #9fb7ee; }
.about-hero h1, .privacy-hero h1 { max-width: 980px; margin: .5rem 0 1.1rem; font: 700 clamp(3rem,7.5vw,6.6rem)/.9 var(--serif); letter-spacing: -.055em; }
.about-hero p, .privacy-hero p { max-width: 720px; color: rgba(255,255,255,.7); font-size: clamp(1rem,1.8vw,1.25rem); }
.about-mark, .privacy-shield { position: relative; z-index: 1; display: grid; flex: none; width: clamp(125px,17vw,210px); aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 24px rgba(52,85,157,.13),0 0 0 48px rgba(52,85,157,.07); }
.about-mark span, .privacy-shield span { position: absolute; inset: 14%; border: 1px dashed #6f91df; border-radius: 50%; animation: orbit 14s linear infinite; }
.about-mark > svg, .privacy-shield > svg { width: 44px; color: #9fb7ee; }
.about-mark small { position: absolute; bottom: 24%; color: rgba(255,255,255,.6); font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.about-stats { display: grid; gap: .75rem; margin-bottom: clamp(2.5rem,6vw,5rem); }
.about-stats > div { padding: 1.3rem; border: 1px solid var(--line); background: rgba(255,255,255,.82); border-radius: 13px; box-shadow: var(--shadow-soft); }
.about-stats strong, .about-stats span { display: block; }
.about-stats strong { color: var(--brand); font: 700 clamp(2.2rem,5vw,3.8rem)/1 var(--serif); }
.about-stats span { margin-top: .3rem; color: var(--muted); font-size: .7rem; text-transform: uppercase; }
.about-story-grid { display: grid; gap: 1.2rem; align-items: start; }
.about-story { padding: clamp(1.4rem,4vw,3.2rem); border: 1px solid var(--line); background: #fff; border-radius: var(--radius-lg); }
.about-story h2 { max-width: 760px; margin: .5rem 0 1.5rem; font: 700 clamp(2.3rem,5vw,4.3rem)/.98 var(--serif); letter-spacing: -.04em; }
.about-story .entry-content { color: var(--muted); font-size: 1rem; line-height: 1.75; }
.about-principles { display: grid; gap: .7rem; }
.about-principles article { display: grid; grid-template-columns: 48px 1fr; gap: .8rem; padding: 1.2rem; border: 1px solid var(--line); background: rgba(255,255,255,.82); border-radius: 13px; }
.about-principles svg { width: 21px; height: 21px; padding: 13px; box-sizing: content-box; background: var(--brand-soft); color: var(--brand); border-radius: 50%; }
.about-principles h3 { margin: .1rem 0 .35rem; font-size: .95rem; }
.about-principles p { margin: 0; color: var(--muted); font-size: .75rem; line-height: 1.55; }
.about-team { padding-block: clamp(3rem,7vw,6rem); }
.about-team .section-heading > p { max-width: 320px; color: var(--muted); text-align: right; }
.about-team-grid { display: grid; gap: .85rem; }
.about-person { position: relative; display: grid; grid-template-columns: 76px minmax(0,1fr) auto; align-items: center; gap: .85rem; padding: .75rem; border: 1px solid var(--line); background: #fff; border-radius: 13px; transition: transform .2s,border-color .2s,box-shadow .2s; }
.about-person:hover { border-color: var(--brand); box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.about-person-photo { width: 76px; height: 76px; object-fit: cover; border-radius: 10px; }
.about-person span > * { display: block; font-style: normal; }
.about-person small { color: var(--brand); font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.about-person strong { margin: .2rem 0; font: 700 1.25rem/1.05 var(--serif); }
.about-person em { color: var(--muted); font-size: .63rem; }
.about-person > svg { width: 17px; color: var(--brand); }
.about-contact { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: clamp(1.4rem,4vw,2.8rem); background: var(--brand); color: #fff; border-radius: var(--radius-lg); }
.about-contact .section-kicker { color: #c4d3f3; }
.about-contact h2 { max-width: 760px; margin: .35rem 0 0; font: 700 clamp(2rem,4vw,3.5rem)/1 var(--serif); }
.about-contact .primary-button { flex: none; background: #fff; color: var(--brand-dark); }

.privacy-hero { min-height: 330px; }
.privacy-hero h1 { font-size: clamp(3rem,7vw,5.8rem); }
.privacy-hero small { display: block; margin-top: 1.5rem; color: rgba(255,255,255,.55); font-size: .67rem; }
.privacy-highlights { display: grid; gap: .8rem; margin-bottom: 1.2rem; }
.privacy-highlights article { padding: 1.25rem; border: 1px solid var(--line); background: rgba(255,255,255,.86); border-radius: 13px; }
.privacy-highlights svg { width: 22px; color: var(--brand); }
.privacy-highlights h2 { margin: .8rem 0 .35rem; font: 700 1.35rem/1 var(--serif); }
.privacy-highlights p { margin: 0; color: var(--muted); font-size: .73rem; line-height: 1.55; }
.privacy-layout { display: grid; gap: 1.2rem; align-items: start; }
.privacy-aside { padding: 1.3rem; background: var(--ink); color: #fff; border-radius: 14px; }
.privacy-aside h2 { margin: .35rem 0 .65rem; font: 700 2rem/1 var(--serif); }
.privacy-aside p { color: rgba(255,255,255,.6); font-size: .73rem; }
.privacy-aside > a { display: flex; align-items: center; gap: .5rem; margin-top: .65rem; overflow-wrap: anywhere; color: #c5d4f4; font-size: .68rem; }
.privacy-aside > a svg { width: 15px; flex: none; }
.privacy-aside .privacy-contact-link { justify-content: space-between; margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.15); color: #fff; font-weight: 700; }
.privacy-document { padding: clamp(1.3rem,4vw,3rem); border: 1px solid var(--line); background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.privacy-document-heading { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.privacy-document-heading h2 { margin: .35rem 0 0; font: 700 clamp(2.2rem,5vw,3.8rem)/1 var(--serif); }
.privacy-document .entry-content { color: #343946; font-size: .96rem; line-height: 1.75; }
.privacy-document .entry-content h2 { margin-top: 2rem; color: var(--ink); font: 700 1.8rem/1.1 var(--serif); }
.privacy-document .entry-content h3 { margin-top: 1.5rem; color: var(--ink); }
.privacy-document .entry-content a { color: var(--brand); text-decoration: underline; }
.trends-pulse { position: relative; display: grid; flex: none; width: clamp(95px,12vw,160px); aspect-ratio: 1; place-items: center; background: rgba(180,35,24,.12); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.trends-pulse svg { width: 42px; color: #ef675b; fill: currentColor; }
.trends-pulse span { position: absolute; inset: -12px; border: 1px solid rgba(239,103,91,.35); border-radius: 50%; animation: brand-pulse 2.2s ease-in-out infinite; }
.trends-list { display: grid; gap: .75rem; }
.trend-card { display: grid; grid-template-columns: 70px 130px minmax(0,1fr) 44px; align-items: center; gap: 1rem; padding: .8rem; border: 1px solid var(--line); background: rgba(255,255,255,.84); border-radius: 13px; transition: transform .2s,border-color .2s,box-shadow .2s; }
.trend-card:hover { border-color: var(--brand); box-shadow: var(--shadow-soft); transform: translateX(4px); }
.trend-number { color: var(--brand); font: 700 2.6rem/1 var(--serif); text-align: center; }
.trend-image { overflow: hidden; aspect-ratio: 4/3; background: var(--brand-soft); border-radius: 9px; }
.trend-image img, .trend-image .post-image-placeholder { width: 100%; height: 100%; object-fit: cover; }
.trend-content h2 { margin: .35rem 0 .6rem; font: 700 clamp(1.35rem,2.5vw,2rem)/1.05 var(--serif); }
.trend-arrow { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--line); color: var(--brand); border-radius: 50%; }
.trend-arrow svg { width: 17px; }
.page-header { margin-bottom: 2rem; }
.page-header h1 { max-width: 980px; margin: .35rem 0; font: 700 clamp(2.8rem,7vw,6rem)/.95 var(--serif); letter-spacing: -.05em; }
.page-header--category { padding: clamp(1.3rem,4vw,3rem); background: var(--ink); color: #fff; border-left: 8px solid var(--section-color); border-radius: var(--radius); }
.page-header--category .section-kicker { color: color-mix(in srgb,var(--section-color) 55%,white); }
.archive-description { max-width: 760px; color: var(--muted); }
.page-header--category .archive-description { color: rgba(255,255,255,.7); }
.archive-grid { display: grid; gap: 1.2rem; }
.navigation.pagination { margin-top: 2rem; }
.nav-links { display: flex; gap: .4rem; }
.page-numbers { display: grid; min-width: 40px; height: 40px; place-items: center; padding: 0 .6rem; background: #fff; border: 1px solid var(--line); border-radius: 7px; font-size: .73rem; font-weight: 700; }
.page-numbers.current { background: var(--brand); color: #fff; }
.author-header { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 2.2rem; padding: 1.5rem; background: #fff; border-radius: var(--radius); }
.author-avatar { width: 72px; height: 72px; object-fit: cover; border-radius: 50%; }
.author-header h1 { margin: .2rem 0; font: 700 clamp(2rem,5vw,4rem)/1 var(--serif); }
.page-search-form { display: flex; max-width: 760px; gap: .5rem; margin-top: 1.2rem; }
.page-search-form input { min-width: 0; flex: 1; border: 1px solid var(--line); padding: .8rem 1rem; border-radius: 8px; }
.empty-state { padding: 3rem; background: #fff; border-radius: var(--radius); text-align: center; }
.empty-state > svg { width: 42px; color: var(--brand); }
.empty-state h2 { font: 700 2rem/1 var(--serif); }

.reading-progress { position: fixed; top: 0; right: 0; left: 0; z-index: 800; height: 3px; pointer-events: none; }
.reading-progress span { display: block; width: var(--progress,0%); height: 100%; background: var(--brand); box-shadow: 0 0 12px rgba(52,85,157,.6); }
.article-header { position: relative; margin-block: clamp(1.2rem,3vw,2.5rem) 1.25rem; padding: clamp(1.35rem,3.5vw,2.8rem); overflow: hidden; border: 1px solid var(--line); background: rgba(255,255,255,.74); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.article-header::before { position: absolute; top: 0; right: 0; left: 0; height: 5px; background: var(--brand); content: ""; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.3rem; color: var(--muted); font-size: .68rem; }
.article-header h1 { max-width: 1150px; margin: .55rem 0 1rem; font: 700 clamp(2.5rem,5.2vw,5rem)/.96 var(--serif); letter-spacing: -.05em; }
.article-deck { max-width: 900px; color: var(--muted); font-size: clamp(1rem,1.8vw,1.25rem); }
.article-byline { display: flex; align-items: center; gap: .7rem; margin-top: 1.3rem; }
.article-byline .author-avatar { width: 48px; height: 48px; }
.article-byline a { display: block; font-size: .8rem; font-weight: 700; }
.article-byline small { display: block; color: var(--brand); font-size: .59rem; font-weight: 700; text-transform: uppercase; }
.article-byline span { display: block; color: var(--muted); font-size: .66rem; }
.share-row { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.2rem; }
.share-row a, .share-row button { display: inline-flex; min-height: 38px; align-items: center; gap: .35rem; border: 1px solid var(--line); padding: .45rem .7rem; background: #fff; border-radius: 99px; font-size: .67rem; font-weight: 700; cursor: pointer; }
.share-row a:hover, .share-row button:hover { border-color: var(--brand); color: var(--brand); }
.share-row svg { width: 15px; }
.article-cover { margin-block: 0 2rem; }
.article-cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); }
.article-cover figcaption { margin-top: .45rem; color: var(--muted); font-size: .64rem; }
.article-layout { display: grid; gap: 2rem; align-items: start; }
.article-index { display: none; }
.article-index ol { display: grid; gap: .55rem; margin: .75rem 0 0; padding: 0; list-style: none; }
.article-index li { line-height: 1.3; }
.article-index li.is-subsection { padding-left: .65rem; }
.article-index a { transition: color .2s; }
.article-index a:hover { color: var(--brand); }
.comments-area { width: 85%; max-width: 1180px; margin: 4rem auto 0; padding: clamp(1.25rem,3vw,2.4rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.88); box-shadow: var(--shadow-soft); }
.comments-area > .section-heading { margin-bottom: 1.25rem; }
.comments-count { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .7rem; background: var(--brand-soft); color: var(--brand-dark); border-radius: 99px; font-size: .66rem; font-weight: 700; }
.comments-count svg { width: 15px; }
.comments-layout { display: grid; gap: 1rem; align-items: start; }
.comments-thread { min-width: 0; }
.comment-list, .comment-list .children { display: grid; gap: .7rem; margin: 0; padding: 0; list-style: none; }
.comment-list .children { margin: .7rem 0 0 1.2rem; }
.comment-list .comment-body { padding: .9rem; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); }
.comment-author { display: flex; align-items: center; gap: .7rem; }
.comment-author .avatar { border-radius: 50%; }
.comment-metadata, .comment-notes, .logged-in-as, .comment-policy { color: var(--muted); font-size: .74rem; }
.comment-content { font-size: .78rem; line-height: 1.6; }
.comment-composer { padding: 1.1rem; border: 1px solid #cdd9f1; background: var(--brand-soft); border-radius: 14px; }
.comment-reply-title { margin: 0 0 .2rem; font: 700 1.8rem/1 var(--serif); }
.comment-form { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .7rem; }
.comment-form p { margin: 0; }
.comment-form label { display: block; margin-bottom: .3rem; font-size: .72rem; font-weight: 700; }
.comment-form input:not([type="checkbox"]), .comment-form textarea { width: 100%; padding: .68rem .72rem; border: 1px solid #bbc9e4; border-radius: 8px; background: #fff; font: inherit; }
.comment-form textarea { resize: vertical; }
.comment-form-comment, .comment-notes, .logged-in-as, .comment-policy, .comment-form-cookies-consent, .comment-form .form-submit { grid-column: 1/-1; }
.comment-form-cookies-consent { display: flex; align-items: center; gap: .45rem; }
.comment-form-cookies-consent label { margin: 0; color: var(--muted); font-size: .68rem; font-weight: 500; }
.comment-policy { display: flex; align-items: center; gap: .4rem; }
.comment-policy svg { width: 15px; color: var(--brand); }
.comment-form .submit { border: 0; padding: .78rem 1.1rem; border-radius: 8px; background: var(--brand); color: #fff; font-weight: 700; cursor: pointer; }
.comments-empty { display: grid; min-height: 260px; place-items: center; align-content: center; padding: 2rem; border: 1px dashed #b9c7e2; background: var(--surface-soft); border-radius: 14px; text-align: center; }
.comments-empty svg { width: 34px; color: var(--brand); }
.comments-empty h3 { margin: .7rem 0 .25rem; font: 700 1.7rem/1 var(--serif); }
.comments-empty p { max-width: 430px; margin: 0; color: var(--muted); font-size: .75rem; }
.article-content { min-width: 0; }
.article-content > p, .article-content > ul, .article-content > ol { font: 400 1.08rem/1.82 Georgia,serif; }
.article-content h2 { margin: 2.3rem 0 .8rem; font: 700 clamp(1.8rem,4vw,2.7rem)/1.08 var(--serif); }
.article-content h3 { margin: 1.8rem 0 .5rem; font-size: 1.25rem; }
.article-content blockquote { margin: 2rem 0; padding: .8rem 0 .8rem 1.3rem; border-left: 4px solid var(--brand); color: var(--brand-dark); font: 600 clamp(1.4rem,3.5vw,2.1rem)/1.22 var(--serif); }
.article-content img { border-radius: 11px; }
.article-content .wp-block-embed.is-type-video, .article-content .wp-block-video, .article-content .wp-video, .article-content > iframe { width: 100%; max-width: 640px; margin: 2rem auto; }
.article-content .wp-block-embed__wrapper { position: relative; overflow: hidden; aspect-ratio: 16/9; background: var(--ink); border-radius: 12px; }
.article-content .wp-block-embed__wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.article-content video { display: block; width: 100%; max-height: 420px; background: var(--ink); border-radius: 12px; }
.article-rail { display: grid; gap: 1rem; }
.article-rail .sidebar-panel a { display: inline-flex; align-items: center; gap: .35rem; color: var(--brand); font-size: .72rem; font-weight: 700; }
.author-panel-head { display: flex; align-items: center; gap: .7rem; margin: .65rem 0 .8rem; }
.author-panel-head .author-avatar { width: 52px; height: 52px; }
.author-panel h2 { margin: 0; font-size: 1.35rem; }
.author-panel-head small { display: block; color: var(--brand); font-size: .59rem; font-weight: 700; text-transform: uppercase; }
.author-panel > p { color: var(--muted); font-size: .75rem; }
.author-more-list { display: grid; margin-top: .7rem; }
.author-more-list article { padding: .7rem 0; border-top: 1px solid var(--line); }
.author-more-list time { color: var(--muted); font-size: .56rem; text-transform: uppercase; }
.author-more-list h3 { margin: .2rem 0 0; font: 700 .98rem/1.13 var(--serif); }
.author-more-list h3 a:hover { color: var(--brand); }
.article-advertise { position: relative; display: block; padding: 1.3rem; overflow: hidden; background: var(--brand); color: #fff; border-radius: 14px; box-shadow: var(--shadow-soft); }
.article-advertise::after { position: absolute; right: -45px; bottom: -55px; width: 130px; height: 130px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; box-shadow: 0 0 0 22px rgba(255,255,255,.06); content: ""; }
.article-advertise > span { color: rgba(255,255,255,.68); font-size: .57rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.article-advertise > svg { display: block; width: 28px; margin: 1.25rem 0 .65rem; }
.article-advertise h2 { max-width: 220px; margin: 0; font: 700 1.8rem/1 var(--serif); }
.article-advertise p { color: rgba(255,255,255,.7); font-size: .72rem; }
.article-advertise > strong { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: .4rem; font-size: .7rem; }
.article-advertise > strong svg { width: 15px; }
.post-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.post-tags a { padding: .4rem .7rem; background: #fff; border: 1px solid var(--line); border-radius: 99px; color: var(--brand); font-size: .67rem; font-weight: 700; }
.post-navigation { display: grid; gap: .8rem; margin-top: 2.5rem; }
.post-navigation > div { padding: 1rem; background: #fff; border: 1px solid var(--line); border-radius: 11px; }
.post-navigation span { display: block; color: var(--muted); font-size: .61rem; text-transform: uppercase; }
.post-navigation a { font: 700 1.12rem/1.18 var(--serif); }
.related-section { padding-block: 3rem; }
.related-grid { display: grid; gap: 1rem; }
.content-page { max-width: 900px; }
.entry-content { overflow-wrap: anywhere; }
.error-page { display: grid; min-height: 65vh; place-items: center; padding-block: 3rem; text-align: center; }
.error-number { margin: 0 0 -1.3rem; color: var(--brand); font: 700 clamp(8rem,28vw,16rem)/.7 var(--serif); opacity: .12; }
.error-page h1 { margin: .4rem 0; font: 700 clamp(2.5rem,7vw,5rem)/.95 var(--serif); }

.site-footer { margin-top: 4rem; background: var(--ink); color: #fff; }
.footer-grid { display: grid; gap: 2rem; padding-block: 3rem; }
.footer-brand p, .footer-newsletter p { color: rgba(255,255,255,.58); font-size: .8rem; }
.site-footer h2 { margin: 0 0 .8rem; color: rgba(255,255,255,.45); font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-menu { display: grid; gap: .4rem; margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.76); font-size: .76rem; }
.footer-menu .primary-menu { display: grid; }
.footer-contact .footer-menu { gap: .55rem; }
.footer-contact .footer-menu a { display: flex; align-items: flex-start; gap: .45rem; overflow-wrap: anywhere; font-size: .66rem; }
.footer-contact .footer-menu svg { width: 14px; flex: none; margin-top: .15rem; color: #8da9ec; }
.footer-newsletter form { display: grid; gap: .4rem; }
.footer-newsletter input { width: 100%; border: 0; padding: .7rem; border-radius: 7px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-block: 1rem; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: .64rem; }
.footer-signature { display: inline-flex; align-items: center; gap: .25rem; }
.footer-signature a { color: #9db8f2; font-weight: 700; transition: color .2s; }
.footer-signature a:hover { color: #fff; }
.footer-signature svg { width: 12px; }
.back-to-top { position: fixed; right: 1rem; bottom: 1rem; z-index: 100; display: grid; visibility: hidden; width: 45px; height: 45px; place-items: center; border: 0; background: var(--brand); color: #fff; border-radius: 50%; box-shadow: var(--shadow); opacity: 0; cursor: pointer; transform: translateY(10px); transition: .2s; }
.back-to-top.is-visible { visibility: visible; opacity: 1; transform: none; }
.back-to-top svg { width: 18px; }

.motion-ready .reveal-target { opacity: 0; transform: translateY(24px); transition: opacity .6s,transform .6s cubic-bezier(.2,.8,.2,1); }
.motion-ready .reveal-target.is-visible { opacity: 1; transform: none; }

@media (max-width: 767px) {
  .site-container { width: 88%; }
  .utility-nav { display: none; }
  .login-chip span { display: none; }
  .topbar-inner { justify-content: center; }
  .home-cover-heading { align-items: start; flex-direction: column; }
  .contact-hero, .trends-hero { align-items: flex-start; flex-direction: column; }
  .contact-signal, .trends-pulse { display: none; }
  .trend-card { grid-template-columns: 45px 82px minmax(0,1fr); gap: .65rem; }
  .trend-number { font-size: 1.8rem; }
  .trend-arrow { display: none; }
  .trend-content h2 { font-size: 1.15rem; }
  .trend-content .story-meta span:last-child { display: none; }
  .hero-story { min-height: 0; }
  .hero-media { min-height: 240px; aspect-ratio: 4/3; }
  .hero-copy h1 { font-size: 2.25rem; }
  .hero-copy > p { font-size: .88rem; }
  .news-orbit { top: .9rem; right: .9rem; width: 74px; }
  .orbit-core small { display: none; }
  .latest-grid { grid-template-columns: 1fr; }
  .editors-section .section-heading { align-items: start; flex-direction: column; }
  .editors-section .section-heading > p { text-align: left; }
  .category-heading-title { gap: .45rem; }
  .section-number { font-size: 2.5rem; }
  .story-card--horizontal { grid-template-columns: 110px 1fr; }
  .story-card--horizontal .story-title { font-size: 1.05rem; }
  .story-card--horizontal .story-excerpt { display: none; }
  .live-search-form { grid-template-columns: auto 1fr; }
  .live-search-form button { grid-column: 1/-1; }
  .suggestion-item { grid-template-columns: 58px 1fr; }
  .suggestion-item img, .suggestion-placeholder { width: 58px; height: 48px; }
  .suggestion-item > svg { display: none; }
  .article-header h1 { font-size: 2.55rem; }
  .captcha-field { grid-template-columns: 1fr auto 70px; }
  .captcha-field > div { grid-column: 1/-1; }
  .about-hero, .privacy-hero { min-height: 0; align-items: flex-start; flex-direction: column; }
  .about-mark, .privacy-shield { display: none; }
  .about-hero h1, .privacy-hero h1 { font-size: 3rem; }
  .about-team .section-heading { align-items: flex-start; flex-direction: column; }
  .about-team .section-heading > p { text-align: left; }
  .about-contact { align-items: flex-start; flex-direction: column; }
  .comments-area { width: 88%; }
  .comments-area > .section-heading { align-items: flex-start; flex-direction: column; }
  .comment-form { grid-template-columns: 1fr; }
  .comment-form > * { grid-column: 1 !important; }
}

@media (min-width: 600px) {
  .archive-grid, .related-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .editors-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-newsletter { grid-column: 1/-1; }
  .post-navigation { grid-template-columns: repeat(2,1fr); }
  .about-stats, .privacy-highlights { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .about-team-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (min-width: 768px) {
  .hero-secondary { grid-template-columns: repeat(3,1fr); }
  .hero-secondary-head { grid-column: 1/-1; }
  .story-card--compact { display: block; }
  .category-story-grid { grid-template-columns: 1.35fr .65fr; }
  .home-advertising { grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); align-items: center; }
  .form-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .footer-newsletter { grid-column: span 2; }
}

@media (min-width: 1024px) {
  body { background-attachment: fixed; }
  .brand-row { grid-template-columns: minmax(0,1fr) auto; }
  .site-brand { justify-self: start; }
  .header-actions { justify-self: end; }
  .mobile-menu-button { display: none; }
  .hero-layout { grid-template-columns: minmax(0,1.55fr) minmax(300px,.65fr); }
  .hero-secondary { grid-template-columns: 1fr; }
  .hero-secondary-head { grid-column: auto; }
  .story-card--compact { display: grid; }
  .content-sidebar-grid { grid-template-columns: minmax(0,1fr) 330px; }
  .editorial-sidebar { position: sticky; top: 155px; }
  .contact-layout { grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr); }
  .editors-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.25fr .65fr .7fr 1.15fr .95fr; }
  .footer-newsletter { grid-column: auto; }
  .archive-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .article-layout { grid-template-columns: 170px minmax(0,760px) minmax(260px,320px); justify-content: space-between; }
  .article-index { position: sticky; top: 155px; display: block; padding-left: 1rem; border-left: 2px solid var(--line); color: var(--muted); font-size: .75rem; }
  .article-rail { position: sticky; top: 155px; }
  .related-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .about-story-grid { grid-template-columns: minmax(0,1.35fr) minmax(300px,.65fr); }
  .about-team-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .privacy-layout { grid-template-columns: 270px minmax(0,1fr); }
  .privacy-aside { position: sticky; top: 155px; }
  .comments-layout { grid-template-columns: minmax(0,1.08fr) minmax(340px,.92fr); }
  .comment-composer { position: sticky; top: 155px; }
}

@media (max-width: 1023px) {
  .navigation-shell { display: none; }
  .mega-menu { display: none; }
}

@media (min-width: 1024px) and (max-width: 1220px) {
  .nav-datetime { display: none; }
  .primary-menu a { padding-inline: .58rem; font-size: .72rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .orbit-ring { animation: none !important; }
  .hero-media img, .news-orbit { transform: none !important; }
}
