/* Video Section */
.video-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0%, rgba(40, 58, 151, 0.01) 93.71%);
    padding: 54px 0 var(--space-4xl);
}

.video-section__inner {
    max-width: var(--narrow-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 43px;
}

.video-section__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.video-section__headline {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-bold);
    color: var(--color-black);
}

.video-section__headline .text-orange {
    color: var(--color-orange);
}

.video-section__subtitle {
    font-size: var(--fs-md);
    color: var(--color-black);
}

.video-section__player {
    width: 100%;
    border-radius: 11px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-section__player iframe,
.video-section__player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1023px) {
    .video-section__inner {
        padding: 0 20px;
    }

    .video-section__headline {
        font-size: var(--fs-3xl);
    }
}
