.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}
.news-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: auto;
    border-radius: 4px;
}
.news-item:nth-child(4n+1) {
    margin-left: 0;
}
.news-item h2 {
    font-size: 1.5em;
    margin: 0 0 10px;
    line-height: 1.1;
}
.news-image {
    margin: 10px 0;
    height: 150px;
    border-radius: 4px;
    overflow: hidden;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-date {
    font-size: 0.875em;
    color: #666;
    margin-bottom: 15px;
}
.news-content {
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .news-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }   
}
@media (max-width: 575px) {
    .news-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
}