:root {
  --red: #b5121b;
  --red-dark: #8d0d14;
  --ink: #15171b;
  --ink-soft: #444a53;
  --muted: #737a85;
  --line: #e7e9ed;
  --paper: #ffffff;
  --soft: #f5f6f8;
  --soft-red: #fff3f3;
  --radius: 18px;
  --shadow: 0 16px 44px rgba(21, 23, 27, .09);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; left: 16px; top: -100px; z-index: 9999; background: var(--ink); color: white; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.breaking-bar { background: var(--ink); color: #fff; font-size: .84rem; }
.breaking-bar .container { min-height: 34px; display: flex; align-items: center; gap: 12px; }
.breaking-bar span { font-weight: 800; letter-spacing: .12em; color: #ff8088; }
.breaking-bar p { margin: 0; color: #d5d8dc; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-mark { display: grid; place-items: center; width: 54px; height: 44px; background: var(--red); color: white; border-radius: 10px 10px 10px 2px; font-weight: 900; letter-spacing: -.04em; font-size: 1.15rem; box-shadow: 0 8px 20px rgba(181,18,27,.22); }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 1rem; letter-spacing: -.02em; }
.brand-copy small { color: var(--muted); margin-top: 4px; font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 27px; font-size: .93rem; font-weight: 650; }
.main-nav > a, .nav-dropdown-toggle { padding: 28px 0; border: 0; background: transparent; color: var(--ink-soft); }
.main-nav > a:hover, .nav-dropdown-toggle:hover { color: var(--red); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: calc(100% - 12px); left: 50%; transform: translateX(-50%); width: 230px; padding: 10px; margin: 0; list-style: none; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.nav-dropdown.open .nav-dropdown-menu { display: grid; }
.nav-dropdown-menu a { display: block; padding: 9px 11px; border-radius: 9px; }
.nav-dropdown-menu a:hover { background: var(--soft); color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-button { border: 1px solid var(--line); background: white; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--ink); }
.icon-button:hover { border-color: var(--red); color: var(--red); }
.mobile-menu-toggle { display: none; }
.mobile-menu-toggle span { display: block; width: 18px; height: 2px; margin: 2px 0; background: currentColor; }
.search-panel { border-top: 1px solid var(--line); background: white; padding: 18px 0; }
.search-form { display: flex; gap: 10px; }
.search-form input { flex: 1; min-width: 0; border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; outline: none; }
.search-form input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(181,18,27,.08); }
.search-form button, .button-primary { border: 0; background: var(--red); color: white; padding: 12px 19px; border-radius: 12px; font-weight: 750; }
.search-form button:hover, .button-primary:hover { background: var(--red-dark); }

.hero-section { padding: 34px 0 18px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.62fr) minmax(310px, .8fr); gap: 28px; }
.hero-story { min-height: 570px; position: relative; overflow: hidden; border-radius: 24px; background: var(--ink); box-shadow: var(--shadow); }
.hero-story > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,10,13,.04) 15%, rgba(8,10,13,.25) 45%, rgba(8,10,13,.92) 100%); }
.hero-content { position: absolute; inset: auto 0 0; padding: 38px; color: white; }
.hero-content h1 { margin: 12px 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.08; letter-spacing: -.035em; }
.hero-content p { max-width: 720px; margin: 0 0 15px; color: #e8eaed; font-size: 1.05rem; }
.hero-latest { border-top: 4px solid var(--red); }
.eyebrow { display: block; color: var(--red); font-weight: 850; font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.section-heading h2 { margin: 3px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.15; }
.section-heading > a { color: var(--red); font-weight: 750; font-size: .9rem; }
.section-heading.compact { padding: 20px 0 13px; margin: 0; border-bottom: 1px solid var(--line); }
.section-heading.compact h2 { font-size: 1.55rem; }
.section { padding: 68px 0; }
.section-muted { background: var(--soft); }
.article-labels { display: flex; flex-wrap: wrap; gap: 7px; }
.article-labels a { display: inline-flex; align-items: center; min-height: 25px; padding: 4px 9px; background: var(--soft-red); color: var(--red); border-radius: 100px; font-weight: 800; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; }
.hero-content .article-labels a { background: var(--red); color: white; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: .79rem; }
.hero-content .article-meta { color: #d7dade; }
.card-grid, .archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.article-card { min-width: 0; }
.article-card-image { display: block; overflow: hidden; border-radius: 16px; aspect-ratio: 16/9; background: #e8eaee; }
.article-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.article-card:hover .article-card-image img { transform: scale(1.035); }
.article-card-content { padding-top: 15px; }
.article-card h2 { margin: 10px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.25; letter-spacing: -.018em; }
.article-card h2 a:hover { color: var(--red); }
.article-card p { margin: 0 0 12px; color: var(--ink-soft); font-size: .93rem; }
.article-card-compact { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); position: relative; }
.article-card-compact .article-card-image { aspect-ratio: 1.2/1; border-radius: 11px; }
.article-card-compact .article-card-content { padding: 0; }
.article-card-compact h2 { margin: 7px 0; font-size: 1.02rem; }
.article-card-compact .article-labels a:nth-child(2) { display: none; }
.split-section { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(320px, .75fr); gap: 58px; }
.selection-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 28px; }
.popular-panel { background: white; border-radius: 20px; padding: 25px; box-shadow: 0 12px 40px rgba(21,23,27,.06); align-self: start; border-top: 4px solid var(--red); }
.popular-panel h2 { margin: 4px 0 4px; font-family: Georgia, serif; }
.popular-panel .article-card-compact { grid-template-columns: 48px minmax(0,1fr); }
.popular-panel .article-card-image { display: none; }
.ranking-number { display: grid; place-items: start center; font-family: Georgia, serif; font-size: 2rem; color: var(--red); line-height: 1; padding-top: 5px; }
.category-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; }
.category-tile { min-height: 178px; display: flex; flex-direction: column; padding: 22px; border: 1px solid var(--line); border-radius: 17px; transition: .2s ease; }
.category-tile:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow); }
.category-tile span { font-weight: 800; }
.category-tile strong { margin: auto 0 4px; font-family: Georgia, serif; font-size: 2.4rem; color: var(--red); }
.category-tile small { color: var(--muted); line-height: 1.4; }
.empty-state { padding: 28px; border: 1px dashed #cfd3da; border-radius: 16px; color: var(--muted); text-align: center; }
.empty-state.wide { grid-column: 1 / -1; }
.empty-home { padding: 110px 0; background: linear-gradient(135deg, #15171b, #321316); color: white; }
.empty-home h1 { font-family: Georgia, serif; font-size: 3.3rem; margin: 8px 0; }

.archive-hero { padding: 72px 0 48px; background: linear-gradient(135deg, #f5f6f8, #fff7f7); border-bottom: 1px solid var(--line); }
.archive-hero h1 { max-width: 900px; margin: 7px 0 12px; font-family: Georgia, serif; font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.06; letter-spacing: -.045em; }
.archive-hero p { max-width: 760px; color: var(--ink-soft); font-size: 1.04rem; }
.subcategory-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 23px; }
.subcategory-chips a, .back-link { display: inline-flex; padding: 8px 13px; border: 1px solid #d9dce2; background: white; border-radius: 100px; font-size: .86rem; font-weight: 700; }
.subcategory-chips a:hover, .back-link:hover { border-color: var(--red); color: var(--red); }
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 45px; }
.pagination a, .pagination span { min-width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; }
.pagination span { color: white; background: var(--red); border-color: var(--red); }
.author-heading { display: flex; align-items: center; gap: 22px; }
.author-avatar { width: 86px; height: 86px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--red); font-family: Georgia, serif; font-size: 2.5rem; }

.article-shell { padding: 32px 0 75px; }
.article-container { max-width: 1050px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 0 0 34px; color: var(--muted); font-size: .8rem; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 7px; color: #b8bdc5; }
.breadcrumb a:hover { color: var(--red); }
.article-header { max-width: 900px; margin: 0 auto 30px; text-align: center; }
.article-header .article-labels { justify-content: center; }
.article-header h1 { margin: 16px 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.5rem, 6vw, 4.75rem); line-height: 1.04; letter-spacing: -.045em; }
.article-deck { max-width: 800px; margin: 0 auto 19px; color: var(--ink-soft); font-size: 1.18rem; line-height: 1.65; }
.article-byline { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; color: var(--muted); font-size: .86rem; }
.article-byline a { color: var(--ink); font-weight: 750; }
.article-hero { margin: 0 0 40px; }
.article-hero img { width: 100%; max-height: 650px; object-fit: cover; border-radius: 22px; background: var(--soft); }
.article-hero figcaption { margin-top: 9px; color: var(--muted); font-size: .78rem; }
.article-layout { display: grid; grid-template-columns: 62px minmax(0, 720px); justify-content: center; gap: 30px; }
.share-rail { position: sticky; top: 130px; align-self: start; display: grid; gap: 9px; text-align: center; }
.share-rail span { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.share-rail a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); font-size: .78rem; font-weight: 800; }
.share-rail a:hover { color: white; background: var(--red); border-color: var(--red); }
.article-content { font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; line-height: 1.85; }
.article-content p { margin: 0 0 1.35em; }
.article-content h2 { margin: 1.65em 0 .55em; font-size: 1.75rem; line-height: 1.25; }
.article-content h3 { margin: 1.45em 0 .45em; font-size: 1.35rem; }
.article-content ul, .article-content ol { padding-left: 1.35em; }
.article-content blockquote { margin: 1.6em 0; padding: 15px 22px; border-left: 4px solid var(--red); background: var(--soft); font-style: italic; }
.article-content aside { margin: 1.6em 0; padding: 17px 20px; border-left: 4px solid var(--red); background: var(--soft-red); font-family: Inter, sans-serif; font-size: .95rem; }
.article-content a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.article-content figure { margin: 2em 0; }
.article-content figure img { border-radius: 14px; }
.article-content figcaption { color: var(--muted); font-family: Inter, sans-serif; font-size: .78rem; }
.article-sources { margin-top: 42px; padding-top: 25px; border-top: 1px solid var(--line); font-family: Inter, sans-serif; font-size: .88rem; }
.article-sources h2 { font-size: 1rem; margin: 0 0 8px; }
.article-sources ul { margin: 0; padding-left: 18px; }
.article-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 35px; padding-top: 22px; border-top: 1px solid var(--line); font-family: Inter, sans-serif; }
.article-tags a { color: var(--ink-soft); text-decoration: none; padding: 6px 10px; border: 1px solid var(--line); border-radius: 100px; font-size: .76rem; }
.related-section { margin-top: 80px; padding-top: 45px; border-top: 1px solid var(--line); }
.card-grid-three { grid-template-columns: repeat(3, minmax(0,1fr)); }

.search-page-form { max-width: 700px; margin-top: 24px; }
.search-status { color: var(--muted); margin: 0 0 24px; }
.prose-page { max-width: 840px; font-family: Georgia, serif; font-size: 1.08rem; }
.prose-page h2 { margin-top: 2em; font-size: 1.7rem; }
.prose-page a { color: var(--red); text-decoration: underline; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; font-family: Inter, sans-serif; }
.contact-card { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 12px 35px rgba(21,23,27,.05); }
.contact-card span { color: var(--red); font-weight: 800; text-transform: uppercase; font-size: .75rem; letter-spacing: .08em; }
.contact-card h2 { margin: 8px 0; }
.contact-card a { color: var(--red); font-weight: 800; }
.not-found { padding: 120px 0; text-align: center; }
.error-code { color: var(--red); font-weight: 900; letter-spacing: .1em; }
.not-found h1 { font-family: Georgia, serif; font-size: 3rem; margin: 8px 0; }
.not-found p { color: var(--muted); }
.not-found-actions { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.button-secondary { border: 1px solid var(--line); padding: 11px 18px; border-radius: 12px; font-weight: 750; }

.site-footer { margin-top: 30px; background: #111318; color: #d5d8dd; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr 1.1fr; gap: 45px; padding-block: 58px; }
.brand-footer .brand-copy strong { color: white; }
.footer-brand p { max-width: 430px; color: #aeb3bc; }
.site-footer h2 { margin: 0 0 14px; color: white; font-size: .95rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: .87rem; }
.site-footer a:hover { color: white; }
.footer-bottom { border-top: 1px solid #2a2d34; color: #9298a2; font-size: .78rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 18px; padding-block: 19px; }

@media (max-width: 1000px) {
  .main-nav { gap: 18px; }
  .hero-grid, .split-section { grid-template-columns: 1fr; }
  .hero-latest { display: grid; grid-template-columns: 1fr 1fr; column-gap: 20px; }
  .hero-latest .section-heading { grid-column: 1 / -1; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid section:last-child { display: none; }
}

@media (max-width: 760px) {
  .breaking-bar p { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .header-inner { min-height: 68px; }
  .brand-mark { width: 47px; height: 40px; }
  .brand-copy strong { font-size: .88rem; }
  .brand-copy small { font-size: .6rem; }
  .mobile-menu-toggle { display: grid; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 15px 20px 22px; background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); align-items: stretch; gap: 0; }
  .main-nav.open { display: grid; }
  .main-nav > a, .nav-dropdown-toggle { width: 100%; text-align: left; padding: 11px 3px; }
  .nav-dropdown-menu { position: static; transform: none; width: 100%; box-shadow: none; border: 0; padding: 0 0 8px 10px; }
  .hero-section { padding-top: 18px; }
  .hero-story { min-height: 520px; border-radius: 18px; }
  .hero-content { padding: 24px; }
  .hero-content h1 { font-size: 2.35rem; }
  .hero-content p { font-size: .95rem; }
  .hero-latest { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .card-grid, .archive-grid, .card-grid-three { grid-template-columns: 1fr; }
  .selection-list { grid-template-columns: 1fr; }
  .article-card-compact { grid-template-columns: 110px minmax(0,1fr); }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-tile { min-height: 150px; padding: 17px; }
  .archive-hero { padding: 48px 0 38px; }
  .article-header { text-align: left; }
  .article-header .article-labels, .article-byline { justify-content: flex-start; }
  .article-header h1 { font-size: 2.5rem; }
  .article-deck { font-size: 1.02rem; }
  .article-layout { grid-template-columns: 1fr; }
  .share-rail { position: static; display: flex; align-items: center; }
  .article-content { font-size: 1.04rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom .container { flex-direction: column; }
}

@media (max-width: 450px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .search-toggle { display: none; }
  .category-grid { grid-template-columns: 1fr; }
  .article-card-compact { grid-template-columns: 95px minmax(0,1fr); gap: 12px; }
  .article-header h1 { font-size: 2.15rem; }
  .article-hero img { border-radius: 14px; }
  .not-found-actions { flex-direction: column; }
}
.pagination .pagination-direction { width: auto; padding: 0 14px; }
.pagination .pagination-ellipsis { min-width: 24px; border-color: transparent; color: var(--muted); background: transparent; }
