/*------------------------------------*\
    
    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;
    color: var(--dark);
}

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

.bg-light-green {
    background: var(--pale-blue);
    color: #101010;
}

.bg-light-gray {

    background: var(--light-gray);
    color: #101010;
}

.wysiwyg .btn {
    margin-top: 10px;
}


/* table-section */

.wysiwyg-table {
    padding: 90px 0;
}

.wysiwyg-table h2 {
    padding: 0 0 25px;
}


.wysiwyg .images-container{
    position: relative;
    display: flex;
    flex-direction: column;
}

.wysiwyg .image-item{
    display: block;
    width: 100%;
    height: 150px;
    padding: 20px;
    text-decoration: none;
    border-bottom: none;
    background: transparent;
}


.wysiwyg .image-item img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}



@media (min-width: 640px) and (max-width:1100px) {
    .wysiwyg__content table {
        min-width: 100%;
    }

    .wysiwyg .images-container{        
        flex-direction: row;
    }

    .wysiwyg .image-item{
        display: block;
        width: 33%;
        height: 200px;
    }

}


@media (min-width: 1200px){

    .wysiwyg .images-container{
        position: relative;
        display: flex;
        flex-direction: row;
    }

    .wysiwyg .image-item{
        display: block;
        width: 33%;
        height: 320px;
    }


    .wysiwyg .image-item:hover{
        background: transparent;
    }

}