.article-news-page .news-detail-card {
    padding: 30px;
}

.news-header {
    text-align: center;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px dashed rgba(217, 171, 99, 0.28);
}

.news-main-title {
    font-size: clamp(30px, 4.8vw, 46px);
    color: #fff3de;
    line-height: 1.26;
    text-wrap: balance;
}

.news-header-meta {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: var(--text-light);
    font-size: 13px;
}

.news-cover {
    width: min(760px, 100%);
    margin: 0 auto 24px;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(217, 171, 99, 0.26);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.34);
}

.news-content {
    color: var(--text-main);
    font-size: 16px;
    line-height: 1.95;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.news-content p {
    margin: 0 0 1.2em;
}

.news-content img,
.news-content video,
.news-content iframe,
.news-content table,
.news-content pre {
    max-width: 100% !important;
    height: auto !important;
}

.news-readmore {
    margin-top: 28px;
    text-align: center;
}

.news-readmore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 24px;
    border-radius: 999px;
    color: #1f1305;
    background: linear-gradient(140deg, #f2d4a9, #d9ab63);
    box-shadow: 0 10px 20px rgba(217, 171, 99, 0.3);
    font-weight: 700;
}

.news-readmore-btn:hover {
    color: #140b02;
    transform: translateY(-1px);
}

.news-nav {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(217, 171, 99, 0.24);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}

.news-nav-item {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.news-nav-prev,
.news-nav-next {
    color: var(--text-muted);
}

.news-nav-next {
    text-align: right;
}

.news-nav-center {
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(120, 199, 255, 0.38);
    color: #d1edff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(120, 199, 255, 0.08);
}

.news-nav-center:hover {
    border-color: rgba(120, 199, 255, 0.72);
}

.news-nav-disabled {
    color: #807560;
}

@media (max-width: 780px) {
    .article-news-page .news-detail-card {
        padding: 16px;
    }

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

    .news-nav-next,
    .news-nav-prev,
    .news-nav-center {
        text-align: center;
    }
}
