/* YouTube Video Embedding Styles */

.youtube-video-embed {
    margin-bottom: 2em;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.youtube-video-embed .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background-color: #000;
}

.youtube-video-embed .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .youtube-video-embed {
        margin-bottom: 1.5em;
    }
}

@media (max-width: 480px) {
    .youtube-video-embed {
        margin-bottom: 1em;
    }
}
