/* 新闻详情页面样式 */

.article-detail {
    padding: 180px 0 80px;
    background: var(--beige);
}

.article-header {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.article-title {
    font-size: 42px;
    line-height: 1.4;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.article-meta {
    font-size: 15px;
    color: var(--gray-text);
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border: 1px solid var(--line-color);
    line-height: 2;
    font-size: 17px;
}

.article-content img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.related-news {
    padding: 80px 0;
}

.news-grid-small {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.news-card-small {
    background: var(--white);
    border: 1px solid var(--line-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.news-card-small img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.news-card-small-content {
    padding: 15px;
}

.news-card-small-content h3 {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-small-content span {
    font-size: 12px;
    color: var(--gray-text);
}

@media (max-width: 1024px) {
    .news-grid-small {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .article-title {
        font-size: 28px;
    }
    
    .article-content {
        padding: 30px 20px;
    }
    
    .news-grid-small {
        grid-template-columns: 1fr;
    }
}
