/* === Custom Block Styling === */
.heroBlock{
    padding: var(--CB-padding-top) var(--CB-padding-right) var(--CB-padding-bottom) var(--CB-padding-left);
    margin: var(--CB-margin-top) var(--CB-margin-bottom);
    background-color: var(--CB-background-color);
    background-image: var(--CB-background-image);
    background-position: var(--CB-background-position);
    background-size: cover;
}


.hero__topImage{
    height: 50svh;
    background-position: center;
    background-size: cover;
}

.hero__title{
    margin-top: 64px;
}

.hero__rightColumn{
    margin-top: -128px;
}

.hero__rightImageWrapper{
    aspect-ratio: 2;
    background-size: cover;
    background-position: center;
    margin-bottom: 40px;
    transform: translateY(-75px);
}

.hero__rightTextWrapper p:first-of-type{
    margin-bottom: 40px;
}
.hero__rightTextWrapper .wp-block-buttons{
    margin-bottom: 40px;
}




.hero__bottomRightImageWrapper{
    padding-left: 96px;
    transform: translateY(-200px);
}
.hero__bottomRightImageWrapper::after{
    content: '';
    background-position: center;
    background-size: cover;
    aspect-ratio: 1/1;
    position: absolute;
    left: 0;
    top: 0;
    width: 192px;
    height: 192px;
    z-index: 10;
    margin-top: 48px;
}


.hero__bottomLeftImageWrapper{
    width: 67%;
    margin-bottom: 48px;
    transform: translateY(-128px);
}
.hero__bottomLeftTextWrapper p,
.hero__bottom_leftTextWrapper h2{
    margin-bottom: 25px;
}


.hero__outlineLink{
    background-color: var(--FC-secondary-color) !important;
}
.hero__outlineLink:hover{
    color: var(--FC-black) !important;
}

@media screen and (max-width: 991.98px){
    .hero__rightImageWrapper,
    .hero__hide{
        display: none;
    }
    .hero__bottomLeftImageWrapper{
        transform: translateY(0px);
    }
    .hero__rightColumn{
        margin-top: 0px;
    }
    .heroBlock{
        padding-bottom: 96px !important;
    }
}

@media screen and (max-width: 575px){
    .hero__bottomLeftImageWrapper{
        width: 100%;
    }
}