/*------------------------------------*\
    
    Full-Width Image + Text Block Customizations - Global Styling

    The styles you add to this file will be applied to the 'Full-Width Image + Text' block. 
    If there is any reasons why you would need to style this separately,
    please create a block-specific stylesheet for it (don't forget to register that block-specific stylesheet in acf-starter-blocks.php)

\*------------------------------------*/

.full-width-image-text {
    position: relative;
}

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

.full-width-image-text__content {
    padding: 0;
    position: relative;
    z-index: 2;
}

.full-width-image-text__content .btn-group {
    justify-content: center;
}

.full-width-image-text__headline {
    margin-top: 0;
}

.full-width-image-text__description :last-child {
    margin-bottom: 0;
}

.full-width-image-text--direct-overlay :where(h2,h3,h4,h5,h6,.h2,.h3,.h4,.h5,.h6,p,ul li,ol li) {
    color: var(--color-white);
}

.full-width-image-text--direct-overlay a:not(.btn),
.full-width-image-text--direct-overlay .sub-heading p  {
    color: var(--color-primary-light);
}

.full-width-image-text--direct-overlay:before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 57, 122, 0.80) 0%, rgba(0, 7, 15, 0.80) 100%);
    display: block;
}

.full-width-image-text--direct-overlay .btn-outline {
    border-color: var(--color-white);
    color: var(--color-white);
}

.full-width-image-text__content {
    max-width: 877px;
    margin: 0 auto;
}

@media ( min-width: 1200px ) {
    .full-width-image-text--direct-overlay .btn-outline:hover {
        background: var(--color-white);
        color: var(--color-primary);
    }

    .full-width-image-text--direct-overlay a:not(.btn):hover {
        color: var(--color-secondary);
    }
}
