.section-video_and_text h3 {
    margin-bottom: calc( var(--tateru-default-padding) / 2 );
}

.section-video_and_text .highlight {
    color: var(--tateru-color-white);
}

.section-video_and_text .wrapper {
    display: flex;
}

.section-video_and_text .video {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    aspect-ratio: 16 / 9;
}

.section-video_and_text .play-video-icon {
    width: 50px;
    transition: transform 0.3s ease;
    transition-timing-function: cubic-bezier(0.83, 0, 0.17, 1);
}

.section-video_and_text .video:hover .play-video-icon {
    transform: scale(1.2);
}

.section-video_and_text .content {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.section-video_and_text .description {
    padding-top: 35px;
    margin-bottom: 35px;
    max-width: 620px;
}

.section-video_and_text .aside {
    background-color: var(--tateru-color-primary);
    color: var(--tateru-color-white);
    padding: calc(var(--tateru-default-padding) / 2);
    padding-top: var(--tateru-default-padding);
}

.section-video_and_text .aside h3 {
    text-box-trim: trim-both;
    text-box-edge: cap alphabetic;
    font-family: var(--tateru-primary-font);
}

.section-video_and_text .aside h3 em {
    font-family: var(--tateru-heading-font);
}

.section-video_and_text .description p:last-child {
    margin-bottom: 0;
}

.section-video_and_text .button {
    margin-top: -5px;
    margin-bottom: calc(var(--tateru-default-padding) / 2);
}

.play-video-button[disabled] {
    opacity: 0.5;
    pointer-events: none;
}

.section-video_and_text .col-desktop-4 .content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: column;
    height: 100%;
}

.section-video_and_text .col-desktop-8 .description {
    margin-bottom: 0;
}

#player.playing {
    background: #000 !important;
}

@media screen and (max-width: 1200px) {
    .section-video_and_text .aside {
        padding-top: calc(var(--tateru-default-padding) / 2);
    }
}

@media screen and (max-width: 1000px) {
    .section-video_and_text .wrapper {
        flex-direction: column;
    }

    .section-video_and_text .video {
        width: 100%;
    }

    .section-video_and_text .content {
        padding-left: 0;
        margin-left: 0;
        border-left: 0;
        padding-top: var(--tateru-default-padding);
    }

    .section-video_and_text .button {
        display: none;
    }

    .section-video_and_text h3 > p:first-child {
        padding-right: 10px;
    }

    .section-video_and_text .description {
        padding-top: 25px;
        margin-bottom: 0;
    }

    .section-video_and_text .content {
        padding-top: 0;
    }
}

@media screen and (max-width: 500px) {
    .section-video_and_text h3 br {
        display: inline !important;
        content: " ";
    }
}
