#highlight-section {
    display: flex;
    flex-direction: column;
}

.highlights {
    background-color: #FBF2EF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex: 1;
}

.highlight-item {
    padding: 0 3vw;
}

.highlight-item img {
    width: 20vw;
    max-width: 300px;
    aspect-ratio: 0.73;
    object-fit: cover;
}


.highlight-item:hover img{
    position: relative;
    aspect-ratio: none;
    display: block;
    margin: auto;
    width: auto;
    max-width: none;
    object-fit: none;
    transition: 1s;
}

#cta {
    margin-top: 128px;
    height: 25vh;
    background-color: #FBF2EF;
    display: flex;
    align-items: center;
    justify-content: center;
}

#cta h2::after {
    content: '...';
}

#cta q::after, #cta q::before {
    content: '';
}

.cta-content {
    width: 43vw;
    padding-right: 13vw;
}

#cta .cta-button {
    padding: 32px;
    min-width: 220px;
    font-size: 1.4em;
}

#cta p {
    font-size: 1.1em;
    font-weight: 600;
}