.highlight-items .container {
    max-width: 880px;
}

.highlight-items .container > * {
    margin: 3rem 0;
}

.highlight-items .card-slide {
    gap: 2rem;
    border-radius: 16px;
    box-shadow: 0px 14px 15px 0px rgba(124, 124, 124, 0.06),
        0px 27px 82px 0px rgba(124, 124, 124, 0.28);
    display: flex;
    background-color: white;
    height: 270px;
    justify-content: space-between;
}

.highlight-items .card-slide.img-bg-w {
    padding: 0 16px 0 36px;
}

.highlight-items .highlight {
    color: var(--secondary-action);
}

.card-slide .info {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    align-items: start;
    justify-content: space-between;
    max-width: 400px;
}

.card-slide .info .subtitle {
    color: var(--gray);
}

.card-slide .image {
    overflow: hidden;
}

.card-slide .image img {
    width: 100%;
    height: 100%;
    max-width: 375px;
    object-fit: cover;
    object-position: top;
}

@media (max-width: 480px) {
    h2 {
        margin-top: 1rem;
    }

    .highlight-items .card-slide  {
        display: flex;
        flex-direction: column;
        padding: 0.5rem;
        height: auto;
    }

    .highlight-items .card-slide {
        gap: 0;
        padding: 0;
    }

    .card-slide .info {
        padding: 1rem;
    }

    .highlight-items .card-slide:not(.img-bg-w) .info {
        padding: 2.5rem;
    }


}
