/**
 * Domain statikus CSS — domain_id=1
 * Csak FTP-vel szerkeszthető (nem admin / MCP).
 * Betöltési sorrend: 1) ez a fájl  2) css.php (css_blocks tábla)
 */

:root {
	--blue: #1a4b8c;
	--blue-dark: #123566;
	--ochre: #c49a3c;
	--bg: #f7f4ef;
	--paper: #fffcf7;
	--text: #1e1e1e;
	--muted: #5c5c5c;
	--border: #e2dcd0;
	--shadow: 0 4px 24px rgba(26, 75, 140, 0.08);
	--font-family: Cambria, Georgia, "Times New Roman", serif;
	--max: 1080px;
	--radius: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
	/* Rövid tartalmú lapon is a lap aljára szorítja a láblécet. */
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-family: var(--font-family);
	font-size: 17px;
	line-height: 1.65;
	color: var(--text);
	background: var(--bg);
	background-image:
		linear-gradient(180deg, rgba(26,75,140,0.03) 0%, transparent 240px),
		repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(196,154,60,0.04) 39px, rgba(196,154,60,0.04) 40px);
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--ochre); }
a[href^="tel:"] {
	white-space: nowrap;
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-variant-numeric: tabular-nums lining-nums;
	font-weight: 500;
	letter-spacing: 0.02em;
}

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.site-header {
	background: #fff;
	border-bottom: 3px solid var(--blue);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 12px rgba(26,75,140,0.08);
}

.header-inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-tools {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 20px;
	min-width: 0;
}

.site-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.site-logo img {
	height: 56px;
	width: auto;
	flex-shrink: 0;
}

.site-logo-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.site-logo-title {
	display: block;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--blue);
}

.site-logo-sub {
	margin-top: 2px;
	font-size: 0.7rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ochre);
}

.site-logo:hover .site-logo-title { color: var(--ochre); }

.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--blue);
	margin: 5px 0;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 24px;
}

.main-nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 16px;
	margin: 0;
	padding: 0;
}

.main-nav .submenu {
	display: none;
}

.main-nav li { position: relative; }

.main-nav a {
	display: block;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--text);
	padding: 6px 2px;
	border-bottom: 2px solid transparent;
	transition: color 0.18s ease, border-color 0.18s ease;
}
.main-nav a:hover {
	color: var(--blue);
	border-bottom-color: rgba(196, 154, 60, 0.55);
}
.main-nav li.active a {
	color: var(--blue);
	border-bottom-color: var(--ochre);
	border-bottom-width: 3px;
}

.lang-switch {
	position: relative;
	flex-shrink: 0;
}

.social-fb {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.social-fb-icon {
	display: block;
	flex-shrink: 0;
}
.social-fb--header {
	width: 44px;
	height: 44px;
	color: #1877f2;
	background: transparent;
	border: none;
	flex-shrink: 0;
}
.social-fb--header .social-fb-icon {
	width: 28px;
	height: 28px;
}
.social-fb--header:hover {
	color: #166fe5;
	transform: scale(1.06);
}
.footer-social {
	margin: 0 0 20px;
}
.social-fb--footer {
	display: inline-flex;
	padding: 12px 22px;
	border-radius: 8px;
	background: #1877f2;
	color: #fff !important;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.01em;
	box-shadow: 0 6px 18px rgba(24, 119, 242, 0.28);
}
.social-fb--footer:hover {
	background: #166fe5;
	color: #fff !important;
	transform: translateY(-1px);
}

.lang-switch-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 5px 8px 5px 6px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 6px;
	cursor: pointer;
	line-height: 0;
}
.lang-switch-toggle:hover,
.lang-switch.is-open .lang-switch-toggle {
	border-color: var(--ochre);
}

.lang-flag {
	width: 22px;
	height: 16px;
	object-fit: cover;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
	flex-shrink: 0;
}

.lang-switch-caret {
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid var(--blue);
	transition: transform 0.18s ease;
}
.lang-switch.is-open .lang-switch-caret {
	transform: rotate(180deg);
}

.lang-switch-menu {
	display: none;
	position: absolute;
	right: 0;
	top: calc(100% + 6px);
	min-width: 148px;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 8px;
	box-shadow: var(--shadow);
	z-index: 20;
}
.lang-switch.is-open .lang-switch-menu {
	display: block;
}

.lang-switch-menu a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--text);
	white-space: nowrap;
}
.lang-switch-menu a:hover {
	background: rgba(196, 154, 60, 0.1);
	color: var(--blue);
}
.lang-switch-menu a.active {
	color: var(--blue);
	background: rgba(26, 75, 140, 0.06);
}

.site-header--no-menu .header-inner {
	justify-content: space-between;
}

.lang-switch--standalone {
	font-size: 0.85rem;
}

@media (max-width: 768px) {
	.nav-toggle { display: block; order: 2; padding: 6px; }
	.lang-switch { order: 1; }
	.header-inner { gap: 12px; padding: 10px 16px; }
	.header-tools { gap: 14px; }
	.site-logo { gap: 10px; }
	.main-nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		padding: 12px 20px 16px;
		border-bottom: 1px solid #e8e8e8;
		box-shadow: 0 8px 16px rgba(0,0,0,0.06);
		order: 3;
	}
	.site-header.is-open .main-nav { display: flex; }
	.site-header { position: relative; }
	/* Nyelvváltó + hamburger egy sorban marad; a márkanév szűkül helyette. */
	.header-tools { flex-wrap: nowrap; justify-content: flex-end; flex-shrink: 0; }
	.main-nav ul { flex-direction: column; gap: 0; }
	.main-nav li + li { border-top: 1px solid var(--border); }
	.main-nav a {
		padding: 11px 0 11px 12px;
		border-bottom: none;
		border-left: 3px solid transparent;
	}
	.main-nav a:hover { border-bottom: none; border-left-color: rgba(196, 154, 60, 0.55); }
	.main-nav li.active a {
		border-bottom: none;
		border-left-color: var(--ochre);
		background: rgba(196, 154, 60, 0.08);
	}
	.site-logo img { height: 44px; }
	.site-logo-title {
		font-size: 0.9rem;
		hyphens: auto;
		overflow-wrap: break-word;
	}
	.site-logo-sub { font-size: 0.62rem; letter-spacing: 0.08em; }
}

/* Nagyon keskeny kijelzőn a márkanév ne törjön szét szó közben. */
@media (max-width: 360px) {
	.site-logo img { height: 38px; }
	.site-logo-title { font-size: 0.82rem; }
	.site-logo-sub { display: none; }
}

.hero {
	background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, #2a6cb0 100%);
	color: #fff;
	padding: 64px 20px 72px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
	pointer-events: none;
}

.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }

.hero h1 {
	font-family: var(--font-family);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	margin-bottom: 8px;
	letter-spacing: 0.02em;
}

.hero .subtitle { font-size: 1.4rem; opacity: 0.9; margin-bottom: 24px; }

.hero .motto {
	font-family: var(--font-family);
	font-style: italic;
	font-size: 1.1rem;
	opacity: 0.92;
	margin-bottom: 8px;
	border-top: 1px solid rgba(255,255,255,0.25);
	border-bottom: 1px solid rgba(255,255,255,0.25);
	padding: 16px 0;
}

.hero .motto-author { font-size: 0.85rem; opacity: 0.75; margin-bottom: 28px; }

.countdown-label { font-size: 0.9rem; opacity: 0.85; margin-bottom: 8px; }

.countdown {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin: 24px 0 0;
	flex-wrap: wrap;
}

.countdown-item {
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: var(--radius);
	padding: 12px 16px;
	min-width: 72px;
}

.countdown-item strong { display: block; font-size: 1.6rem; font-family: var(--font-family); }
.countdown-item span { font-size: 0.75rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; }

.section { padding: 48px 0; }

.section-pattern {
	border-top: 4px solid var(--ochre);
	border-bottom: 4px solid var(--ochre);
	background: linear-gradient(90deg, rgba(45,90,61,0.06), rgba(26,75,140,0.06));
}

h2 { font-family: var(--font-family); font-size: 1.75rem; color: var(--blue); margin-bottom: 20px; }
.lead { font-size: 1.08rem; color: var(--muted); }
.prose p { margin-bottom: 14px; }

.section-more {
	margin: 20px 0 0;
}
.prose .section-more { margin-top: 8px; }
.section-more a {
	font-weight: 700;
	letter-spacing: 0.02em;
}

/* Aloldal főcím */
.page-head { padding-bottom: 8px; }
.page-head h1 {
	font-family: var(--font-family);
	font-size: clamp(1.9rem, 4vw, 2.5rem);
	color: var(--blue);
	margin-bottom: 12px;
}

/* Geresdlak — képsáv a szöveg mellett, nem a bekezdések között */
.section.photos { padding: 8px 0 4px; }
.page-head + .photos { padding-top: 4px; }
.photos:not(.has-copy) + .section { padding-top: 24px; }
.photos.has-copy { padding: 48px 0; }

.photos-head { margin-bottom: 20px; }
.photos-head h2 { margin-bottom: 8px; }
.photos-head .lead { margin: 0; }

.photos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.photos--2 .photos-grid { grid-template-columns: repeat(2, 1fr); }
.photos--1 .photos-grid { grid-template-columns: 1fr; max-width: 640px; }

.photos-grid figure {
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: var(--shadow);
}
.photos-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.quote-block { padding: 16px 0 64px; }
.quote-block blockquote {
	max-width: 38rem;
	margin: 0 auto;
	text-align: center;
	border-top: 1px solid var(--ochre);
	border-bottom: 1px solid var(--ochre);
	padding: 28px 12px;
}
.quote-block p {
	font-family: var(--font-family);
	font-style: italic;
	font-size: clamp(1.15rem, 2.4vw, 1.45rem);
	line-height: 1.5;
	color: var(--blue);
	margin: 0;
}

@media (max-width: 768px) {
	.section.photos { padding: 4px 0 0; }
	.photos.has-copy { padding: 36px 0; }
	.photos:not(.has-copy) + .section { padding-top: 14px; }
	.photos-grid { gap: 8px; }
}

/* Nyitólap — teaser kártyák */
.teasers { padding: 48px 0; }
.teasers-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.teasers--2 .teasers-grid,
.teasers--4 .teasers-grid { grid-template-columns: repeat(2, 1fr); }
.teasers--1 .teasers-grid { grid-template-columns: 1fr; max-width: 360px; }

.teaser-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--paper);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
	color: inherit;
	text-decoration: none;
}
a.teaser-card:hover {
	border-color: var(--ochre);
	color: inherit;
}
a.teaser-card:hover .teaser-title { color: var(--ochre); }
a.teaser-card:focus-visible {
	outline: 3px solid var(--ochre);
	outline-offset: 2px;
}

.teaser-media {
	margin: 0;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--blue-dark);
}
.teaser-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}
a.teaser-card:hover .teaser-media img { transform: scale(1.04); }

.teaser-body {
	padding: 16px 18px 18px;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.teaser-title {
	font-size: 1.2rem;
	margin-bottom: 8px;
	color: var(--blue);
}
.teaser-text {
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0 0 12px;
	flex: 1;
}
.teaser-more {
	color: var(--ochre);
	font-weight: 700;
	margin-top: auto;
}

.programs-teaser { padding: 48px 0; }
.programs-teaser .prog-cards { margin-top: 0; }

@media (max-width: 768px) {
	.teasers-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.teasers--1 .teasers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
	.teasers-grid,
	.teasers--2 .teasers-grid,
	.teasers--4 .teasers-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	.teaser-media img { transition: none; }
	a.teaser-card:hover .teaser-media img { transform: none; }
}

/* Látnivalók */
.sight { padding: 36px 0; }
.sight + .sight { padding-top: 40px; border-top: 1px solid var(--border); }
.contact-box-wrap + .sight { padding-top: 8px; }

.sight-inner {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
	gap: 36px 40px;
	align-items: center;
}
.sight.is-flip .sight-inner {
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
}
.sight.is-flip .sight-media { order: 2; }

.sight-media {
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: var(--shadow);
}
.sight-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sight-body h2 { margin-bottom: 8px; }
.sight-address {
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--ochre);
	letter-spacing: 0.01em;
	margin-bottom: 6px;
}
.sight-note {
	font-size: 0.92rem;
	font-style: italic;
	color: var(--muted);
	margin-bottom: 16px;
}
.sight-body p { margin-bottom: 12px; }
.sight-body p:last-child { margin-bottom: 0; }

.contact-box-wrap { padding-top: 8px; padding-bottom: 24px; }
.contact-box {
	background: var(--paper);
	border: 1px solid var(--border);
	border-top: 3px solid var(--ochre);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 28px 32px;
}
.contact-box h2 { margin-bottom: 8px; font-size: 1.35rem; }
.contact-box .lead { margin-bottom: 18px; }
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 32px;
}
.contact-name {
	font-weight: 700;
	color: var(--blue);
	margin-bottom: 4px;
}
.contact-card p { margin-bottom: 4px; }
.contact-card p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
	.sight-inner,
	.sight.is-flip .sight-inner { grid-template-columns: 1fr; gap: 18px; }
	.sight.is-flip .sight-media { order: 0; }
	.contact-grid { grid-template-columns: 1fr; }
	.contact-box { padding: 22px 20px; }
}

/* Galéria */
.gallery { padding: 32px 0; }
/* Az oldal h1 főcíme után ne tűnjön két külön címnek a galéria neve. */
.page-head + .gallery { padding-top: 4px; }
.gallery + .gallery { border-top: 1px solid var(--border); }

.gallery-head {
	border-left: 4px solid var(--ochre);
	padding-left: 16px;
	margin-bottom: 22px;
}

.gallery-head h2 {
	font-size: 1.4rem;
	margin-bottom: 6px;
}

.gallery-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px 14px;
	font-size: 0.9rem;
	color: var(--muted);
}

.gallery-meta-main {
	font-weight: 600;
	letter-spacing: 0.02em;
	color: var(--ochre);
}

.gallery-text {
	margin-top: 10px;
	color: var(--muted);
	max-width: 62ch;
}

/* Flexbox rács: egyforma csempék, az utolsó hiányos sor középre kerül. */
.gallery-grid {
	--gallery-gap: 16px;
	--gallery-cols: 4;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--gallery-gap);
}

.gallery-item {
	display: block;
	flex: 0 1 calc((100% - (var(--gallery-cols) - 1) * var(--gallery-gap)) / var(--gallery-cols));
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: var(--shadow);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.05); }
.gallery-item:hover { border-color: var(--ochre); }
.gallery-item:focus-visible { outline: 3px solid var(--ochre); outline-offset: 2px; }

/* Logó galéria: két nagy, négyzetes csempe, teljes logó látszik */
.gallery--logo .gallery-grid {
	--gallery-cols: 2;
	max-width: 720px;
	margin: 0 auto;
}

.gallery--logo .gallery-item {
	aspect-ratio: 1;
	padding: 20px;
	background: #fff;
}

.gallery--logo .gallery-item img {
	object-fit: contain;
	transform: none;
}

.gallery--logo .gallery-item:hover img,
.gallery--logo .gallery-item:focus-visible img { transform: none; }

@media (max-width: 900px) {
	.gallery-grid { --gallery-cols: 3; }
}

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 72px 20px;
	background: rgba(18, 53, 102, 0.94);
}
.lightbox[hidden] { display: none; }
body.lightbox-open { overflow: hidden; }

.lightbox-figure {
	margin: 0;
	max-width: min(var(--max), 100%);
	text-align: center;
}

.lightbox-img {
	max-width: 100%;
	max-height: calc(100vh - 160px);
	width: auto;
	margin: 0 auto;
	border-radius: var(--radius);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.9rem;
	margin-top: 12px;
}

.lightbox-btn {
	position: absolute;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-family: inherit;
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
}
.lightbox-btn:hover { background: rgba(196, 154, 60, 0.9); border-color: var(--ochre); }
.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }

.site-footer { background: var(--blue-dark); color: rgba(255,255,255,0.88); padding: 40px 20px; margin-top: auto; }
.footer-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.footer-contact { margin-bottom: 24px; line-height: 1.8; }
.footer-contact a { color: #fff; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.35); max-width: 480px; margin: 0 auto 24px; }
.footer-slogan { font-family: var(--font-family); font-size: 1.2rem; font-style: italic; color: var(--ochre); }

.footer-nav {
	margin-top: 28px;
	padding-top: 16px;
	border-top: 1px solid rgba(255,255,255,0.18);
}
.footer-nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px 22px;
	margin: 0;
	padding: 0;
}
.footer-nav a {
	color: rgba(255,255,255,0.72);
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}
.footer-nav a:hover { color: var(--ochre); }
.footer-nav li.active a {
	color: #fff;
	border-bottom: 1px solid var(--ochre);
}

@media (max-width: 600px) {
	.hero { padding: 52px 16px 48px; }
	.section { padding: 32px 0; }
	.gallery { padding: 24px 0; }
	.gallery-head { padding-left: 12px; margin-bottom: 16px; }
	.gallery-head h2 { font-size: 1.2rem; }
	.gallery-grid { --gallery-cols: 2; --gallery-gap: 10px; }
	.lightbox { padding: 64px 12px; }
	.lightbox-btn { width: 40px; height: 40px; font-size: 1.5rem; }
	.lightbox-prev { left: 8px; }
	.lightbox-next { right: 8px; }
}

/* —— Programok —— */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.prog-intro { padding-top: 0; padding-bottom: 8px; }
.prog-intro .lead { margin-bottom: 14px; }
.programs { padding-top: 16px; }

.prog-toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
	padding: 14px 16px;
	background: var(--paper);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	position: sticky;
	top: 72px;
	z-index: 40;
	margin-bottom: 16px;
}

.prog-views {
	display: inline-flex;
	border: 1px solid var(--border);
	border-radius: 999px;
	overflow: hidden;
	background: #fff;
}
.prog-view-btn {
	font: inherit;
	font-size: 0.88rem;
	font-weight: 600;
	padding: 8px 16px;
	border: none;
	background: transparent;
	color: var(--muted);
	cursor: pointer;
}
.prog-view-btn.is-active {
	background: var(--blue);
	color: #fff;
}
.prog-view-btn:hover:not(.is-active) { color: var(--blue); }

.prog-search { flex: 1 1 180px; min-width: 160px; }
.prog-q {
	width: 100%;
	font: inherit;
	font-size: 0.95rem;
	padding: 8px 12px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: #fff;
	color: var(--text);
}
.prog-q:focus {
	outline: 2px solid var(--ochre);
	outline-offset: 1px;
	border-color: var(--ochre);
}

.prog-month {
	font: inherit;
	font-size: 0.92rem;
	padding: 8px 12px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: #fff;
	color: var(--text);
	max-width: 100%;
}

.prog-planning-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--muted);
	cursor: pointer;
	user-select: none;
}
.prog-planning-toggle input { accent-color: var(--blue); }

.prog-cats {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	overflow-x: auto;
	padding: 4px 2px 12px;
	margin-bottom: 8px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}
.prog-cat {
	flex: 0 0 auto;
	font: inherit;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 6px 14px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--paper);
	color: var(--muted);
	cursor: pointer;
	transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.prog-cat:hover { border-color: var(--blue); color: var(--blue); }
.prog-cat.is-active {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

.prog-chip {
	display: inline-block;
	padding: 0.15rem 0.6rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	background: #e8f0ef;
	color: var(--blue);
}
.prog-chip.cat-unnep { background: #e4ecf6; color: #1a4b8c; }
.prog-chip.cat-fesztival { background: #f7efd9; color: #8a6a1a; }
.prog-chip.cat-gasztro { background: #f5e4dc; color: #b85c38; }
.prog-chip.cat-kiallitas { background: #ddecea; color: #2a6f6a; }
.prog-chip.cat-eloadas { background: #e8e4f0; color: #5c4a8a; }
.prog-chip.cat-csalad { background: #e0ede3; color: #3d7a4a; }
.prog-chip.cat-tura { background: #efe4d8; color: #8a5a2b; }
.prog-chip.is-planning { background: #eeeae3; color: #6b6560; }

.prog-cat.cat-unnep.is-active { background: #1a4b8c; border-color: #1a4b8c; color: #fff; }
.prog-cat.cat-fesztival.is-active { background: #c49a3c; border-color: #c49a3c; color: #1e1e1e; }
.prog-cat.cat-gasztro.is-active { background: #b85c38; border-color: #b85c38; color: #fff; }
.prog-cat.cat-kiallitas.is-active { background: #2a6f6a; border-color: #2a6f6a; color: #fff; }
.prog-cat.cat-eloadas.is-active { background: #5c4a8a; border-color: #5c4a8a; color: #fff; }
.prog-cat.cat-csalad.is-active { background: #3d7a4a; border-color: #3d7a4a; color: #fff; }
.prog-cat.cat-tura.is-active { background: #8a5a2b; border-color: #8a5a2b; color: #fff; }

.prog-meta-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.prog-count {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--muted);
	margin: 0;
}
.prog-reset {
	font: inherit;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--blue);
	background: none;
	border: none;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.prog-reset:hover { color: var(--ochre); }

.prog-empty {
	padding: 2.5rem 1.5rem;
	text-align: center;
	color: var(--muted);
	background: var(--paper);
	border: 1px dashed var(--border);
	border-radius: var(--radius);
	margin-bottom: 24px;
}

.prog-month-title {
	font-size: 1.25rem;
	color: var(--blue);
	margin: 28px 0 14px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--ochre);
	display: inline-block;
}
.prog-month-group:first-child .prog-month-title { margin-top: 0; }

.prog-cards {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.prog-card {
	display: grid;
	grid-template-columns: 5.5rem 1fr;
	gap: 16px 20px;
	padding: 18px 20px;
	background: var(--paper);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	transition: border-color 0.2s, box-shadow 0.2s;
}
.prog-card:hover {
	border-color: rgba(26, 75, 140, 0.35);
	box-shadow: 0 6px 28px rgba(26, 75, 140, 0.12);
}
.prog-card.is-planning { opacity: 0.95; }
.prog-card--compact { grid-template-columns: 1fr; }

.prog-datebadge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(160deg, var(--blue-dark), var(--blue));
	color: #fff;
	border-radius: var(--radius);
	padding: 10px 6px;
	min-height: 5.5rem;
	line-height: 1.15;
}
.prog-datebadge.is-planning {
	background: linear-gradient(160deg, #6b6560, #8a837a);
	min-height: 4rem;
}
.prog-datebadge-day {
	font-size: 1.65rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}
.prog-datebadge-mon {
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: lowercase;
	opacity: 0.92;
	margin-top: 2px;
}
.prog-datebadge-wd {
	font-size: 0.7rem;
	opacity: 0.75;
	margin-top: 4px;
	text-transform: capitalize;
}

.prog-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-bottom: 6px;
}
.prog-place,
.prog-time {
	font-size: 0.82rem;
	color: var(--muted);
	font-weight: 600;
}

.prog-card-title {
	font-size: 1.12rem;
	margin: 0 0 6px;
	line-height: 1.3;
}
.prog-card-title a { color: var(--text); }
.prog-card-title a:hover { color: var(--blue); }
.prog-card-summary {
	margin: 0 0 10px;
	color: var(--muted);
	font-size: 0.95rem;
}
.prog-card-more {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--blue);
}
.prog-card-more:hover { color: var(--ochre); }

.prog-year-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-bottom: 24px;
}
.prog-mini-month {
	background: var(--paper);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 12px;
	box-shadow: var(--shadow);
}
.prog-mini-title {
	font-size: 0.95rem;
	color: var(--blue);
	margin: 0 0 10px;
	text-transform: capitalize;
	text-align: center;
}
.prog-mini-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
}
.prog-mini-dow {
	text-align: center;
	font-size: 0.65rem;
	font-weight: 700;
	color: var(--muted);
	padding: 2px 0;
}
.prog-mini-day {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	font-size: 0.72rem;
	color: var(--muted);
	position: relative;
}
.prog-mini-day.is-out { opacity: 0.25; }
.prog-mini-day.has-event {
	background: #e4ecf6;
	color: var(--blue);
	font-weight: 700;
	cursor: pointer;
}
.prog-mini-day.has-event.cat-unnep { background: #e4ecf6; color: #1a4b8c; }
.prog-mini-day.has-event.cat-fesztival { background: #f7efd9; color: #8a6a1a; }
.prog-mini-day.has-event.cat-gasztro { background: #f5e4dc; color: #b85c38; }
.prog-mini-day.has-event.cat-kiallitas { background: #ddecea; color: #2a6f6a; }
.prog-mini-day.has-event.cat-eloadas { background: #e8e4f0; color: #5c4a8a; }
.prog-mini-day.has-event.cat-csalad { background: #e0ede3; color: #3d7a4a; }
.prog-mini-day.has-event.cat-tura { background: #efe4d8; color: #8a5a2b; }
.prog-mini-day.has-event:hover,
.prog-mini-day.has-event:focus-visible {
	outline: 2px solid var(--ochre);
	outline-offset: 1px;
}
.prog-mini-day.has-event.is-dimmed {
	opacity: 0.28;
	cursor: default;
	pointer-events: none;
}

.prog-day-panel {
	background: var(--paper);
	border: 1px solid var(--border);
	border-top: 3px solid var(--ochre);
	border-radius: var(--radius);
	padding: 20px 22px;
	box-shadow: var(--shadow);
	margin-bottom: 28px;
}
.prog-day-panel-title {
	font-size: 1.15rem;
	color: var(--blue);
	margin: 0 0 14px;
	text-transform: capitalize;
}
.prog-day-panel-close {
	margin-top: 14px;
	font: inherit;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--blue);
	background: none;
	border: none;
	cursor: pointer;
	text-decoration: underline;
}

.prog-breadcrumb {
	font-size: 0.9rem;
	color: var(--muted);
	margin-bottom: 20px;
}
.prog-breadcrumb a { font-weight: 600; }
.prog-breadcrumb-sep { margin: 0 8px; opacity: 0.5; }

.prog-detail-head { margin-bottom: 28px; }
.prog-detail-head h1 {
	font-size: clamp(1.7rem, 4vw, 2.35rem);
	color: var(--blue);
	margin: 10px 0 16px;
	line-height: 1.25;
}
.prog-detail-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.prog-detail-facts {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	color: var(--muted);
	font-size: 0.98rem;
}
.prog-detail-facts strong { color: var(--text); font-weight: 700; }
.prog-gcal {
	display: inline-block;
	padding: 10px 18px;
	border-radius: var(--radius);
	background: var(--blue);
	color: #fff !important;
	font-weight: 700;
	font-size: 0.92rem;
}
.prog-gcal:hover { background: var(--blue-dark); color: #fff !important; }

.prog-detail-image {
	margin: 0 0 28px;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
}
.prog-detail-image img { width: 100%; }
.prog-detail-body { max-width: 68ch; margin-bottom: 40px; }
.prog-detail-body p { margin-bottom: 14px; }

.prog-detail-nav {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 16px;
	align-items: start;
	padding-top: 28px;
	border-top: 1px solid var(--border);
}
.prog-detail-nav-label {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--ochre);
	margin-bottom: 4px;
}
.prog-detail-nav-title {
	display: block;
	font-weight: 600;
	color: var(--blue);
	font-size: 0.95rem;
}
.prog-detail-nav-next { text-align: right; }
.prog-detail-nav-back {
	text-align: center;
	padding-top: 4px;
}
.prog-detail-nav-back a {
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--muted);
}
.prog-detail-nav-back a:hover { color: var(--blue); }

@media (max-width: 960px) {
	.prog-year-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.prog-toolbar {
		position: static;
		padding: 12px;
		gap: 10px;
	}
	.prog-card { grid-template-columns: 4.5rem 1fr; padding: 14px; gap: 12px; }
	.prog-datebadge { min-height: 4.5rem; }
	.prog-datebadge-day { font-size: 1.35rem; }
	.prog-detail-nav { grid-template-columns: 1fr; gap: 18px; }
	.prog-detail-nav-next { text-align: left; }
	.prog-detail-nav-back { order: -1; text-align: left; }
}

@media (max-width: 560px) {
	.prog-year-grid { grid-template-columns: 1fr; }
	.prog-views { width: 100%; }
	.prog-view-btn { flex: 1; text-align: center; }
}

/* Támogatóink */
.sponsors { padding-top: 8px; padding-bottom: 64px; }
.page-head + .sponsors { padding-top: 4px; }
.sponsors.has-copy { padding-top: 48px; }
.sponsors.has-copy h2 { margin-bottom: 24px; }

.sponsors-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.sponsors-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 12px;
	height: 100%;
	padding: 18px 16px 16px;
	background: var(--paper);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	color: var(--text);
	transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

a.sponsors-item:hover {
	border-color: var(--ochre);
	box-shadow: 0 6px 28px rgba(26, 75, 140, 0.12);
	color: var(--blue);
}

a.sponsors-item:focus-visible {
	outline: 3px solid var(--ochre);
	outline-offset: 2px;
}

.sponsors-logo {
	flex: 0 0 auto;
	width: 100%;
	height: 88px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 6px;
	padding: 10px 12px;
	overflow: hidden;
}

.sponsors-logo--dark {
	background: #2a241c;
	border-color: #1a1610;
}

.sponsors-logo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.sponsors-mono {
	font-family: var(--font-family);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--blue);
}

.sponsors-name {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--blue);
}

a.sponsors-item:hover .sponsors-name { color: var(--ochre); }

.sponsors-ext {
	position: absolute;
	top: 10px;
	right: 12px;
	font-size: 0.95rem;
	color: var(--ochre);
	opacity: 0.85;
}

@media (max-width: 800px) {
	.sponsors-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
	.sponsors-list { grid-template-columns: 1fr; }
	.sponsors-item { padding: 14px 14px 12px; }
	.sponsors-logo { height: 72px; }
}

/* Szállások */
.lodgings { padding-top: 8px; padding-bottom: 64px; }
.page-head + .lodgings { padding-top: 4px; }

.lodgings-group { margin-bottom: 40px; }
.lodgings-group:last-child { margin-bottom: 0; }
.lodgings-group h2 { margin-bottom: 16px; font-size: 1.45rem; }

.lodgings-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lodgings-card {
	padding: 16px 20px;
	background: var(--paper);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.lodgings-name {
	margin: 0 0 6px;
	font-size: 1.12rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--blue);
}

.lodgings-name a {
	color: inherit;
	display: inline;
}

.lodgings-name a:hover { color: var(--ochre); }

.lodgings-name a:focus-visible {
	outline: 3px solid var(--ochre);
	outline-offset: 2px;
}

.lodgings-ext {
	display: inline-block;
	margin-left: 6px;
	font-size: 0.95rem;
	color: var(--ochre);
	opacity: 0.85;
	font-weight: 400;
}

.lodgings-contacts {
	margin: 0;
	font-size: 0.95rem;
	color: var(--muted);
	line-height: 1.5;
}

.lodgings-contacts a { color: var(--blue); }
.lodgings-contacts a:hover { color: var(--ochre); }

.lodgings-sep {
	margin: 0 8px;
	color: var(--ochre);
	opacity: 0.7;
}

.lodgings-empty {
	margin: 0;
	color: var(--muted);
	font-style: italic;
}

@media (max-width: 640px) {
	.lodgings-card { padding: 14px 16px; }
	.lodgings-contacts {
		display: flex;
		flex-direction: column;
		gap: 4px;
	}
	.lodgings-sep { display: none; }
}

/* —— Információ / térkép —— */
.page-head + .venue-map { padding-top: 4px; }

.venue-map-layout {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.venue-map-stage {
	position: relative;
	z-index: 0;
	isolation: isolate;
	width: 100%;
	height: 480px;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--border);
	background: #dbeafe;
	scroll-margin-top: 96px;
	box-shadow: var(--shadow);
}

#venue-map-canvas {
	width: 100%;
	height: 100%;
}

.venue-map-canvas .leaflet-container,
#venue-map-canvas.leaflet-container {
	font-family: var(--font-family);
	height: 100%;
	z-index: 0;
}

.leaflet-container img {
	max-width: none !important;
	max-height: none !important;
	height: unset;
}

.venue-map-locate {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 500;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border: 0;
	border-radius: 999px;
	background: var(--blue);
	color: #fff;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 700;
	box-shadow: 0 8px 24px rgba(26, 75, 140, 0.28);
	cursor: pointer;
}

.venue-map-locate:disabled { opacity: 0.65; }

.leaflet-div-icon.venue-pin {
	background: transparent;
	border: 0;
}

.venue-pin-dot {
	display: block;
	width: 28px;
	height: 28px;
	background: var(--blue);
	border: 2px solid #fff;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	box-shadow: 0 2px 8px rgba(26, 75, 140, 0.45);
}

.venue-pin-n {
	display: block;
	transform: rotate(45deg);
	color: #fff;
	font: 700 13px/24px var(--font-family);
	text-align: center;
}

.leaflet-popup-content-wrapper {
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
}

.leaflet-popup-content {
	margin: 12px 14px;
	font-family: var(--font-family);
	font-size: 0.95rem;
	line-height: 1.45;
}

.venue-popup-kind {
	margin: 0 0 4px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ochre);
}

.venue-popup-title {
	margin: 0 0 6px;
	font-weight: 700;
	color: var(--blue);
}

.venue-popup-addr {
	margin: 0 0 10px;
	color: var(--muted);
}

.venue-popup-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	margin: 0;
}

.venue-popup-dir,
.venue-map-dir {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--blue);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 1.2;
}

.venue-popup-dir:hover,
.venue-map-dir:hover {
	color: #fff;
	background: var(--blue-dark);
}

.venue-popup-more,
.venue-map-more {
	font-size: 0.9rem;
	font-weight: 700;
}

.venue-map-side h2 { margin: 0 0 14px; }

.venue-map-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.venue-map-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	padding: 12px 16px 14px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--paper);
}

.venue-map-pick {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	text-align: left;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	font: inherit;
	color: inherit;
}

.venue-map-item:hover,
.venue-map-item:focus-within { border-color: var(--blue); }

.venue-map-pick:focus-visible {
	outline: 3px solid var(--ochre);
	outline-offset: 2px;
}

.venue-map-item.is-active {
	border-color: var(--blue);
	box-shadow: 0 0 0 2px rgba(26, 75, 140, 0.16);
}

.venue-map-num {
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--blue);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	line-height: 28px;
	text-align: center;
}

.venue-map-item.is-active .venue-map-num { background: var(--ochre); }

.venue-map-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.venue-map-kind {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ochre);
}

.venue-map-name {
	font-weight: 700;
	color: var(--blue);
	line-height: 1.35;
}

.venue-map-addr {
	font-size: 0.95rem;
	color: var(--muted);
}

.venue-map-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
	margin-left: 40px;
}

.travel-facts { padding-top: 28px; }

.travel-facts h2 { margin-bottom: 18px; }

.travel-facts-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.travel-facts-card {
	padding: 18px 20px 20px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: var(--shadow);
}

.travel-facts-label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ochre);
}

.travel-facts-card p {
	margin: 0;
	color: var(--text);
	line-height: 1.5;
}

.travel-facts-card a { font-weight: 700; }

@media (min-width: 901px) {
	.venue-map-layout {
		display: grid;
		grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
		gap: 22px;
		align-items: stretch;
	}
	.venue-map-stage {
		height: auto;
		min-height: 560px;
	}
	.venue-map-side {
		display: flex;
		flex-direction: column;
		min-height: 0;
		max-height: 560px;
	}
	.venue-map-list {
		overflow-y: auto;
		flex: 1;
		padding-right: 4px;
	}
}

@media (max-width: 900px) {
	.venue-map-stage { height: 360px; }
	.travel-facts-grid { grid-template-columns: 1fr; }
}
