
.static-video-tiles-row {
    display: flex;
    justify-content: space-between; 
    gap: 40px; 
    margin-bottom: 40px; 
    max-width: 60%; 
    margin-left: auto; 
    margin-right: auto; 
}


.static-video-tiles-row:last-child {
    margin-bottom: 0;
}

.static-video-tile {
    flex: 1; 
    min-width: 0; 
    
    border-radius: 4px; 
    overflow: hidden; 
    display: flex;
    flex-direction: column;
}

.static-video-tile iframe {
    width: 100%;
    aspect-ratio: 16 / 9; 
    height: auto; 
    border: none; 
    display: block; 
}


.static-video-tile .text-content {
    padding: 15px;
    flex-grow: 1; 
}


.static-video-tile h4 {
    margin-top: 1rem; 
    margin-bottom: 1rem; 
    color: #1f1f1f;
}

.static-video-tile p {
    margin: 0; 
    font-size: 0.9em;
    line-height: 1.4;
    color: #1f1f1f; 
}


@media (max-width: 768px) {
    .static-video-tiles-row {
        flex-direction: column; 
        margin-bottom: 0; 
        max-width: 90%; 
    }
    .static-video-tile {
        margin-bottom: 40px; 
    }
    .static-video-tile:last-child {
         margin-bottom: 0;
    }
}
