.news-section {
    padding: 90px 0 70px;
    background: linear-gradient(180deg, var(--bg-cream) 0%, #ffffff 55%);
}

.news-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.news-header h2 {
    font-size: 3rem;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

.news-header p {
    color: rgba(45, 49, 42, 0.7);
    font-size: 1.1rem;
    max-width: 720px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.news-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(20, 40, 130, 0.12);
    border: 1px solid rgba(20, 40, 130, 0.08);
}

.news-image img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.news-content {
    padding: 26px 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.news-date {
    font-size: 0.95rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.news-card h3 {
    font-size: 1.7rem;
    color: var(--dark-green);
    margin: 0;
}

.news-card p {
    color: rgba(45, 49, 42, 0.8);
    line-height: 1.7;
    margin: 0;
}

@media (min-width: 900px) {
    .news-card {
        grid-template-columns: 1.05fr 1fr;
        align-items: stretch;
    }
}

@media (max-width: 700px) {
    .news-section {
        padding: 70px 0 60px;
    }

    .news-header h2 {
        font-size: 2.4rem;
    }

    .news-card h3 {
        font-size: 1.4rem;
    }
}
