@charset "UTF-8";

.video-area-4 h3 {
	padding: 1rem;
    font-size: var(--video4_TITLE_FONT_SIZE);
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--video4_TITLE_RADIUS);
    color: var(--video4_TITLE_TEXT);
    background: var(--video4_TITLE_BG)
}

.video-wrap-.videos- {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(calc(100%/2),1fr));
	grid-template-areas: "video-frame-1 video-frame-2"
}

.video-wrap-.videos-.mobile- {
	display: block
}

.video-wrap- iframe {
	width: 100%;
	min-height: 350px
}

.video-wrap-.videos- iframe:first-child {
	grid-area: video-frame-1
}

.video-wrap-.videos- iframe:last-child {
	grid-area: video-frame-2
}