
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.news-img img {
    width: 100%;
    height: auto;
    display: block;
}

.news-title {
    font-weight: bold;
    margin: 10px 0;
}

.news-button {
    margin-top: 10px;
}

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

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