.news-list {
    display: flex;
    gap: 1.2rem;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    .news-list {
        flex-direction: row;
    }
}

.news-list .news-item {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .news-list .news-item {
        max-width: 367px;
    }
}

.news-list .news-item h4 {
    font-size: 1.47rem;
    font-weight: 600;
    color: #21292e;
    line-height: normal;
}

.news-list .news-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.news-list .news-item a {
    display: block;
    text-decoration: none;
    margin-bottom: 1rem;
}

.news-list .news-item p {
    font-size: 1.125rem;
    line-height: 1.5;
    color: #21292e;
    margin: 0;
}