@media only screen and (min-width: 320px) {
    :root{
        --box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        --section-border-radius: 40px;       
        --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    .gb-container.color-section{
        border-radius: var(--section-border-radius);
    }
    /*Grey box*/
    .grey-box{
        background:var(--grey);
        padding:40px 20px;
        border-radius:var(--section-border-radius);
    }
    /*Number lift*/
    .color-section .number-lift-container, .editor-styles-wrapper .color-section .number-lift-container{
        background:var(--green);
        padding:80px;

    }
    .number-lift, .editor-styles-wrapper .number-lift{
        font-size:90px;
        font-family:var(--title-font);
        color:white;
        text-align:center;
        line-height:1em;
    }
    /*Play icon*/
    figure:has(> img.add-play-icon){
        display:flex;
        align-items:center;
        justify-content:center;
    }
    figure:has(> img.add-play-icon):after{
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='106' height='109' viewBox='0 0 106 109'%3E%3Cdefs%3E%3CclipPath%3E%3Crect data-name='Rectangle 2765' width='106' height='109' transform='translate(-0.141 0.392)' fill='%23fd6034'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg data-name='Group 373' transform='translate(-949.9 -4214)'%3E%3Cg data-name='Group 327' transform='translate(950.042 4213.608)'%3E%3Cg data-name='Group 269' transform='translate(0 0)' clip-path='url(%23clip-path)'%3E%3Cpath data-name='Path 175' d='M63.254,108.644a137.6,137.6,0,0,1-20.675,0C18.908,106.511,2.049,90.026.286,65.139a197.932,197.932,0,0,1,0-21.267C2.049,19.7,19.941,3.044,42.579.367,47.714-.24,58.1.013,63.254.367c23.687,1.625,41.246,19.687,42.293,43.5.233,5.311.223,15.955,0,21.267-1.047,24.887-18.436,40.845-42.293,43.5' transform='translate(-0.562 0.376)' fill='%23fd6034'/%3E%3C/g%3E%3C/g%3E%3Cpath data-name='Polygon 3' d='M20.737,0,41.474,35.781H0Z' transform='translate(1026.89 4248) rotate(90)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display:inline-block;
        content:'';
        width:50px;
        height:50px;
        margin-left:-25px;
        z-index:2;
        transition: all 0.6s ease;
    }
    .digi-magazine-lift:hover figure:has(> img.add-play-icon):after{
        transform: scale(1.1);
    }
    .digi-magazine-lift:hover .uppercase{
        text-decoration: underline;
    }

    /*Contact info card*/
    .contact-info-card-text, .editor-styles-wrapper .contact-info-card-text{
        font-size:12px;
    }
}
@media only screen and (min-width: 520px) {
   
}
@media only screen and (min-width: 768px) {
    
}
@media only screen and (min-width: 990px) {
    figure:has(> img.add-play-icon):after{
        width:100px;
        height:100px;
    }
}
@media only screen and (min-width: 1280px) {
    .number-lift, .editor-styles-wrapper .number-lift{
        font-size:120px;
        line-height:1em;
    }
    /*Contact info card*/
    .contact-info-card-text, .editor-styles-wrapper .contact-info-card-text{
        font-size:14px;
    }
}
/* Reduced motion support for video-image-container */
@media (prefers-reduced-motion: reduce) {
    
}