.studio-block__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.studio-block-video-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    max-height: 625px;
}
.studio-block-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1200px) {
    .studio-block__list {
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .studio-block__list {
        grid-template-columns: 1fr;
    }
    .studio-block-video-wrapper {
        max-height: 430px;
    }
}