html .news-articles {
    margin-top: 80px;
    column-gap: 32px;
    row-gap: 64px;
}

@media (max-width: 768px) {
    html .news-articles {
        display: grid;
        column-gap: 24px;
        row-gap: 24px;
    }
}

html .news-articles .news-thumbnail img {
    object-fit: cover;
    object-position: center;
    box-shadow: none;
    width: 100%;
    border-radius: 8px;
}

html .news-articles .news-thumbnail {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 0 24px;
    aspect-ratio: 16 / 9;
    display: grid;
    place-content: center;
    margin-bottom: 8px;
}

html .news-articles .news-article {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

html .news-articles h3 {
    font-size: 24px;
    color: var(--black);
}

html .news-articles .placeholder {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background-color: #f5f5f5;
    display: grid;
    place-content: center;
    padding: 0 24px;
}

html .news-articles .placeholder img {
    width: 56px;
    border-radius: 0;
    box-shadow: none;

    aspect-ratio: unset;
    object-fit: unset;
    object-position: unset;
}

.news-date {
    color: var(--gray);
}

html a.read-more {
    background-color: var(--primary);
    padding: 7px 19px;
    font-weight: 600;
    border-radius: 5px;
    font-size: 14px;
    border: 1px solid transparent;
    color: var(--black);
    top: 0;
    left: 0;
    transform: none;
    display: block;
    transition: ease-in-out 0.2s all;
    text-align: center;
    margin-top: 16px;
}

html .read-more:hover {
    border: 1px solid var(--primary);
    background-color: transparent;
}

html .read-more:focus {
    outline: 0;
}

html .read-more.text-black {
    color: var(--black) !important;
}

html .read-more.small {
    font-size: 14px;
}