.featured-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-4);
    padding: var(--spacing-4);
    flex-direction: column;
    margin-bottom: 5vh;
}

.featured-container a {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.featured-container img {
    max-width: 100%;
    max-height: 100%;
}


@media screen and (min-width: 800px) {
    .featured-container {
        flex-direction: row;
    }
    .featured-container a {
        width: 33%;
    }
}