/* Google Arts & Culture inspired museum page */
.mcg {
	--mcg-ink: #0f0f10;
	--mcg-muted: #5f6368;
	--mcg-line: #e8eaed;
	--mcg-bg: #ffffff;
	--mcg-soft: #f8f9fa;
	--mcg-radius: 18px;
	max-width: 1120px;
	margin: 0 auto 3rem;
	color: var(--mcg-ink);
	font-family: inherit;
	background: var(--mcg-bg);
}

.mcg-hero {
	position: relative;
	min-height: clamp(320px, 58vw, 560px);
	border-radius: 0 0 28px 28px;
	overflow: hidden;
	color: #fff;
}

.mcg-hero__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1.02);
}

.mcg-hero__media--empty {
	background: linear-gradient(135deg, #202124, #3c4043);
}

.mcg-hero__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.08) 10%, rgba(0, 0, 0, 0.72) 100%),
		radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 40%);
}

.mcg-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: inherit;
	padding: clamp(1.4rem, 4vw, 3rem);
	max-width: 860px;
}

.mcg-kicker {
	margin: 0 0 0.55rem;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	font-weight: 700;
	opacity: 0.92;
}

.mcg-kicker--light {
	color: rgba(255, 255, 255, 0.72);
}

.mcg-title {
	margin: 0;
	font-family: inherit;
	font-size: clamp(2.2rem, 6vw, 4rem);
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.mcg-sub {
	margin: 0.7rem 0 0;
	font-size: 1.05rem;
	opacity: 0.9;
}

.mcg-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
	margin-top: 1.1rem;
}

.mcg-score {
	display: inline-flex;
	align-items: baseline;
	gap: 0.45rem;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.mcg-score strong {
	font-size: 1.15rem;
}

.mcg-score span {
	font-size: 0.86rem;
	opacity: 0.9;
}

.mcg-section {
	padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1rem, 3vw, 1.5rem) 0;
}

.mcg-section__head {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-bottom: 1rem;
}

.mcg-section__head h2 {
	margin: 0;
	font-family: inherit;
	font-size: clamp(1.55rem, 3vw, 2rem);
	letter-spacing: -0.02em;
}

.mcg-section__head p {
	margin: 0;
	color: var(--mcg-muted);
	font-size: 0.98rem;
}

.mcg-intro .mcg-lead {
	margin: 0;
	max-width: 62ch;
	font-size: clamp(1.1rem, 2.2vw, 1.35rem);
	line-height: 1.65;
	color: #202124;
}

.mcg-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.35rem;
}

.mcg-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.7rem 1.2rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none !important;
	transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.mcg-btn:hover {
	transform: translateY(-1px);
}

.mcg-btn--dark {
	background: #202124;
	color: #fff !important;
}

.mcg-btn--line {
	background: transparent;
	color: #202124 !important;
	border: 1px solid #dadce0;
}

.mcg-btn--light {
	background: #fff;
	color: #202124 !important;
}

.mcg-gallery {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(240px, 320px);
	gap: 0.85rem;
	overflow-x: auto;
	padding-bottom: 0.4rem;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.mcg-gallery__item {
	margin: 0;
	scroll-snap-align: start;
	border-radius: var(--mcg-radius);
	overflow: hidden;
	background: var(--mcg-soft);
	border: 1px solid var(--mcg-line);
}

.mcg-gallery__item img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.mcg-gallery__item figcaption {
	padding: 0.55rem 0.75rem 0.7rem;
	font-size: 0.78rem;
	color: var(--mcg-muted);
}

.mcg-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0.85rem;
}

.mcg-card {
	padding: 1rem 1.05rem;
	border-radius: 16px;
	background: var(--mcg-soft);
	border: 1px solid var(--mcg-line);
}

.mcg-card__label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 800;
	color: #80868b;
}

.mcg-card__value {
	font-size: 0.98rem;
	line-height: 1.45;
	color: var(--mcg-ink);
	word-break: break-word;
}

.mcg-card__value a {
	color: #174ea6;
	text-decoration: none;
}

.mcg-card__value code {
	font-size: 0.82rem;
}

.mcg-hours {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 0.55rem;
}

.mcg-hours li {
	padding: 0.8rem 0.95rem;
	border-radius: 14px;
	background: var(--mcg-soft);
	border: 1px solid var(--mcg-line);
	font-size: 0.95rem;
}

.mcg-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.mcg-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--mcg-line);
	font-size: 0.86rem;
	font-weight: 600;
	color: #3c4043;
}

.mcg-chip--live,
.mcg-chip--ok {
	background: #e6f4ea;
	border-color: #ceead6;
	color: #137333;
}

.mcg-reviews {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 0.9rem;
}

.mcg-review {
	padding: 1.15rem 1.2rem;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--mcg-line);
	box-shadow: 0 10px 30px rgba(60, 64, 67, 0.06);
}

.mcg-review header {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	margin-bottom: 0.7rem;
}

.mcg-review header strong {
	font-size: 0.98rem;
}

.mcg-review header span {
	font-size: 0.82rem;
	color: var(--mcg-muted);
}

.mcg-review p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
	color: #3c4043;
}

.mcg-cta {
	margin: 2.2rem clamp(1rem, 3vw, 1.5rem) 0;
	padding: clamp(1.4rem, 3vw, 2rem);
	border-radius: 24px;
	background:
		radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.12), transparent 35%),
		linear-gradient(135deg, #202124 0%, #3c4043 100%);
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
}

.mcg-cta h2 {
	margin: 0.2rem 0 0.55rem;
	font-family: inherit;
	font-size: clamp(1.5rem, 3vw, 2rem);
	max-width: 18ch;
	line-height: 1.15;
}

.mcg-cta p {
	margin: 0;
	max-width: 46ch;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.5;
}

@media (max-width: 720px) {
	.mcg-hero {
		border-radius: 0 0 18px 18px;
	}

	.mcg-actions,
	.mcg-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.mcg-btn {
		width: 100%;
	}

	.mcg-gallery__item img {
		height: 190px;
	}
}

/* Theme interference soft-reset inside museum block */
.mcg a:focus-visible {
	outline: 2px solid #1a73e8;
	outline-offset: 2px;
}

.entry-content .mcg-title,
.entry-content .mcg h2 {
	border: 0;
	padding: 0;
}

.mc-desc{margin:0 0 24px}.mc-desc__toggle{appearance:none;border:0;background:transparent;color:#2a6b52;font-size:0.9rem;font-weight:650;padding:0;cursor:pointer;text-decoration:underline;text-underline-offset:3px}.mc-desc__toggle:hover{color:#1e4d38}
