@charset "utf-8";

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #1c2430;
    background: #fbfaf7;
    font-family: "PingFang SC", "Microsoft YaHei", Helvetica, sans-serif;
}

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

.news-header {
    background:
        linear-gradient(135deg, rgba(225, 25, 36, 0.92), rgba(30, 38, 54, 0.94)),
        url("/images/blur_bg.jpg") center/cover no-repeat;
    color: #fff;
}

.news-header.compact {
    background: #1e2636;
}

.news-nav {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-size: 22px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-links a {
    padding: 9px 15px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78);
}

.nav-links a.active,
.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.news-hero {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0 86px;
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
}

.news-hero h1 {
    margin: 0;
    font-size: clamp(40px, 7vw, 76px);
    line-height: 1;
    letter-spacing: 0;
}

.subtitle {
    max-width: 620px;
    margin: 22px 0 0;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
}

.news-shell {
    width: min(1120px, calc(100% - 40px));
    margin: -42px auto 80px;
}

.featured-card {
    display: block;
    padding: 38px;
    min-height: 260px;
    background: #fff;
    border: 1px solid rgba(36, 42, 54, 0.08);
    box-shadow: 0 22px 54px rgba(30, 38, 54, 0.12);
}

.date {
    display: inline-block;
    color: #e11924;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.featured-card h2,
.news-card h2 {
    margin: 0;
    color: #1d2533;
    letter-spacing: 0;
}

.featured-card h2 {
    max-width: 780px;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.18;
}

.featured-card p,
.news-card p {
    color: #5b6472;
    line-height: 1.75;
}

.featured-card p {
    max-width: 720px;
    margin: 18px 0 0;
    font-size: 17px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 18px;
}

.news-card {
    background: #fff;
    border: 1px solid rgba(36, 42, 54, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(30, 38, 54, 0.1);
}

.news-card a {
    display: block;
    min-height: 220px;
    padding: 26px;
}

.news-card h2 {
    font-size: 21px;
    line-height: 1.35;
}

.news-card p {
    margin: 14px 0 0;
    font-size: 15px;
}

.pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
    color: #5b6472;
}

.pager a {
    padding: 9px 16px;
    background: #1e2636;
    color: #fff;
    border-radius: 999px;
}

.empty-state {
    background: #fff;
    padding: 56px;
    text-align: center;
    border: 1px solid rgba(36, 42, 54, 0.08);
}

.article-shell {
    width: min(820px, calc(100% - 40px));
    margin: 58px auto 90px;
    background: #fff;
    padding: clamp(28px, 6vw, 64px);
    border: 1px solid rgba(36, 42, 54, 0.08);
    box-shadow: 0 22px 54px rgba(30, 38, 54, 0.08);
}

.back-link {
    color: #e11924;
    font-weight: 700;
}

.article-shell time {
    display: block;
    margin-top: 28px;
    color: #7a8391;
}

.article-shell h1 {
    margin: 14px 0 32px;
    font-size: clamp(32px, 6vw, 54px);
    line-height: 1.16;
    letter-spacing: 0;
}

.article-content {
    font-size: 18px;
    line-height: 1.9;
    color: #2e3745;
}

.article-content img {
    max-width: 100%;
    height: auto;
}

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

    .news-nav {
        min-height: 64px;
    }

    .news-hero {
        padding: 48px 0 70px;
    }

    .featured-card {
        padding: 28px;
    }
}
