.block--insights-section-cards{
    border-bottom: 1px solid #BABBB4;
    padding: 160px 0px;
    position: relative;
    @media screen and (max-width: 768px){
        padding: 80px 0px;
    }
    & .top-left{
        top: 0;
        left: 0;
        position: absolute;
        max-width: 100%;
        pointer-events: none;
    }
    & .bottom-left{
        position: absolute;
        max-width: 100%;
        bottom: 0;
        left:0;
        pointer-events: none;
    }
    & .wp-block-heading mark:nth-child(1){
        font-family: var(--wp--preset--font-family--area) !important;
        text-transform: none;
    } 
    & .insight-card-section{
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 50px;
        @media screen and (max-width: 768px){
            grid-template-columns: 1fr;
        }
    }
    & .flex-card-holder{
        display: flex;
        flex-direction: column;
        gap: 16px;
        & .flex-card{
            border: 0.5px solid #B2CFFF;
            background: #1B1C30;
            box-shadow: 0px 0px 20px 0px rgba(154, 153, 255, 0.20);
            backdrop-filter: blur(210px);
            display: flex;
            padding: 24px 32px;
            gap: 16px;
            align-items: flex-start;            
            &:hover{
                & img{
                    scale: 1.2;
                }
            }
            
            & img{
                transition: 0.7s ease all;                
            }
            & h4{
                color: #F4F3EC;                
                font-family: var(--wp--preset--font-family--area);
                font-size: 20px;
                font-style: normal;
                font-weight: 800;
                line-height: 140%; /* 28px */
                letter-spacing: 0.2px;
                margin-bottom: 8px;
            }
            & p{
                color: #BABBB4;
                font-family: var(--wp--preset--font-family--area);
                font-size: 16px;
                font-style: normal;
                font-weight: 100;
                line-height: 150%; /* 24px */
                margin-bottom: 0;
            }
        }
    }
}