.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.news-item {
    background: #fff;
    display: flex;
    flex-direction: column;
}

.news-image-wrapper {
    display: block;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

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

.news-content {
    padding: 15px;
    flex: 1;
}

.news-title {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.news-title a {
    text-decoration: none;
    color: #000;
}

.news-date {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 12px;
}

.news-excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive */

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

@media (max-width: 600px) {
    .home-news-grid {
        grid-template-columns: 1fr;
    }
}