/*------------------------------------*\
    
    WebFX WYSIWYG Customizations - Global styling for all ACF WYSIWYG's

    Add custom WYSIWYG styling to this file if it should be applied to all ACF WYSIWYG's on the site
    Otherwise, put your block-specific styles in individual block stylesheets

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

.wysiwyg { 
    position: relative;
}

.wysiwyg.bg-white:has(+ .cta) {
    padding-bottom: 0;
}

.bg-white {
    background: #ffffff;
}

.bg-light-blue {
    background: var(--light-blue);
}

.bg-navy-blue {
    background: var(--navy);
    color: var(--white);
}

.bg-navy-blue h1,
.bg-navy-blue h2,
.bg-navy-blue h3,
.bg-navy-blue h4,
.bg-navy-blue h5,
.bg-navy-blue .sub-heading {
    color: var(--white);
}

.bg-navy-blue p a:not(.btn) {
    color: var(--white);
    text-decoration-color: var(--white);
}

.wysiwyg p + h3,
.wysiwyg p + h4 {
    margin-top: 25px;
}

@media (min-width: 1200px) {
    .wysiwyg p + h3,
    .wysiwyg p + h4 {
        margin-top: 35px;
    }
}

@media (min-width: 1200px) {
    .bg-navy-blue p a:hover:not(.btn) {
        color: var(--medium-blue);
        text-decoration-color: var(--medium-blue);
    } 

    .wysiwyg-btn-group {
        width: calc(100% + 90px);
    }
}