/* =====================================================
   MyPlug Gallery — Single gallery page chrome
   The grid of images itself is rendered by MPG_Render and styled by
   frontend.css (already loaded as a dependency) — this file only styles
   the page header/title/count area around it.
   ===================================================== */

.mpg-single-gallery {
	max-width: 1200px;
	margin: 0 auto;
	padding: 48px 20px 64px;
	box-sizing: border-box;
}

.mpg-single-gallery__header {
	text-align: center;
	margin-bottom: 36px;
}

.mpg-single-gallery__title {
	font-size: clamp(24px, 4vw, 36px);
	font-weight: 700;
	margin: 0 0 8px;
	line-height: 1.3;
}

.mpg-single-gallery__count {
	font-size: 15px;
	color: #767676;
	margin: 0;
}

.mpg-single-gallery__empty {
	text-align: center;
	padding: 48px 20px;
	background: #f6f7f7;
	border: 1px dashed #c3c4c7;
	border-radius: 8px;
	color: #666;
}

@media (max-width: 600px) {
	.mpg-single-gallery {
		padding: 32px 16px 48px;
	}
}
