/* ── News Index Page ── */

.news-hero {
    padding: 48px 0 44px;
    border-bottom: 1px solid var(--line);
}

.news-breadcrumb {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.news-breadcrumb a {
    color: var(--ink-3);
    text-decoration: none;
}

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

.news-breadcrumb span {
    margin: 0 7px;
    color: var(--ink-4);
}

.news-eyebrow {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.news-hero-heading {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 12px;
}

.news-hero-heading em {
    font-style: italic;
    color: var(--red);
}

.news-hero-desc {
    font-size: 0.9rem;
    color: var(--ink-2);
    line-height: 1.6;
    max-width: 480px;
}

/* ── News body ── */
.news-body {
    padding: 48px 0 64px;
}

/* Featured + sidebar grid */
.news-feature-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 48px;
}

.news-feature-wrap .news-card--feature {
    border-right: 1px solid var(--line);
}

.news-sidebar {
    display: flex;
    flex-direction: column;
}

.news-sidebar .news-card {
    border-bottom: 1px solid var(--line);
    flex: 1;
}

.news-sidebar .news-card:last-child {
    border-bottom: none;
}

/* ── News card base ── */
.news-card {
    display: block;
    padding: 24px 28px;
    text-decoration: none;
    color: inherit;
    background: var(--paper);
    transition: background 0.15s;
}

.news-card:hover {
    background: var(--paper-2);
}

.news-card--feature {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.news-date {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--ink-3);
    letter-spacing: 0.04em;
}

.news-source-tag {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--paper);
    background: var(--ink-2);
    border-radius: 2px;
    padding: 2px 7px;
    text-transform: uppercase;
    white-space: nowrap;
}

.news-card--feature .news-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 12px;
    flex: 1;
}

.news-card .news-title {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 8px;
}

.news-card:hover .news-title {
    color: var(--red);
}

.news-excerpt {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--ink-2);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-readmore {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    letter-spacing: 0.02em;
    margin-top: auto;
}

/* ── News list grid (remaining articles) ── */
.news-list-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.news-list-title {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 32px;
}

.news-grid .news-card {
    background: var(--paper);
}

.news-grid .news-card:hover {
    background: var(--paper-2);
}

.news-page__pagination {
    margin-top: 16px;
}

/* ── News Article (Show) Page ── */
.news-article-page {
    padding: 40px 0 64px;
    max-width: 720px;
}

.news-article-back {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--ink-3);
    margin-bottom: 32px;
}

.news-article-back a {
    color: var(--ink-3);
    text-decoration: none;
    transition: color 0.15s;
}

.news-article-back a:hover {
    color: var(--ink);
}

.news-article-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.news-article-title {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 28px;
}

.news-article-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink-2);
}

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

.news-article-source {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 0.8rem;
    color: var(--ink-3);
}

.news-article-source a {
    color: var(--ink-3);
    text-decoration: underline;
}

.news-article-source a:hover {
    color: var(--ink);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .news-feature-wrap {
        grid-template-columns: 1fr;
    }

    .news-card--feature {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .news-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .news-sidebar .news-card {
        flex: 1 1 50%;
        border-bottom: 1px solid var(--line);
        border-right: 1px solid var(--line);
    }
}

@media (max-width: 640px) {
    .news-hero {
        padding: 32px 0 28px;
    }

    .news-hero-heading {
        font-size: 1.75rem;
    }

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

    .news-sidebar {
        flex-direction: column;
    }

    .news-sidebar .news-card {
        flex: none;
        border-right: none;
    }
}
