.news-page {
    padding: 2.4rem 0 3rem;
    background:
        radial-gradient(circle at top right, rgba(255, 140, 0, 0.08), transparent 26%),
        linear-gradient(180deg, #131313, #0f0f0f);
}

.news-container {
    width: min(1480px, calc(100% - 3rem));
    margin: 0 auto;
}

@media (min-width: 768px) {
    header .header-inner {
        max-width: 1480px;
        padding: 0 1.5rem;
        box-sizing: border-box;
    }
}

.news-kicker {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: #ffb04d;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.news-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.4rem;
}

.news-hero-copy h1 {
    margin: 0 0 0.55rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    color: #fff;
}

.news-hero-copy p {
    margin: 0;
    max-width: 720px;
    color: #aaa;
    font-size: 15px;
    line-height: 1.8;
}

.news-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.news-highlight-card,
.news-featured,
.news-card,
.news-article,
.news-aside-card {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 48%),
        linear-gradient(180deg, #1a1a1a, #131313);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.news-highlight-card {
    padding: 1rem 1.05rem;
}

.news-highlight-card span {
    display: block;
    color: #9b9b9b;
    font-size: 12px;
    margin-bottom: 0.35rem;
}

.news-highlight-card strong {
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
}

.news-featured {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.1fr);
    gap: 0;
    overflow: hidden;
    margin-bottom: 1.4rem;
}

.news-featured-cover,
.news-card-cover,
.news-related-item {
    text-decoration: none;
}

.news-featured-cover {
    min-height: 100%;
}

.news-featured-cover img,
.news-card-cover img,
.news-article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-featured-body {
    padding: 1.35rem 1.35rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-chip-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 0.85rem;
    margin-bottom: 0.9rem;
}

.news-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    color: #ffb04d;
    background: rgba(255, 176, 77, 0.12);
    border: 1px solid rgba(255, 176, 77, 0.24);
    font-size: 12px;
    font-weight: 600;
}

.news-featured-meta {
    color: #949494;
    font-size: 12px;
}

.news-featured h2,
.news-card h3,
.news-article-header h1,
.news-aside-card h2 {
    margin: 0;
    color: #fff;
}

.news-featured h2 {
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    line-height: 1.18;
}

.news-featured h2 a,
.news-card h3 a {
    color: inherit;
    text-decoration: none;
}

.news-featured p,
.news-card p,
.news-article-summary,
.news-article-body p {
    color: #b0b0b0;
    line-height: 1.8;
}

.news-featured p {
    margin: 0.9rem 0 1rem;
    font-size: 15px;
}

.news-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.news-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.68rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    color: #e9decf;
    font-size: 12px;
    font-weight: 600;
}

.news-read-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.1rem;
    min-height: 42px;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff8c00, #ff6a00);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
}

.news-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-section-head h2 {
    margin: 0;
    color: #fff;
    font-size: 1.45rem;
}

.news-section-head p {
    margin: 0;
    color: #949494;
    font-size: 13px;
}

.news-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.news-pagination {
    margin-top: 1.2rem;
}

.news-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.news-pagination .pagination li {
    list-style: none;
}

.news-pagination .pagination a,
.news-pagination .pagination span {
    color: inherit;
}

.news-pagination .pagination .active span {
    color: inherit;
}

.news-empty-card {
    padding: 1.4rem;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    color: #b0b0b0;
    text-align: center;
}

.news-empty-card h3 {
    margin: 0 0 0.4rem;
    color: #fff;
}

.news-empty-card p {
    margin: 0;
}

.news-card {
    overflow: hidden;
}

.news-card-cover {
    display: block;
    aspect-ratio: 1.45 / 1;
    background: #161616;
}

.news-card-body {
    padding: 1rem 1rem 1.05rem;
}

.news-card-meta,
.news-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.news-card-meta {
    margin-bottom: 0.65rem;
    color: #969696;
    font-size: 12px;
}

.news-card h3 {
    font-size: 1.08rem;
    line-height: 1.4;
    margin-bottom: 0.55rem;
}

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

.news-card-foot span {
    color: #8e8e8e;
    font-size: 12px;
}

.news-card-foot a,
.news-back-link {
    color: #ffb04d;
    text-decoration: none;
    font-weight: 600;
}

.news-detail-topbar {
    margin-bottom: 1rem;
}

.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.news-detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 320px;
    gap: 1rem;
    align-items: start;
}

.news-article {
    padding: 1.4rem;
}

.news-article-header {
    margin-bottom: 1.1rem;
}

.news-article-header h1 {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    line-height: 1.12;
    margin-bottom: 0.8rem;
}

.news-article-summary {
    margin: 0 0 1rem;
    font-size: 15px;
}

.news-article-summary:empty {
    display: none;
}

.news-tag-list-compact {
    margin-top: 0.35rem;
}

.news-tag-list-compact .news-tag {
    font-size: 11px;
    padding: 0.24rem 0.58rem;
}

.news-article-cover {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    aspect-ratio: 1.7 / 1;
    background: #161616;
}

.news-article-body p {
    margin: 0 0 1rem;
    font-size: 15px;
}

.news-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-aside-card {
    padding: 1rem 1.05rem;
}

.news-aside-card h2 {
    margin-bottom: 0.85rem;
    font-size: 1rem;
}

.news-aside-list {
    display: grid;
    gap: 0.75rem;
}

.news-aside-list div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.85rem;
}

.news-aside-list span,
.news-related-item span,
.news-related-item em {
    display: block;
    color: #8d8d8d;
    font-size: 12px;
    font-style: normal;
}

.news-aside-list strong,
.news-related-item strong {
    color: #fff;
    line-height: 1.55;
}

.news-aside-list strong {
    text-align: right;
    word-break: break-word;
    flex: 1;
}

.news-related-list {
    display: grid;
    gap: 0.75rem;
}

.news-related-item {
    display: block;
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-related-item strong {
    display: block;
    margin: 0.3rem 0 0.25rem;
}

.news-detail-more {
    margin-top: 1.35rem;
}

@media (max-width: 991px) {
    .news-hero,
    .news-featured,
    .news-detail-shell {
        grid-template-columns: 1fr;
    }

    .news-highlight-grid,
    .news-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .news-page {
        padding: 1.4rem 0 2rem;
    }

    .news-container {
        width: min(100% - 1rem, 1480px);
    }

    .news-hero {
        gap: 0.7rem;
        margin-bottom: 1rem;
        align-items: start;
    }

    .news-hero-copy h1 {
        margin-bottom: 0.2rem;
        font-size: 1.9rem;
    }

    .news-highlight-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.45rem;
        align-items: start;
    }

    .news-highlight-card {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: none;
        box-shadow: none;
        text-align: left;
    }

    .news-highlight-card span {
        margin-bottom: 0.18rem;
        font-size: 0.66rem;
        line-height: 1.25;
        color: rgba(255, 255, 255, 0.52);
    }

    .news-highlight-card strong {
        font-size: 0.86rem;
        line-height: 1.2;
    }

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

    .news-featured-body,
    .news-article,
    .news-aside-card {
        padding: 1rem;
    }

    .news-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-detail-topbar {
        margin-bottom: 0.85rem;
    }

    .news-back-link {
        min-height: 40px;
        padding: 0 0.95rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.05);
    }

    .news-article-header h1 {
        font-size: 1.85rem;
    }

    .news-featured h2 {
        font-size: 1.55rem;
    }

    .news-card-body {
        padding: 0.95rem;
    }

    .news-card-foot,
    .news-card-meta,
    .news-aside-list div {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-aside-list strong {
        text-align: left;
    }
}
