/* MAS Services Two-Row Grid
   Keeps the original service card design, only changes the services list from one-line carousel to a clean grid. */
.services-section .mas-services-two-row-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:22px 18px;
    margin-top:34px;
    align-items:stretch;
}
.services-section .mas-services-two-row-grid .card-parent{
    padding:0;
    min-width:0;
    height:100%;
}
.services-section .mas-services-two-row-grid .card-inner-row{
    height:100%;
    min-height:355px;
    display:flex;
    width:100%;
}
.services-section .mas-services-two-row-grid .card.featured.to-top-left{
    min-height:355px;
    padding:48px 24px 46px;
}
.services-section .mas-services-two-row-grid .card.featured.to-top-left h4.heading{
    font-size:22px;
    line-height:1.25;
}
.services-section .mas-services-two-row-grid .heading-wrapper{
    margin-bottom:16px;
}
.services-section .mas-services-two-row-grid .project-button{
    margin-top:auto;
}
.services-section .mas-services-two-row-grid .card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.services-section .mas-services-two-row-grid + .owl-nav,
.services-section .mas-services-two-row-grid + .owl-dots,
.services-section .service-boxes-static .owl-nav,
.services-section .service-boxes-static .owl-dots{
    display:none!important;
}
@media (max-width:1199px){
    .services-section .mas-services-two-row-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}
@media (max-width:991px){
    .services-section .mas-services-two-row-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:18px;
    }
    .services-section .mas-services-two-row-grid .card-inner-row,
    .services-section .mas-services-two-row-grid .card.featured.to-top-left{
        min-height:330px;
    }
}
@media (max-width:575px){
    .services-section .mas-services-two-row-grid{
        grid-template-columns:1fr;
        gap:16px;
    }
    .services-section .mas-services-two-row-grid .card.featured.to-top-left{
        padding:42px 24px 42px;
    }
}