/* ========================================
   慕品视觉 - 新闻页面专用样式
   ======================================== */

/* News List Section */
.news-list-section {
    padding: 6rem 0;
    background: var(--color-cream);
}

.news-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.news-list-item {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-medium);
}

.news-list-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.news-list-link {
    display: block;
}

.news-list-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.news-list-content {
    padding: 2rem;
}

.news-list-date {
    color: var(--color-pink-deep);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.8rem;
}

.news-list-content h3 {
    font-size: 1.3rem;
    color: var(--color-brown-deep);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.news-list-content p {
    color: var(--color-brown-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-more {
    color: var(--color-pink-deep);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .news-list-grid {
        grid-template-columns: 1fr;
    }
}
