.news-detail-card {
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(251, 244, 231, 0.96));
    border: 1px solid rgba(194, 175, 141, 0.7);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 20px rgba(90, 59, 19, 0.1);
    overflow: hidden;
}

.news-header {
    border-bottom: 1px dashed rgba(194, 175, 141, 0.75);
    padding-bottom: 14px;
}

.news-main-title {
    margin: 0;
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.2;
}

.news-header-meta {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: #70685c;
    font-size: 13px;
}

.news-cover {
    width: 100%;
    max-height: 420px;
    margin-top: 16px;
    border-radius: 14px;
    object-fit: cover;
}

.news-content {
    margin-top: 20px;
    color: #3c382f;
    line-height: 1.95;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

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

.news-readmore {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.news-readmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #0f7a67, #0b5f51);
}

.news-nav {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.news-nav-item {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border-radius: 10px;
    border: 1px solid rgba(194, 175, 141, 0.72);
    background: rgba(255, 255, 255, 0.82);
    padding: 8px 10px;
    color: #4d4539;
}

.news-nav-center {
    padding-left: 16px;
    padding-right: 16px;
    color: #0b5f51;
}

.news-nav-disabled {
    color: #9b9386;
}

@media (max-width: 860px) {
    .news-main-title {
        font-size: 30px;
    }
}

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

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