.avidarv_gallery_wrap
{
	container-type: inline-size;
}

.avidarv_gallery
{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
	grid-auto-rows: 150px;
	gap: 13px 24px;
}

.avidarv_gallery .galleryImage
{
	object-fit: cover;
	height: 100% !important;
	width: 100%;
	cursor: pointer;
}

.avidarv_gallery .galleryImage iframe
{
	height: 100%;
}


.avidarv_gallery[data-more]::after
{
	content: attr(data-more);
	display: grid;
	align-content: center;
	justify-content: center;
	background: #10245A;
	color: #fff;
}

@container (min-width: 450px)
{
	.avidarv_gallery
	{
		grid-template-areas: "feat feat feat" "img1 img2 img3" "img4 img5 img6";
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 256px 123px 123px;
	}

	.avidarv_gallery .galleryImage:first-child
	{
		grid-area: feat;
	}

	.avidarv_gallery .galleryImage:last-child
	{
		grid-area: img6
	}

	.avidarv_gallery[data-more]::after
	{
		grid-area: img6;
		background: #10245A80;
	}
}

@container (min-width: 810px)
{
	.avidarv_gallery
	{
		grid-template-columns: 1fr 170px 170px;
		grid-template-rows: 123px 123px 123px;
		grid-template-areas: "feat img1 img2" "feat img3 img4" "feat img5 img6";
	}
}