.studio-section{
    padding:120px 0;
    background:#070707;
}

.studio-section .section-tag{
    display:block;
    margin-bottom:20px;
}

.studio-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.studio-description{
    margin-top:24px;
    color:#bdbdbd;
    font-size:18px;
    line-height:1.8;
    max-width:650px;
}

.studio-features{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.studio-feature{
    color:#d4a85f;
    font-size:16px;
}

.studio-gallery{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:15px;
    min-height:500px;
}

.gallery-main{
    background:#111;
    border-radius:20px;
    overflow:hidden;
}

.gallery-side{
    display:grid;
    gap:15px;
}

.gallery-small{
    background:#111;
    border-radius:20px;
    overflow:hidden;
}

.studio-content .btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:220px;
    margin-top:24px;
}

@media (max-width:768px){

    .studio-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .studio-section .section-tag{
        margin-bottom:24px;
    }

    .studio-section .section-title{
        font-size:52px;
        line-height:1.05;
    }

    .studio-description{
        font-size:17px;
        line-height:1.8;
    }

    .studio-gallery{
        grid-template-columns:2fr 1fr;
        min-height:350px;
    }

}

.gallery-main img,
.gallery-small img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:0.4s ease;
}

.gallery-main:hover img,
.gallery-small:hover img{
    transform:scale(1.04);
}