.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(92%, 1280px);
    margin: 2.3rem auto 0;
    gap: 1.4rem;
}

.news-card {
    background: rgba(247, 242, 235, 0.78);
    box-shadow: 0 8px 22px rgba(30, 24, 19, 0.1);
    overflow: hidden;
}

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

.news-content {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.95rem 1rem 1.1rem;
}

.news-content small {
    display: block;
    color: #645d54;
    font-size: 0.83rem;
    letter-spacing: 0.02em;
}

.news-content h2 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.2;
    color: #1e1a15;
}

.news-content p {
    color: #25201b;
    line-height: 1.6;
    opacity: 0.95;
}

.news-content a {
    color: #8a003f;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 1050px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .news-grid {
        grid-template-columns: 1fr;
        width: min(94%, 700px);
        gap: 1rem;
    }

    .news-card img {
        height: 205px;
    }
}
