/* Video Records (Journal3) */

.video-records {
	display: grid;
	gap: 20px;
}

.video-record {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 16px;
	align-items: start;
}

@media (max-width: 767px) {
	.video-record {
		grid-template-columns: 1fr;
	}
}

.video-media {
	min-width: 0;
}

.video-content {
	min-width: 0;
}

.video-record h4 {
	margin: 12px 0 8px;
}

.video-description {
	margin-top: 8px;
}

.video-description > *:last-child {
	margin-bottom: 0;
}

/* Fallback if theme doesn't provide Bootstrap's embed-responsive */
.video-record .embed-responsive {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.video-record .embed-responsive .embed-responsive-item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
