/**
 * Package Video Block Styles
 * Responsive YouTube video embed
 */

.package-video-wrapper {
    width: 100%;
    margin: 0;
}

.package-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
}

.package-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .package-video-container {
        border-radius: 4px;
    }
}
