.video-section__inner {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.video-section__inner.swap {
    flex-direction: row-reverse;
}

.video-section__video {
    flex: 0 0 auto;
    width: 50%;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.video-section__custom-play {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 45px;
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.video-section__custom-play.is-hidden {
    display: none;
}

.plyr--paused .plyr__controls {
    opacity: 0;
    pointer-events: none;
}

.plyr:not(.plyr--paused) .plyr__controls {
    opacity: 1;
    pointer-events: auto;
}

.video-section__custom-play svg {
    transform: translateX(3px);
}

.video-section__custom-play svg path {
    transition: all 0.3s ease;
}

.video-section__custom-play:hover svg path {
    fill: var(--color-red);
}

.video-section__content {
    flex: 1;
    gap: 2.4rem;
}

.video-section__text {
    letter-spacing: 0.015em;
}

@media screen and (max-width: 767.9px) {
    .video-section__inner,
    .video-section__inner.swap {
        flex-direction: column;
        align-items: flex-start;
    }

    .video-section__video {
        order: -1;
        width: 100%;
    }
}