/* #region YouTube Video Section */
.youtube-video-section {
    padding: 4rem 2rem;
    background: var(--color-background);
}

.youtube-video-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.youtube-video-section .video-header {
    text-align: center;
    margin-bottom: 3rem;
}

.youtube-video-section .video-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-tertiary);
    margin-bottom: 1rem;
}

.youtube-video-section .video-header p {
    font-size: 1.25rem;
    color: var(--color-gray-dark);
}

.youtube-video-section .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-card-strong);
    background: var(--color-tertiary);
}

.youtube-video-section .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* #endregion */

/* #region Responsive */
@media (max-width: 768px) {
    .youtube-video-section {
        padding: 3rem 1.5rem;
    }

    .youtube-video-section .video-header h2 {
        font-size: 2rem;
    }

    .youtube-video-section .video-header p {
        font-size: 1rem;
    }

    .youtube-video-section .video-wrapper {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .youtube-video-section {
        padding: 2.5rem 1rem;
    }

    .youtube-video-section .video-header {
        margin-bottom: 2rem;
    }

    .youtube-video-section .video-header h2 {
        font-size: 1.75rem;
    }

    .youtube-video-section .video-wrapper {
        border-radius: 8px;
    }
}

/* #endregion */