.section-videos h2 + .videos {
    margin-top: 1.5rem;
}

.section-videos .videos .video-group:not(:last-child) {
    margin-bottom: 2rem;
}

.section-videos .videos .video-group .video-group-block {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
}

.section-videos .videos .video-group .video-group-block-1 {
    max-width: 32rem;
}

.section-videos .videos .video-group .video-group-block .video-block iframe,
.section-videos .videos .video-group .video-group-block .video-block video {
    aspect-ratio: 16 / 9;
    height: auto;
}

.section-videos .videos .video-group .video-group-block .video-description {
    margin-top: 0.5rem;
}

.section-videos .videos .video-group .video-group-block h3 {
    font-size: var(--font-size-heading-4);
    margin-bottom: 0.25rem;
}

.section-videos .videos .video-group .video-group-block .video-description p:last-of-type {
    margin-bottom: 0;
}

.section-videos .videos .video-group .video-group-block .video-play-link {
    background-color: transparent;
    border-width: 0;
    color: var(--color-link-normal);
    display: block;
    font-size: var(--font-size-normal);
    font-weight: var(--font-weight-semibold);
    margin-top: 1rem;
    padding: 0;
    width: max-content;
}

.section-videos .videos .video-group .video-group-block .video-play-link:hover {
    color: var(--color-link-hover);
}

@media (min-width: 48rem) { /* 768 px */
    .section-videos .videos .video-group .video-group-block-2 {
        grid-template-columns: repeat(2,1fr);
    }

    .section-videos .videos .video-group .video-group-block-3 {
        grid-template-columns: repeat(3,1fr);
    }
}