/* MAP & REGIONS */
.hero__regions {
    position: absolute;
    left: 50%;
    top: var(--unit-24);
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-default);
    width: max-content;
    z-index: 2;
}

.hero__regions li {
    list-style-type: none;
    flex-shrink: 0;
}

.hero__regions li>* {
    display: block;
    text-transform: uppercase;
    font-size: var(--font-14);
    padding: calc(var(--spacing-default) / 2) var(--spacing-default);
    font-weight: var(--font-bold);
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: var(--border-radius-small);
}

.hero__regions li[data-active]>* {
    background-color: var(--color-primary);
}

/* REGIONS LIST */
/* .region__name {
    line-height: 1.25;
} */

.region__icon {
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    width: calc(75 * var(--unit-1));
    height: calc(75 * var(--unit-1));
}

/* .region__icon img {
    height: 100%;
    width: auto;
} */

/* .region__name[style*="--line-clamp"] {
    font-size: var(--font-size, var(--font-32));
} */

/* END REGIONS LIST */

/* GOOGLE MAP*/
.section--google-map {
    padding-bottom: 0;
}

.img-map-lines {
    margin-top: var(--unit-50);
    width: 100%;
}

/* END GOOGLE MAP*/

.video-container {
    aspect-ratio: 5/4;
    overflow: hidden;
    height: calc(100% - 1px);
    width: calc(100% - 1px);
}

.video-container > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LARGE ONLY */
@media (min-width: 64rem) {
    .hero__regions li>* {
        transition: var(--transition);
    }

    .hero__regions li>*:hover {
        background-color: var(--color-primary);
    }

    /* .region__name[style*="--line-clamp"] {
        height: calc(var(--line-height) * var(--font-size, var(--font-32)) * var(--line-clamp));
    } */
}

/* END LARGE ONLY */

/* SMALL ONLY */
@media (max-width: 63.9375rem) {
    .hero__regions {
        overflow-x: auto;
        width: 100%;
        padding: 0 var(--spacing-default);
    }
}
/* END SMALL ONLY */
/* END MAP & REGIONS */