.trzictv-video-grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 10px), 1fr));
}

.trzictv-video-iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 320px;
}

@media screen and (max-width: 768px) {
    .trzictv-video-grid > .trzictv-video {
        flex-basis: 100%; /* Ensure it takes full width on small screens */
    }
}


