/* hero START */
.hero-cta {
    color: #fff;
    position: relative;
    z-index: 1;
}

.hero-cta__inner {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    max-width: 53rem;
    min-height: 68rem;
    padding-block: 6rem;
    position: relative;
    z-index: 1;
}

.hero-cta__inner::after {
    content: "";
    display: block;
    width: 100dvw;
    height: 100%;
    background: #000;
    opacity: 0.3;
    position: absolute;
    top: 0;
    right: -5rem;
    z-index: -1;
}

.hero-cta__content {
    gap: 3rem;
}

.hero-cta__title {
    color: inherit;
}

.hero-cta__btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 2rem;
}

.hero-cta__media {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-cta__media:has(video)::before {
    content: "";
    display: block;
    background: #000;
    opacity: 0.25;
    position: absolute;
    inset: 0;
    z-index: 1;
}

@media screen and (max-width: 575.9px) {
    .hero-cta__inner {
        max-width: 100%;
        padding-block: 10rem;
        min-height: unset;
    }

    .hero-cta__inner::after {
        right: -2rem;
    }
}
/* hero END */