/* ********** main ********** */

/* Section .gallery */

section.gallery .small-image {
	display: none;
}

section.gallery .text-content {
	margin: 30px auto;
}

section.gallery .text-content p {
	font-size: 1rem;
}

/* ********** Media Queries ********** */

@media screen and (min-width: 768px) {
	section.gallery {
		display: grid;
		gap: 5px;
		grid-template-columns: repeat(3, 1fr);
	}

	section.gallery #gallery-carousel {
		grid-column: span 3;
	}

	section.gallery .small-image {
		display: block;
		width: 100%;
	}

	section.gallery article.text-content.block-1 {
		grid-column: span 2;
	}

	section.gallery article.text-content.block-2 {
		grid-row: span 2;
	}
}

@media screen and (min-width: 992px) {
}
