.insights-outer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--dark-navy);
}

.insights {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 48px 0;
    width: 100%;
    background-color: transparent;
}

.embla-insights {
    overflow: visible;
}

.insights__text {
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.insights__text--title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.64px;
}

.insights__text--subtitle {
    line-clamp: 1;
    -webkit-line-clamp: 1;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.insights__slide {
    flex: 0 0 80%;
    padding: 0 8px;

    overflow: hidden;
    height: 500px;
    border-radius: 32px;
}

.insights__slide-background {
    width: 100%;
    height: 500px;
    border-radius: 32px;
}

.insights__slide a {
    color: var(--white);
}

.insights__slide-content {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    width: 100%;
    border-radius: 32px;
    background: var(--white-32);
}

.insights__slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.insights__slide-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin: auto 0 0;
    height: 50%;
    padding: 32px;
    z-index: 3;
    background: linear-gradient(180deg,
            var(--black-0) 3.64%,
            var(--black-16) 100%);
}

.insights__slide-blur {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background: var(--dark-navy-16);

    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);

    mask-image: linear-gradient(to bottom,
            var(--black-0) 40%,
            var(--black) 60%);
}

.insights__slide-button {
    margin: 16px 0 0;
    width: 100%;
    height: 48px;
    background-color: var(--white);
    color: var(--dark-navy) !important;
}

.insights__controls {
    display: none;
}

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

    .insights__text--title {
        font-size: 32px;
    }

    .embla-insights__container {
        gap: 24px;
    }

    .insights__slide {
        flex: 0 0 50%;
        padding: 0 12px;
    }
}

@media (min-width: 1200px) {
    .insights-outer {
        padding: 104px 72px;
    }

    .insights {
        gap: 48px;
        padding: 72px;
        width: 100%;
        border-radius: 64px;
        border: 1px solid var(--white);
        background: var(--white-8);
        transform: scale(0.9);
        transition: transform 1s ease-out;
    }

    .insights.animate {
        transform: scale(1);
    }

    .insights__text--title {
        font-size: 32px;
    }

    .insights__slide-button {
        height: 56px;
        margin: 32px 0 0;
    }

    .insights__text {
        line-clamp: 3;
        -webkit-line-clamp: 3;
    }

    .insights__text--subtitle {
        line-clamp: 1;
        -webkit-line-clamp: 1;
    }

    .insights__controls {
        left: -32px;
        display: flex;
        width: calc(100% + 64px);
    }

    .insights__button {
        background-color: var(--white);
    }

    .insights__slide {
        flex: 0 0 33.33%;
    }
}

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

    .insights__slide {
        flex: 0 0 25%;
    }
}