/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* container query */

.spotlight-cards {
    container-type: inline-size;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* row */

.spotlight-cards__row {
    display: flex;
    gap: 36px;
    justify-content: space-between;
    align-items: center;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* text side */

.spotlight-cards__text-side {
    flex: 0 0 25%;
}

.spotlight-cards__header.section-header {
    margin-bottom: 15px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* cards side */

.spotlight-cards__cards {
    flex: 0 0 calc(75% - 36px);

    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: center;
    align-items: stretch;
}

.spotlight-cards__card {
    position: relative;
    flex: 0 0 calc((100% - (36px * 2)) / 3);
    border-radius: var(--box-border-radius-sm);
    overflow: hidden;
}

/*background*/
.spotlight-cards__card__image,
.spotlight-cards__card__image img {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.spotlight-cards__card__gradient.background-gradient {
    top: unset;
    bottom: 0;
    height: 40%;
    background: var(--blue-overlay-gradient);
}

/*title*/
.spotlight-cards__card__content {
    min-height: 350px;
    padding: 25px;
    display: flex;
    align-items: end;
}

.spotlight-cards__card__title {
    color: var(--white);
    font-size: 22px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* TIGHT 3-COLUMNS (SIDEBAR ON DESKTOP) */

@container (max-width: 1100px) {
    .spotlight-cards__cards {
        gap: 22px;
    }

    .spotlight-cards__card {
        flex: 0 0 calc((100% - (22px * 2)) / 3);
    }

    .spotlight-cards__card__content {
        padding: 20px;
    }

    .spotlight-cards__card__title {
        font-size: 20px;
    }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* STACKED VIEW (MOBILE) */

@container (max-width: 915px) {
    /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
    /* row */
    .spotlight-cards__row {
        flex-direction: column;
        gap: 32px;
        align-items: start;
    }

    /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
    /* text side */
    .spotlight-cards__text-side {
        flex: 0 0 100%;
    }

    /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
    /* cards side */
    .spotlight-cards__cards {
        flex: 0 0 100%;
        justify-content: start;
        gap: 16px;
    }

    .spotlight-cards__card {
        flex: 0 0 calc((100% - 16px) / 2);
    }

    .spotlight-cards__card__content {
        min-height: 280px;
        padding: 25px;
    }

    .spotlight-cards__card__title {
        font-size: 22px;
    }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* NARROW VIEW (SINGLE COLUMN) */

@container (max-width: 576px) {
    .spotlight-cards__card {
        flex: 0 0 100%;
    }

    .spotlight-cards__card__content {
        min-height: 250px;
    }
}
