/*------------------------------------*\
    
    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;
}

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

.bg-beige {
    background: var(--beige);
}

.bg-dark-brown {
    background: var(--dark-brown);
    color: var(--white);
}

.bg-dark-brown h2,
.bg-dark-brown h3,
.bg-dark-brown h4,
.bg-dark-brown h5,
.bg-dark-brown h6 {
    color: var(--white);
}

.bg-dark-brown .sub-heading {
    color: var(--white);
}

.wysiwyg p+h3,
.wysiwyg .alignright+h3 {
    margin-top: 35px;
}

.wysiwyg p+h4,
.wysiwyg .alignright+h4 {
    margin-top: 30px;
}




.heading-icons {
    margin-bottom: 18px;
}

.heading-icons a {
    display: flex;
    align-items: center;
    gap: 0 4px;
    color: var(--font-gray);
    font-weight: 400;
    width: max-content;
}

.heading-icons a i {
    font-size: 13px;
    color: var(--pink);
    font-weight: normal;
    transform: rotate(-50deg);
}

@media (min-width: 768px) {
    .heading-icons {
        margin-bottom: 25px;
    }

    .heading-icons a {
        gap: 0 10px;
    }

    .heading-icons a i {
        font-size: 20px;
    }

    .wysiwyg p+h3,
    .wysiwyg .alignright+h3 {
        margin-top: 50px;
    }

    .wysiwyg p+h4,
    .wysiwyg .alignright+h4 {
        margin-top: 30px;
    }
}

@media (min-width: 1200px) {
    .heading-icons a:hover {
        color: var(--brown);
    }

    .heading-icons a i {
        font-size: 28px;
    }

    .wysiwyg p+h3,
    .wysiwyg .alignright+h3 {
        margin-top: 70px;
    }

    .wysiwyg p+h4,
    .wysiwyg .alignright+h4 {
        margin-top: 45px;
    }
}

@media (min-width: 1600px) {
    .wysiwyg__wrapper {
        max-width: 1488px;
        margin: 0 auto;
    }

    .heading-icons {
        margin-bottom: 37px;
    }

    .wysiwyg p+h3,
    .wysiwyg .alignright+h3 {
        margin-top: 90px;
    }

    .wysiwyg p+h4,
    .wysiwyg .alignright+h4 {
        margin-top: 50px;
    }
}