#news_section {
    display: block;
}

#news_section>h1 {
    margin-bottom: 30px;
}

.news-row {
    display: flex;
    gap: 15px;
}

.news-row>div {
    flex-grow: 1;
    flex-basis: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 3px 5px #0002;
    border-radius: 5px;
    background-color: white;
}

.news-row>div>h3 {
    margin-bottom: 0;
}

.news-row>div>p {
    flex-grow: 1;
}

.news-row img {
    width: 100%;
    aspect-ratio: 5/3;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.news-row>div>span {
    color: gray;
}

.news-row>div>:not(img) {
    margin-left: 5px;
    margin-right: 5px;
}

@media screen and (max-width: 850px) {
    .news-row {
        flex-direction: column;
        gap: 20px;
    }
}