/* Promotional Videos CSS */

.promo-video-container {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.promo-video-container h4 {
    font-size: 1.1rem;
    margin-top: 0;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.promo-video-container p {
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.promo-video-container .youtube-container {
    flex-grow: 1;
}

.promo-video-container .youtube-viewer-container {
    margin-bottom: 0 !important;
}

.promotional-videos-row {
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .promotional-videos-row [class*='col-']:not(:last-child) .promo-video-container {
        margin-bottom: 20px;
    }
}