/* 00 Collection page */

.site-main.collection-00 {
	max-width: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.collection-00__gallery {
	width: 100%;
}

.collection-00__grid {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	width: 100%;
}

.collection-00__cell {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background-color: #f2f2f2;
}

.collection-00__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.collection-00__info {
	grid-column: 5 / 9;
	grid-row: 3 / 5;
	background-color: var(--color-secondary);
	color: var(--color-white, #ffffff);
	padding: 15px;
}

.collection-00__content {
	width: 100%;
	color: inherit;
}

.collection-00__content > :first-child {
	margin-top: 0;
}

.collection-00__content > :last-child {
	margin-bottom: 0;
}

.collection-00__content :where(p, li, a, strong, em, ul, ol, h1, h2, h3, h4, h5, h6) {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	font-style: inherit;
	line-height: inherit;
	text-transform: inherit;
	color: inherit;
}

@media (max-width: 1023px) {
	.collection-00__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.collection-00__info {
		grid-column: 3 / 5;
		grid-row: 5 / 7;
	}
}

@media (max-width: 767px) {
	.collection-00__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.collection-00__info {
		grid-column: 1 / -1;
		grid-row: 2;
		min-height: 12rem;
	}
}
