.about__video-head {
    grid-template-columns: max-content 1fr;
}

.about__video-head .about__rutube {
    justify-self: end;
}

.about__video-inner {
    position: relative;
}

.about__video-inner .about__controls--video {
    position: absolute;
    top: 50%;
    right: calc(var(--shift) + 20px);
    left: calc(var(--shift) + 20px);
    z-index: 5;
    display: flex;
    width: auto;
    grid-column: auto;
    justify-self: stretch;
    justify-content: space-between;
    margin: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.about__video-arrow {
    display: grid;
    width: 68px;
    height: 68px;
    box-sizing: border-box;
    place-items: center;
    color: var(--common-black);
    background-color: var(--primary-yellow-100);
    border: 2px solid rgba(0, 0, 0, 0.78);
    border-radius: 50%;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.36);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    pointer-events: auto;
}

.about__video-arrow svg {
    width: 44px;
    height: 44px;
    stroke: currentColor;
    stroke-width: 1.6px;
    stroke-linejoin: round;
}

.about__video-arrow:not(:disabled):not(.arrow-button--disabled):hover,
.about__video-arrow:not(:disabled):not(.arrow-button--disabled):focus-visible {
    background-color: var(--primary-yellow-100);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    transform: scale(1.06);
}

.about__video-arrow:focus-visible {
    outline: 3px solid var(--common-black);
    outline-offset: 3px;
}

.about__video-arrow:disabled,
.about__video-arrow.arrow-button--disabled {
    color: #555;
    background-color: #e7e7e7;
    border-color: #707070;
    opacity: 1;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.3);
    cursor: default;
    pointer-events: none;
}

@media only screen and (max-width: 1199px) {
    .about__video-inner .about__controls--video {
        right: calc(var(--shift) + 16px);
        left: calc(var(--shift) + 16px);
    }

    .about__video-arrow {
        width: 56px;
        height: 56px;
    }

    .about__video-arrow svg {
        width: 34px;
        height: 34px;
    }
}

@media only screen and (max-width: 767px) {
    .about__video-inner .about__controls--video {
        right: calc(var(--shift) + 12px);
        left: calc(var(--shift) + 12px);
    }

    .about__video-arrow {
        width: 48px;
        height: 48px;
    }

    .about__video-arrow svg {
        width: 28px;
        height: 28px;
    }
}

@media only screen and (max-width: 530px) {
    .about__video-head .about__rutube {
        grid-column: 2;
    }
}
