.block--featured-projects{
    padding:96px 0px 96px 0px;
    overflow: hidden;
    & .is-layout-grid{
        gap: 0;
    }
    & h2{
        margin-top: 0;
        line-height: 72px;
    }
    & .img-bg{
        width: 100%;
        height: 420px;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        border-radius: 20px;
        position: relative;
        & .abs-logo{
            position: absolute;
            bottom: 40px;
            right: 26px;
        }
        
    }
    & h4{
        color: var(--Blue);        
        font-family: var(--font-Plus-Jakarta-Sans);
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px;
        margin-top: 16px;
    }
    & .inner-project-slider{
        margin-top: 72px;
        position: relative;        
        & .swiper-initialized{
            overflow: visible;
            position: relative;
        }        
        & .img-top-row{
            display: grid;
            justify-content: space-between;
            padding: 24px;
            grid-template-columns: auto 50px;

            & .arrow{
                & span{
                    display: flex;                    
                    align-items: center;
                    border-radius: 100px;
                    background: var(--Light-Blue, #58C3FF);
                    transition: 0.75s all ease;
                    width: 64px;
                    height: 64px;
                    justify-content: center;
                    &:hover {
                        transform: rotate(45deg);
                        background: var(--Yellow);
                    }
                }
            }

            & .tags{
                display: inline-block;
                gap: 8px;                                        
                & p{
                    border-radius: 100px;
                    border: 1px solid var(--Gradient-4, rgba(255, 255, 255, 0.50));
                    background: rgba(255, 255, 255, 0.30);
                    backdrop-filter: blur(2px);
                    padding: 10px 32px;
                    color: var(--Cream);
                    font-family: var(--font-DM-Sans);
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 24px;
                    width: fit-content;
                    display: inline-block;
                    margin-bottom: 10px;
                    margin-right: 10px;
                }
            }
        }
    }
}
@media only screen and (max-width: 768px) {
    .block--featured-projects{
        padding: 70px 0px;
        & h2{
            line-height: 120%;
        }
        .wp-block-buttons.is-content-justification-right{
            justify-content: flex-start;
        }
        & .img-bg {         
            height: 230px;
        }
        & .inner-project-slider {
            margin-top: 40px;           
        }
        & h4 {            
            font-size: 18px;
            line-height: 20px;            
            margin-top: 8px;
        }
        & .abs-logo{
            width: 30px;
        }
    }
}