/*
Theme Name: Atlanta Child
Theme URI: http://pojo.me/
Description: Child theme for the Atlanta theme
Version: 1.0.1
Author: Pojo
Author URI: http://pojo.me/
Text Domain: pojochild
Template: atlanta
*/

/**
* YOUR CSS CODE, PUT IN assets/css/style.css
* FOR RTL, PUT IN assets/css/rtl.css
*/

.mozeslaw-video-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	align-items: stretch;
}

.mozeslaw-video-item {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000;
}

.mozeslaw-video-item iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	max-width: none;
}

@media (max-width: 767px) {
	.mozeslaw-video-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}
