/*
* @author  Agence Dn'D <contact@dnd.fr>
* @license https://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
* @link    https://www.dnd.fr/
*/

.section-image-with-text-overlay {
    &.sgenshop-custom {
        .text-overlay__inner {
            padding-bottom: 40px;
            @media (min-width: 767.98px) {
                padding-bottom: 80px;
            }

            svg {
                margin-bottom: 30px;
            }

            .text-overlay__title {
                margin-bottom: 15px;
                font-size: var(--title-size-h2-mobile);
                text-transform: uppercase;
                @media (min-width: 767.98px) {
                    margin-bottom: 20px;
                    font-size: var(--title-size-h2-desktop);
                }
            }

            .text-overlay__rte {
                @media (min-width: 767.98px) {
                    margin-bottom: 40px;
                    font-size: var(--base-text-size-medium);
                }
            }
        }

        .image-overlay {
            @media (min-width: 767.98px) {
                overflow: hidden;
            }

            img {
                transition: transform 1.8s ease;
            }

            &:hover {
                img {
                    transform: scale(1.1);
                }
            }
        }
    }
}
