.latest-news-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.latest-news-wrapper > article {
    margin-right: 2rem;
    width: 30%;
}

.news-date {
    color: var(--tbi-theme-color-secondary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-title {
    margin: 15px 0;
}

.news-title a {
    text-decoration: none;
}

.news-link {
    color: var(--tbi-theme-color-accent-pink);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 1023px) {
    .latest-news-wrapper {
        flex-direction: column;
    }

    .latest-news-wrapper > article {
        margin-bottom: 2rem;
        margin-right: 0;
        width: 100%;
    }
}