/* Photo Gallery block */
.photo-gallery { background: var(--cmcf-grey-panel); }
.photo-gallery--header {
	text-align: center;
	margin-bottom: 40px;
}
.photo-gallery--eyebrow { margin: 0 0 12px; }
.photo-gallery--heading {
	font-family: var(--cmcf-font-heading);
	font-size: var(--cmcf-fs-h1);
	font-weight: 400;
	color: var(--cmcf-primary);
	margin: 0;
}

/* Tile grid: ~4 across, 20px gutters */
.photo-gallery--grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.photo-gallery--tile {
	padding: 0;
	border: none;
	background: var(--cmcf-white);
	cursor: pointer;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: block;
}
.photo-gallery--tile img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.photo-gallery--tile:hover img { transform: scale(1.05); }

/* View More */
.photo-gallery--more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}

/* Lightbox */
.photo-gallery--lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(9, 65, 34, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}
.photo-gallery--lightbox[hidden] { display: none; }
.photo-gallery--lb-figure {
	margin: 0;
	max-width: 80vw;
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.photo-gallery--lb-img {
	max-width: 100%;
	max-height: 75vh;
	object-fit: contain;
	background: var(--cmcf-white);
}
.photo-gallery--lb-caption {
	margin-top: 16px;
	color: var(--cmcf-white);
	font-family: var(--cmcf-font-body);
	font-size: 15px;
	text-align: center;
	max-width: 640px;
}
.photo-gallery--lb-close,
.photo-gallery--lb-nav {
	position: absolute;
	background: rgba(255, 255, 255, 0.12);
	border: none;
	color: var(--cmcf-white);
	cursor: pointer;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: background 0.2s ease;
}
.photo-gallery--lb-close:hover,
.photo-gallery--lb-nav:hover { background: rgba(255, 255, 255, 0.28); }
.photo-gallery--lb-close { top: 24px; right: 24px; }
.photo-gallery--lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.photo-gallery--lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* Editor preview */
.photo-gallery .admin-preview { padding: 16px; border: 1px dashed #ccc; }

@media (max-width: 860px) {
	.photo-gallery--grid { grid-template-columns: repeat(2, 1fr); }
	.photo-gallery--lb-figure { max-width: 92vw; }
	.photo-gallery--lb-close { top: 12px; right: 12px; }
	.photo-gallery--lb-prev { left: 8px; }
	.photo-gallery--lb-next { right: 8px; }
}
