body.news-page {
    margin: 0;
    background: #f8fafc;
    color: #0f172a;
}

.news-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.news-main {
    flex: 1;
    padding: 40px 0 72px;
}

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

.news-header {
    max-width: 720px;
    margin-bottom: 28px;
    padding-left: 16px;
    border-left: 4px solid var(--color-primary);
}

.news-header h1 {
    margin: 0 0 8px;
    font-size: clamp(30px, 4vw, 42px);
    letter-spacing: -0.02em;
    line-height: 1.12;
}

.news-header p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.news-card,
.news-article-card {
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.news-card {
    padding: 18px 30px 28px;
}

.news-item {
    display: block;
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.news-item:last-child {
    border-bottom: 0;
}

.news-item:hover {
    transform: translateX(4px);
}

.news-item-title {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 800;
}

.news-item-summary,
.news-item-summary p,
.news-item-summary span {
    margin: 0;
    color: #64748b !important;
    font-size: 14px !important;
    line-height: 1.9 !important;
}

.news-item-time {
    margin-top: 12px;
    color: #94a3b8;
    font-size: 12px;
    text-align: right;
}

.news-pagination {
    margin-top: 12px;
    text-align: center;
}

.news-pagination .layui-laypage .layui-laypage-curr .layui-laypage-em {
    background-color: var(--color-primary);
}

.news-article-card {
    padding: 38px;
}

.news-article-head {
    margin-bottom: 28px;
    padding-left: 16px;
    border-left: 4px solid var(--color-primary);
}

.news-article-title {
    margin: 0 0 10px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.news-article-meta {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

.news-article-content {
    color: #334155;
    font-size: 16px;
    line-height: 1.9;
}

.news-article-content p,
.news-article-content span,
.news-article-content li {
    color: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

.news-article-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 18px auto;
    border-radius: 18px;
}

@media (max-width: 900px) {
    .news-main {
        padding: 28px 0 56px;
    }

    .news-card,
    .news-article-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .news-item-title {
        font-size: 19px;
    }

    .news-header,
    .news-article-head {
        padding-left: 14px;
    }
}
