.news-container {
    padding: 20px 10% 120px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

.news-item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: white;
    padding: 20px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(155, 27, 30, 0.05);
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--primary-red);
}

.news-image {
    height: 300px;
    overflow: hidden;
    margin-bottom: 25px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.news-content span.date {
    font-family: 'Ma Shan Zheng', cursive;
    color: var(--primary-red);
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: block;
}

.news-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 992px) {
    .news-container {
        grid-template-columns: 1fr;
        padding: 120px 5% 80px;
    }
}

.read-more {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
}

.read-more::after {
    content: ' →';
    transition: var(--transition-smooth);
}

.read-more:hover::after {
    padding-left: 10px;
}

/* 恢复并优化弹窗样式 */
.news-item {
    cursor: pointer;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-container {
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    background: var(--bg-cream);
    position: relative;
    padding: 60px;
    border-radius: 4px;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modal-close {
    position: fixed;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    z-index: 2100;
}

.modal-content-inner {
    color: var(--text-black);
}

.modal-content-inner h2 {
    font-size: 2.2rem;
    color: var(--primary-red);
    margin-bottom: 10px;
    font-family: 'Ma Shan Zheng', cursive;
}

.modal-content-inner .meta {
    color: var(--accent-gold);
    margin-bottom: 30px;
    display: block;
    font-weight: 500;
}

.modal-content-inner p {
    margin-bottom: 20px;
    text-indent: 2em;
    font-size: 1.1rem;
    line-height: 2;
}
