.txt-gal__item:has(iframe) {
    position: relative;
    padding-top: 56%;
}
.txt-row:has(iframe) {
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.txt-row__img:has(iframe) {
    position: relative;
    padding-top: 56%;
    width: auto;
}
.txt-row__img:has(iframe) iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.txt-gal__item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .txt-row:has(iframe) {
        grid-template-columns: 4fr;
    }
}