.mlos-videos {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    width: 100%;
    padding: 48px 0;
    gap: 32px;

    background-color: var(--white);
}

.mlos-videos__title {
    color: var(--dark-navy);
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.32px;
}

.mlos-videos__slide {
    flex: 0 0 280px;
    aspect-ratio: 9 / 16;

    margin: 0 0 0 24px;

    border: 1px solid var(--light-navy);
    border-radius: 32px;

    background: var(--white);
    cursor: pointer;
}

.mlos-videos__slide-card {
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%;
}

.mlos-videos__slide-card-background {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.mlos-videos__slide-card-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 100px;
    background: var(--black-72);
}

.mlos-videos__slide-card-icon {
    width: 56px;
    height: 56px;
}

.mlos-videos__button {
    background-color: var(--dark-navy);
}

.mlos-videos__button:hover {
    cursor: pointer;
}

.mlos-videos__controls {
    display: none;
}

@media (min-width: 700px) {
    .mlos-videos {
        padding: 72px 0;
        gap: 48px;
    }

    .mlos-videos__title {
        font-size: 32px;
        line-height: 160%;
        letter-spacing: 0.96px;
    }

    .mlos-videos__slide {
        flex: 0 0 300px;
    }
}

@media (min-width: 1200px) {
    .mlos-videos {
        padding: 96px 0;
    }

    .mlos-videos__title {
        font-size: 32px;
    }

    .mlos-videos__slide {
        margin: 0 0 0 8px;
        padding: 16px 8px;
        border: unset;
    }

    .mlos-videos__slide-card {
        border: 1px solid var(--light-navy);
        border-radius: 32px;
    }

    .mlos-videos__slide:hover .mlos-videos__slide-card {
        transition: transform 0.3s ease;
        transform: scale(1.05) !important;
    }

    .mlos-videos__controls {
        display: flex;
        height: 100%;
    }

    .mlos-videos__button-wrapper {
        display: flex;
        align-items: center;
        opacity: 0;
        height: 100%;
        width: 300px;
        pointer-events: all;
    }

    .mlos-videos__button-wrapper:hover {
        opacity: 1;
        transition: all 0.3s ease-in-out;
    }

    .mlos-videos__button-wrapper--prev {
        justify-content: flex-start;
        padding: 0 0 0 32px;
        background: linear-gradient(to right, var(--white-56) 10%, var(--white-0) 80%);
    }
    
    .mlos-videos__button-wrapper--next {
        justify-content: flex-end;
        padding: 0 32px 0 0;
        background: linear-gradient(to left, var(--white-56) 10%, var(--white-0) 80%);
    }
}

@media (min-width: 1800px) {
    .mlos-videos__title {
        font-size: 48px;
    }
}