/* ========================================
   VIDEO EMBED (YouTube/Vimeo)
   ======================================== */

.video-embed {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: var(--spacing-md) auto;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile */
@media (max-width: 767px) {
    .video-embed {
        margin: var(--spacing-sm) calc(-1 * var(--spacing-sm));
        width: calc(100% + 2 * var(--spacing-sm));
        max-width: none;
        border-radius: 0;
    }
}
