/**
 * Single Photo Gallery template styles
 */

.site-main.photo-gallery-single {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 2rem 1.5rem;
}

.photo-gallery-article {
	width: 100%;
}

/* Header */
.photo-gallery-header {
	text-align: center;
	margin-bottom: 2rem;
}

.photo-gallery-label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--primary, #e00);
	margin-bottom: 0.5rem;
}

.photo-gallery-title {
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	line-height: 1.2;
	margin: 0 0 0.75rem;
}

.photo-gallery-meta {
	font-size: 0.8rem;
	color: var(--meta-color, #888);
	margin-bottom: 1rem;
}

/* Share buttons */
.photo-gallery-share {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.photo-gallery-share a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--border-color, #eee);
	color: var(--heading-color, #222);
	transition: background 0.2s, color 0.2s;
}

.photo-gallery-share a:hover {
	background: var(--primary, #e00);
	color: #fff;
}

/* Featured image */
.photo-gallery-featured {
	margin-bottom: 1.5rem;
	text-align: center;
}

.photo-gallery-featured img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
}

/* Intro content */
.photo-gallery-intro {
	max-width: 65ch;
	margin: 0 auto 2rem;
	font-size: 1rem;
	line-height: 1.6;
}

/* Gallery grid */
.photo-gallery-grid {
	margin-top: 1.5rem;
}

.photo-gallery-grid .block-wrap {
	width: 100%;
}

/* Force single-column layout */
.photo-gallery-grid .pure-masonry {
	column-count: 1 !important;
}

.photo-gallery-grid .lightbox-gallery-outer {
	width: 100% !important;
}

/* Lightbox gallery items — clickable cursor */
.photo-gallery-grid .lightbox-gallery-item {
	cursor: pointer;
}

.photo-gallery-grid .lightbox-gallery-item img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 2px;
	transition: opacity 0.2s;
}

.photo-gallery-grid .lightbox-gallery-item:hover img {
	opacity: 0.88;
}

/* Chevron arrows for the gallery lightbox popup */
.rb-gallery-popup .mfp-arrow-left i::before {
	content: '\e925';
	font-size: 2.5rem;
}

.rb-gallery-popup .mfp-arrow-right i::before {
	content: '\e926';
	font-size: 2.5rem;
}

@media (max-width: 767px) {
	.rb-gallery-popup .mfp-arrow-left i::before,
	.rb-gallery-popup .mfp-arrow-right i::before {
		font-size: 3.5rem;
	}

	.rb-gallery-popup .mfp-arrow-left {
		left: -10px;
	}

	.rb-gallery-popup .mfp-arrow-right {
		right: -10px;
	}
}
