.insightsCarouselV2 {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: var(--spacer-arrow);
    margin-inline: calc(-1 * var(--gutter));
}

    .insightsCarouselV2 .insight-card {
        position: relative;
        flex: 0 0 436px;
        max-width: 436px;
        height: 449px;
        overflow: hidden;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-end;
        isolation: isolate;
        text-decoration: none;
        color: inherit;
        cursor: pointer;
    }

    .insightsCarouselV2 .ins-track .insight-card:first-child {
        margin-left: var(--gutter);
    }

    .insightsCarouselV2 .tag {
        display: inline-flex;
        align-items: center;
        height: 24px;
        padding: 4px 8px;
        background: var(--bg-primary-subtle);
        color: var(--title-primary-strong);
        font-size: 14px;
        line-height: 14px;
        font-weight: var(--fw-medium);
        font-family: var(--font-tpSans-medium);
        letter-spacing: -0.14px;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .insightsCarouselV2 .insight-card__img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .insightsCarouselV2 .insight-card__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 60%);
        opacity: 0.6;
        z-index: 1;
        transition: opacity var(--t-base) var(--ease);
    }

    .insightsCarouselV2 .insight-card:hover .insight-card__overlay {
        opacity: 0.7;
    }

    .insightsCarouselV2 .insight-card__top {
        position: relative;
        z-index: 3;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .insightsCarouselV2 .insight-card__arrow {
        position: relative;
        z-index: 3;
        width: 64px;
        height: 64px;
        color: #fff;
        transition: transform var(--t-base) var(--ease);
        flex: none;
    }

        .insightsCarouselV2 .insight-card__arrow svg {
            width: 100%;
            height: 100%;
        }

            .insightsCarouselV2 .insight-card__arrow svg path {
                stroke-width: 1;
            }

    .insightsCarouselV2 .insight-card:hover .insight-card__arrow {
        transform: rotate(-45deg);
    }

    .insightsCarouselV2 .insight-card__text {
        position: relative;
        z-index: 2;
        flex: 1 1 0;
        min-height: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .insightsCarouselV2 .insight-card__title {
        font-weight: var(--fw-light);
        font-family: var(--font-tpSans-light);
        color: var(--title-inverse);
    }

@media (max-width: 767px) {
    .insightsCarouselV2 .insight-card {
        flex: 0 0 84%;
        max-width: 84%;
    }
}
