/* ============================================================
   The Chronicle Page — Main Stylesheet
   Inspired by classic broadsheet newspaper design (NYT style)
   ============================================================ */

/* --- Google Fonts ---
   Manufacturing Consent : masthead blackletter
   PT Serif              : headlines & display text
   Source Serif 4        : body copy
   Inter                 : UI, meta, navigation
------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,400&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background: #fff;
    color: #121212;
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style: none;
}

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
    --red:       #C41230;
    --red-dark:  #9B0E26;
    --black:     #121212;
    --gray-900:  #1a1a1a;
    --gray-700:  #444;
    --gray-500:  #767676;
    --gray-300:  #ccc;
    --gray-100:  #f4f4f4;
    --border:    #e2e2e2;
    --container: 1200px;
    --gutter:    24px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    border-bottom: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.03em;
    color: var(--gray-500);
    padding: 7px 0;
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.top-bar__date {
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.top-bar__domain {
    font-weight: 500;
    color: var(--gray-700);
    letter-spacing: 0.04em;
}

.top-bar__tagline {
    color: var(--gray-500);
    font-style: italic;
}

/* ============================================================
   MASTHEAD
   ============================================================ */
.masthead {
    text-align: center;
    padding: 22px var(--gutter) 16px;
    border-bottom: 3px solid var(--black);
    position: relative;
}

.masthead__logo {
    font-family: 'Manufacturing Consent', 'PT Serif', Georgia, serif;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    font-weight: 400;
    color: var(--black);
    letter-spacing: -0.01em;
    line-height: 1;
    display: block;
    transition: opacity 0.15s;
}

.masthead__logo:hover {
    opacity: 0.82;
}

.masthead__rule {
    display: block;
    width: 80px;
    height: 2px;
    background: var(--red);
    margin: 10px auto 0;
}

/* ============================================================
   PRIMARY NAV
   ============================================================ */
.primary-nav {
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
}

.primary-nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
    overflow-x: auto;
    scrollbar-width: none;
}

.primary-nav__inner::-webkit-scrollbar { display: none; }

.primary-nav__link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-700);
    padding: 11px 14px;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    display: block;
}

.primary-nav__link:hover,
.primary-nav__link--active {
    color: var(--red);
    border-bottom-color: var(--red);
}

.primary-nav__logo {
    font-family: 'Manufacturing Consent', 'PT Serif', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--black);
    text-decoration: none;
    white-space: nowrap;
    position: absolute;
    left: var(--gutter);
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.primary-nav--stuck .primary-nav__logo {
    opacity: 1;
    pointer-events: auto;
}

.primary-nav__sep {
    color: var(--border);
    font-size: 18px;
    line-height: 1;
    user-select: none;
}

/* ============================================================
   RED ACCENT LINE (below masthead, NYT-style)
   ============================================================ */
.red-rule {
    height: 3px;
    background: var(--red);
    width: 100%;
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-content {
    max-width: var(--container);
    margin-inline: auto;
    padding: 32px var(--gutter) 48px;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--black);
}

.section-header__title {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--black);
}

.section-header__rule {
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ============================================================
   HOMEPAGE LAYOUT — HERO
   ============================================================ */
.homepage-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-template-rows: auto;
    gap: 0 32px;
    margin-bottom: 40px;
}

/* Hero story — spans full left column */
.hero-story {
    border-right: 1px solid var(--border);
    padding-right: 32px;
}

.hero-story__image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    margin-bottom: 16px;
    background: var(--gray-100);
}

.hero-story__image--placeholder {
    aspect-ratio: 16/9;
    width: 100%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hero-story__kicker {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    margin-bottom: 8px;
    display: block;
}

.hero-story__title {
    font-family: 'PT Serif', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.18;
    color: var(--black);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero-story__title a:hover {
    color: var(--red);
}

.hero-story__deck {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.55;
    margin-bottom: 12px;
}

.hero-story__meta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-story__author {
    color: var(--gray-700);
    font-weight: 500;
}

.meta-dot {
    color: var(--gray-300);
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-story {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-story:first-of-type {
    padding-top: 0;
}

.sidebar-story__kicker {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    margin-bottom: 5px;
    display: block;
}

.sidebar-story__title {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
    color: var(--black);
}

.sidebar-story__title a:hover {
    color: var(--red);
}

.sidebar-story__meta {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--gray-500);
}

/* ============================================================
   STORY GRID (below the fold)
   ============================================================ */
.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 28px;
    margin-bottom: 40px;
}

.story-card {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.story-card__image {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
    background: var(--gray-100);
}

.story-card__image--placeholder {
    aspect-ratio: 3/2;
    width: 100%;
    background: var(--gray-100);
    margin-bottom: 12px;
}

.story-card__kicker {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    margin-bottom: 6px;
    display: block;
}

.story-card__title {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    color: var(--black);
}

.story-card__title a:hover {
    color: var(--red);
}

.story-card__excerpt {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.55;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-card__meta {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================================
   CATEGORY PILL
   ============================================================ */
.cat-pill {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--red);
    color: #fff;
    padding: 2px 7px;
    border-radius: 2px;
    line-height: 1.6;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.section-divider {
    border: none;
    border-top: 2px solid var(--black);
    margin: 40px 0 24px;
}

/* ============================================================
   SECTION HEADER — MORE LINK
   ============================================================ */
.section-header__more {
    margin-left: auto;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    text-decoration: none;
}
.section-header__more:hover { color: var(--black); }

/* ============================================================
   CATEGORY STRIP
   ============================================================ */
.cat-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.cat-lead__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
}
.cat-lead__title {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 6px;
}
.cat-lead__title a { color: var(--black); text-decoration: none; }
.cat-lead__title a:hover { text-decoration: underline; }
.cat-lead__excerpt {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0 0 8px;
}
.cat-lead__meta {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.cat-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.cat-items--full {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cat-item {
    padding: 14px 0;
    border-top: 1px solid var(--border);
}
.cat-item:first-child { border-top: none; padding-top: 0; }
.cat-item__title {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 6px;
}
.cat-item__title a { color: var(--black); text-decoration: none; }
.cat-item__title a:hover { text-decoration: underline; }
.cat-item__excerpt {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.45;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cat-item__meta {
    font-size: 0.72rem;
    color: var(--gray-500);
}

@media (max-width: 680px) {
    .cat-strip { grid-template-columns: 1fr; }
    .cat-items--full { grid-template-columns: 1fr; }
}

.section-divider--thick {
    border-top: 2px solid var(--black);
    margin: 32px 0 20px;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 72px 24px 80px;
}

.empty-state__icon {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 20px;
    line-height: 1;
}

.empty-state__title {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.empty-state__text {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 420px;
    margin-inline: auto;
    line-height: 1.65;
}

/* ============================================================
   COMING SOON SPLASH
   ============================================================ */
.launch-splash {
    border: 1px solid var(--border);
    border-top: 4px solid var(--red);
    padding: 48px 40px;
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
}

.launch-splash__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--red);
    margin-bottom: 16px;
}

.launch-splash__headline {
    font-family: 'PT Serif', Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--black);
}

.launch-splash__body {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.65;
    margin-bottom: 24px;
}

.launch-splash__rule {
    width: 40px;
    height: 2px;
    background: var(--red);
    margin: 0 auto 24px;
}

.launch-splash__meta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.75);
    padding: 0;
    margin-top: 64px;
}

.footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0 32px;
}

.footer-masthead {
    text-align: center;
    margin-bottom: 28px;
}

.footer-masthead__name {
    font-family: 'Manufacturing Consent', 'PT Serif', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #fff;
    display: block;
    margin-bottom: 6px;
}

.footer-masthead__tagline {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 0.875rem;
    font-style: italic;
    color: rgba(255,255,255,0.5);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 0;
    margin-bottom: 0;
}

.footer-nav__item {
    display: flex;
    align-items: center;
}

.footer-nav__link {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
    padding: 4px 12px;
    transition: color 0.15s;
}

.footer-nav__link:hover {
    color: #fff;
}

.footer-nav__sep {
    color: rgba(255,255,255,0.2);
    font-size: 14px;
}

.footer-col--wide { grid-column: span 2; }

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col__heading {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-col__list--2col { display: block; columns: 2; column-gap: 16px; }
.footer-col__list--2col li { margin-bottom: 8px; }

.footer-col__link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    transition: color 0.15s;
    line-height: 1.4;
}

.footer-col__link:hover {
    color: #fff;
}

.footer-bottom {
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom__copy {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
}

.footer-bottom__copy a {
    color: rgba(255,255,255,0.4);
    transition: color 0.15s;
}

.footer-bottom__copy a:hover {
    color: rgba(255,255,255,0.7);
}

.footer-bottom__links {
    display: flex;
    gap: 16px;
}

.footer-bottom__link {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    transition: color 0.15s;
}

.footer-bottom__link:hover {
    color: rgba(255,255,255,0.6);
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-wrap {
    max-width: 680px;
    margin-inline: auto;
    padding-top: 32px;
}

.article-header {
    margin-bottom: 28px;
}

.article-header__section {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    display: block;
    margin-bottom: 12px;
}

.article-header__title {
    font-family: 'PT Serif', Georgia, serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.article-header__deck {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.15rem;
    color: var(--gray-700);
    line-height: 1.55;
    margin-bottom: 20px;
}

.article-header__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--gray-500);
}

.article-body {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--gray-900);
}

.article-body p {
    margin-bottom: 1.4em;
}

.article-body h2 {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2em 0 0.7em;
}

.article-body h3 {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.8em 0 0.6em;
}

.article-body blockquote {
    margin: 2em 0;
    padding: 0 0 0 20px;
    box-shadow: inset 4px 0 0 var(--red);
    font-style: italic;
    color: var(--gray-700);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--gray-500);
    transition: color 0.15s;
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb__sep {
    color: var(--gray-300);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 40px;
    font-family: 'Inter', sans-serif;
}

.pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid var(--border);
    font-size: 13px;
    color: var(--gray-700);
    transition: background 0.12s, color 0.12s, border-color 0.12s;
}

.pagination__link:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.pagination__link--active {
    background: var(--black);
    border-color: var(--black);
    color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .homepage-grid {
        grid-template-columns: 1fr;
    }

    .hero-story {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--border);
        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    .sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 24px;
    }

    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    :root {
        --gutter: 16px;
    }

    .top-bar__tagline {
        display: none;
    }

    .primary-nav__link {
        padding: 10px 10px;
        font-size: 11px;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .launch-splash {
        padding: 32px 20px;
    }
}

@media (max-width: 400px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */

.article-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 24px 60px; }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start; }

.article-meta-top { margin-bottom: 12px; }
.article-kicker { font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #C41230; text-decoration: none; }
.article-kicker:hover { text-decoration: underline; }

.article-headline { font-family: 'PT Serif', Georgia, serif; font-size: 2.4rem; line-height: 1.2; color: #121212; margin-bottom: 16px; font-weight: 700; }
.article-deck { font-family: 'PT Serif', Georgia, serif; font-size: 1rem; color: #444; line-height: 1.6; margin-bottom: 20px; font-style: italic; }

.article-byline { display: flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 0.82rem; color: #666; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #ddd; flex-wrap: wrap; }
.article-byline__author { font-weight: 600; color: #121212; }
.article-byline__sep { color: #bbb; }
.article-byline__source { color: #C41230; text-decoration: none; }
.article-byline__source:hover { text-decoration: underline; }

.article-figure { margin: 0 0 28px; }
.article-figure img { width: 100%; height: auto; display: block; }

.article-body { font-family: 'Source Serif 4', Georgia, serif; font-size: 1.1rem; line-height: 1.85; color: #1a1a1a; }
.article-body p { margin-bottom: 1.4em; }
.article-body h2 { font-family: 'PT Serif', Georgia, serif; font-size: 1.4rem; margin: 1.8em 0 0.6em; color: #121212; }
.article-body strong { font-weight: 700; }

.article-back { margin-top: 40px; padding-top: 20px; border-top: 1px solid #ddd; }
.article-back a { font-family: 'Inter', sans-serif; font-size: 0.85rem; color: #555; text-decoration: none; }
.article-back a:hover { color: #C41230; }

/* Sidebar */
.sidebar-box { border-top: 3px solid #121212; padding-top: 16px; }
.sidebar-box__heading { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #121212; margin-bottom: 16px; }
.sidebar-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid #e8e8e8; }
.sidebar-item:last-child { border-bottom: none; }
.sidebar-item__img { width: 72px; height: 82px; object-fit: cover; flex-shrink: 0; }
.sidebar-item__body { display: flex; flex-direction: column; gap: 4px; }
.sidebar-item__cat { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #C41230; }
.sidebar-item__title { font-family: 'PT Serif', Georgia, serif; font-size: 0.9rem; line-height: 1.35; color: #121212; text-decoration: none; font-weight: 600; }
.sidebar-item__title:hover { color: #C41230; }

@media (max-width: 900px) {
    .article-layout { grid-template-columns: 1fr; gap: 40px; }
    .article-headline { font-size: 1.8rem; }
}

/* ============================================================
   LEGAL / STATIC PAGES
   ============================================================ */
.legal-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}
.legal-wrap h1 {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}
.legal-wrap .legal-meta {
    color: var(--gray-500);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    margin-bottom: 40px;
}
.legal-wrap h2 {
    font-family: 'PT Serif', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 36px 0 12px;
    color: var(--black);
}
.legal-wrap p {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--black);
    margin-top: 12px;
}
.legal-wrap p:first-of-type { margin-top: 0; }
.legal-wrap a { color: var(--red); text-decoration: none; }
.legal-wrap a:hover { text-decoration: underline; }
