/**
 * Frontend der Veranstaltungsseiten (Single + Übersicht).
 *
 * CI: Main #db2978, Text #181818, Weiß #ffffff, Akzente #3a86b5 / #7bb646.
 * App-artig, Apple-Style: weiche Schatten, große Radien, klare Typo.
 */

.bul-single,
.bul-overview,
.bul-archive {
	--bul-main: #db2978;
	--bul-main-dark: #b81f63;
	--bul-ink: #181818;
	--bul-muted: #6b6b70;
	--bul-line: #e8e8ec;
	--bul-accent: #3a86b5;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--bul-ink);
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.bul-single *,
.bul-overview *,
.bul-archive * {
	box-sizing: border-box;
}

/* --------------------------------------------------------------------- */
/* Buttons & Badges                                                       */
/* --------------------------------------------------------------------- */

.bul-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 24px;
	border-radius: 980px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	border: 0;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.bul-btn--primary {
	color: #fff;
	background: linear-gradient(135deg, var(--bul-main) 0%, var(--bul-main-dark) 100%);
	box-shadow: 0 10px 24px rgba(219, 41, 120, 0.30);
}

.bul-btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(219, 41, 120, 0.38);
	color: #fff;
}

.bul-btn--ghost {
	color: var(--bul-ink);
	background: #fff;
	border: 1.5px solid var(--bul-line);
}

.bul-btn--ghost:hover {
	border-color: #d0d0d8;
	color: var(--bul-ink);
}

.bul-btn--block {
	display: flex;
	width: 100%;
	margin-top: 12px;
}

.bul-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 980px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #fff;
	background: #8e8e93;
}

.bul-badge--soldout { background: #d70015; }
.bul-badge--postponed { background: #ff9f0a; color: #181818; }
.bul-badge--cancelled { background: #1c1c1e; }

/* --------------------------------------------------------------------- */
/* Single – Hero                                                          */
/* --------------------------------------------------------------------- */

.bul-hero {
	position: relative;
	border-radius: 28px;
	overflow: hidden;
	margin: 24px 0 28px;
	background: #f2f2f5;
}

.bul-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: blur(28px) saturate(1.3);
	transform: scale(1.15);
	opacity: 0.45;
}

.bul-hero__inner {
	position: relative;
	display: flex;
	gap: 28px;
	padding: 28px;
	align-items: center;
}

.bul-hero__flyer {
	flex: 0 0 300px;
	max-width: 300px;
	/* Als Button zurücksetzen (Flyer ist klickbar zum Vergrößern) */
	padding: 0;
	border: 0;
	background: none;
	cursor: zoom-in;
	display: block;
	width: 300px;
}

.bul-hero__flyer img {
	width: 100%;
	height: auto;
	border-radius: 18px;
	box-shadow: 0 18px 44px rgba(24, 24, 24, 0.28);
	display: block;
	transition: transform 0.2s ease;
}

.bul-hero__flyer:hover img {
	transform: translateY(-2px);
}

/* Lightbox */
.bul-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(0, 0, 0, 0.86);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	cursor: zoom-out;
	animation: bul-lb-in 0.18s ease both;
}

@keyframes bul-lb-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.bul-lightbox img {
	max-width: 95vw;
	max-height: 92vh;
	width: auto;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
}

.bul-lightbox__close {
	position: absolute;
	top: 14px;
	right: 20px;
	font-size: 38px;
	line-height: 1;
	color: #fff;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 4px 10px;
}

.bul-hero__meta {
	flex: 1 1 auto;
	min-width: 0;
}

.bul-eyebrow {
	display: inline-block;
	color: var(--bul-main);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 8px 0;
}

.bul-hero__title {
	margin: 6px 0;
	font-size: 40px;
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--bul-ink);
}

.bul-hero__subtitle {
	margin: 0 0 6px;
	font-size: 19px;
	color: var(--bul-muted);
}

.bul-hero__artists {
	margin: 6px 0 14px;
	font-size: 17px;
	font-weight: 600;
}

.bul-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 18px;
}

.bul-fact {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	color: var(--bul-ink);
}

.bul-fact__ico { opacity: 0.85; }

.bul-hero__cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* --------------------------------------------------------------------- */
/* Single – Body                                                          */
/* --------------------------------------------------------------------- */

.bul-body {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 32px;
	align-items: start;
	padding-bottom: 40px;
}

.bul-section {
	margin-bottom: 30px;
}

.bul-section h2 {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.01em;
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--bul-line);
}

.bul-prose {
	font-size: 16px;
	line-height: 1.7;
	color: #333;
}

.bul-lineup p { margin: 6px 0; font-size: 16px; }
.bul-muted { color: var(--bul-muted); }
.bul-link { color: var(--bul-accent); font-weight: 600; text-decoration: none; }

.bul-embed {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
}

.bul-embed iframe {
	width: 100% !important;
	aspect-ratio: 16 / 9;
	height: auto !important;
	border: 0;
	display: block;
}

/* --------------------------------------------------------------------- */
/* FAQ-Akkordeon (Ort & Location, Zielgruppe & Zugang …)                  */
/* --------------------------------------------------------------------- */

.bul-acc-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Wichtig: alle FAQ-Regeln sind auf .bul-acc-list beschränkt, damit sie NICHT
   das Konto-Menü im Header treffen (das ebenfalls .bul-acc / .bul-acc__head
   nutzt – Namensgleichheit). */
.bul-acc-list .bul-acc {
	border: 1px solid var(--bul-line) !important;
	border-radius: 18px !important;
	background: #fff !important;
	background-clip: padding-box !important; /* verhindert die feine Doppellinie */
	box-shadow: 0 6px 20px rgba(24, 24, 24, 0.05);
	overflow: hidden;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.bul-acc-list .bul-acc[open] {
	border-color: rgba(219, 41, 120, 0.28);
	box-shadow: 0 10px 26px rgba(24, 24, 24, 0.08);
}

.bul-acc-list .bul-acc .bul-acc__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	cursor: pointer;
	list-style: none;
	font-size: 17.5px;
	font-weight: 700;
	line-height: 1.3;
	text-align: left;
	color: var(--bul-ink);
	user-select: none;
	/* Theme-Rahmen an summary/details hart zurücksetzen (verhindert Doppellinie) */
	border: 0 !important;
	outline: 0 !important;
	box-shadow: none !important;
	background: none !important;
}

/* Trennlinie nur im geöffneten Zustand – genau eine Linie */
.bul-acc-list .bul-acc[open] .bul-acc__head {
	border-bottom: 1px solid var(--bul-line) !important;
}

.bul-acc-list .bul-acc__title { flex: 1 1 auto; }

/* Standard-Dreieck des <details> ausblenden */
.bul-acc-list .bul-acc__head::-webkit-details-marker { display: none; }
.bul-acc-list .bul-acc__head::marker { content: ""; }

.bul-acc-list .bul-acc__head:hover { color: var(--bul-main); }

.bul-acc-list .bul-acc__chev {
	flex: 0 0 auto;
	color: var(--bul-muted);
	transition: transform 0.22s ease, color 0.18s ease;
	display: inline-flex;
}

.bul-acc-list .bul-acc[open] .bul-acc__chev {
	transform: rotate(180deg);
	color: var(--bul-main);
}

.bul-acc-list .bul-acc .bul-acc__body {
	padding: 16px 24px 20px;
	border-top: 0 !important; /* Linie sitzt am Kopf – keine zweite Linie hier */
	animation: bul-acc-in 0.24s ease both;
}

@keyframes bul-acc-in {
	from { opacity: 0; transform: translateY(-4px); }
	to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
	.bul-acc-list .bul-acc__body { animation: none; }
}

.bul-acc-list .bul-acc__body .bul-dl__row {
	padding: 12px 0;
	font-size: 15.5px;
}

.bul-acc-list .bul-acc__body .bul-dl__row:first-child { padding-top: 4px; }
.bul-acc-list .bul-acc__body .bul-dl__row:last-child { border-bottom: 0; padding-bottom: 0; }

.bul-dl {
	display: grid;
	gap: 0;
}

.bul-dl__row {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 16px;
	padding: 11px 0;
	border-bottom: 1px solid var(--bul-line);
}

.bul-dl__row dt {
	font-weight: 700;
	color: var(--bul-ink);
	margin: 0;
}

.bul-dl__row dd {
	margin: 0;
	color: #333;
}

/* Ja/Nein-Angaben: Haken rechts, in derselben Zeile wie das Label. */
.bul-dl__row--check {
	grid-template-columns: 1fr auto;
	align-items: center;
}

.bul-dl__check {
	text-align: right;
	color: #7bb646;
	font-weight: 700;
	font-size: 18px;
}

.bul-ticketlink { margin-top: 16px; }

/* Seitenleiste */
.bul-side {
	position: sticky;
	top: 20px;
	display: grid;
	gap: 16px;
}

.bul-card {
	background: #fff;
	border: 1px solid var(--bul-line);
	border-radius: 20px;
	padding: 22px;
	box-shadow: 0 6px 20px rgba(24, 24, 24, 0.05);
}

.bul-card h3 {
	margin: 0 0 14px;
	font-size: 17px;
	font-weight: 800;
}

.bul-facts {
	list-style: none;
	margin: 0 0 6px;
	padding: 0;
}

.bul-facts li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 0;
	border-bottom: 1px solid var(--bul-line);
	font-size: 14.5px;
}

.bul-facts li:last-child { border-bottom: 0; }
.bul-facts li span { color: var(--bul-muted); }
.bul-facts li strong { text-align: right; }

.bul-card--qr { text-align: center; }
.bul-qr {
	width: 150px;
	height: 150px;
	margin: 0 auto 10px;
}
.bul-qr svg { width: 100%; height: 100%; }

/* Teilen: kleine runde Buttons */
.bul-share__row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 4px;
}

.bul-share__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 0;
	cursor: pointer;
	color: #fff;
	background: #8a8a8e;
	text-decoration: none;
	transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
	-webkit-appearance: none;
	appearance: none;
	padding: 0;
}

.bul-share__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(24, 24, 24, 0.18);
	color: #fff;
}

.bul-share__btn svg { display: block; }

.bul-share__btn--copy     { background: #181818; }
.bul-share__btn--whatsapp { background: #25d366; }
.bul-share__btn--telegram { background: #229ed9; }
.bul-share__btn--facebook { background: #1877f2; }
.bul-share__btn--x        { background: #000000; }
.bul-share__btn--email    { background: var(--bul-main); }
.bul-share__btn--native   { background: linear-gradient(135deg, var(--bul-main), var(--bul-main-dark)); }

.bul-share__btn.is-done {
	background: #1a7f37;
}

.bul-share__copied {
	display: inline-block;
	margin-top: 12px;
	font-size: 13px;
	font-weight: 600;
	color: #1a7f37;
}

/* hidden-Attribut respektieren (sonst immer sichtbar) */
.bul-share__copied[hidden],
.bul-share__btn[hidden] {
	display: none !important;
}

/* --------------------------------------------------------------------- */
/* Übersicht                                                              */
/* --------------------------------------------------------------------- */

.bul-archive__title {
	font-size: 34px;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 28px 0 20px;
}

/* --------------------------------------------------------------------- */
/* Werkzeugleiste: Filter-Button, Sortierung, Ansicht                     */
/* --------------------------------------------------------------------- */

.bul-toolbar {
	display: flex;
	align-items: center;
	gap: 12px 16px;
	flex-wrap: wrap;
	margin-bottom: 26px;
}
.bul-toolbar__right {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}

.bul-toolbar__filterbtn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border: 1.5px solid var(--bul-line);
	border-radius: 980px;
	background: #fff;
	color: var(--bul-ink);
	font-size: 14.5px;
	font-weight: 700;
	cursor: pointer;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.bul-toolbar__filterbtn:hover { border-color: var(--bul-main); }
.bul-toolbar__filterbtn.is-open {
	border-color: var(--bul-main);
	color: var(--bul-main);
	box-shadow: 0 0 0 3px rgba(219, 41, 120, 0.12);
}
.bul-toolbar__filterbtn svg { flex: 0 0 auto; }

/* Sortier-Umschalter (Apple-Style) */
.bul-sort {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.bul-sort__label { font-size: 14px; font-weight: 600; color: var(--bul-muted); white-space: nowrap; }

.bul-toggle {
	position: relative;
	display: flex;
	background: #ececef;
	border-radius: 980px;
	padding: 3px;
}
.bul-toggle__opt {
	position: relative;
	z-index: 1;
	flex: 1 1 0;
	text-align: center;
	padding: 8px 18px;
	border-radius: 980px;
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--bul-muted);
	text-decoration: none;
	/* Umbruch zulassen, damit lange Übersetzungen nicht abgeschnitten werden. */
	white-space: normal;
	transition: color 0.22s ease;
}
.bul-toggle__opt.is-active { color: #fff; }
.bul-toggle__opt:hover { color: var(--bul-ink); }
.bul-toggle__opt.is-active:hover { color: #fff; }
.bul-toggle__knob {
	position: absolute;
	top: 3px;
	bottom: 3px;
	left: 3px;
	width: calc(50% - 3px);
	border-radius: 980px;
	background: linear-gradient(135deg, var(--bul-main) 0%, var(--bul-main-dark) 100%);
	box-shadow: 0 4px 12px rgba(219, 41, 120, 0.28);
	transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 0;
}
.bul-toggle[data-active="artist"] .bul-toggle__knob { transform: translateX(100%); }

/* Ansicht-Umschalter (Raster / Liste) */
.bul-viewswitch {
	display: inline-flex;
	gap: 4px;
	background: #ececef;
	border-radius: 12px;
	padding: 3px;
}
.bul-viewswitch__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 34px;
	border: 0;
	border-radius: 9px;
	background: transparent;
	color: var(--bul-muted);
	cursor: pointer;
	transition: background 0.16s ease, color 0.16s ease;
}
.bul-viewswitch__btn.is-active {
	background: #fff;
	color: var(--bul-main);
	box-shadow: 0 2px 6px rgba(24, 24, 24, 0.12);
}

/* Filterpanel (eingeklappt) */
.bul-filterpanel { margin-bottom: 24px; }
.bul-filterpanel[hidden] { display: none; }

.bul-filters {
	background: #fff;
	border: 1px solid var(--bul-line);
	border-radius: 20px;
	padding: 16px;
	margin-bottom: 0;
	box-shadow: 0 6px 20px rgba(24, 24, 24, 0.05);
}

.bul-filters__row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.bul-select {
	flex: 1 1 160px;
	min-width: 140px;
	padding: 11px 14px;
	border: 1.5px solid var(--bul-line);
	border-radius: 12px;
	background: #fff;
	font-size: 14.5px;
	color: var(--bul-ink);
	-webkit-appearance: none;
	appearance: none;
}

.bul-select:focus {
	outline: none;
	border-color: var(--bul-main);
	box-shadow: 0 0 0 3px rgba(219, 41, 120, 0.14);
}

.bul-filters__actions {
	display: flex;
	gap: 10px;
	margin-top: 12px;
}

/* --------------------------------------------------------------------- */
/* Listen-/Raster-Layout (umschaltbar)                                    */
/* --------------------------------------------------------------------- */

/* Künstler-Gruppen */
.bul-group { margin: 0 0 26px; }
.bul-group__title {
	font-size: 18px;
	font-weight: 800;
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--bul-line);
}

/* Raster (Standard auf Desktop, sowie erzwungen per data-view="grid") */
.bul-overview[data-view="grid"] .bul-list,
.bul-overview[data-view="auto"] .bul-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 22px;
}

/* Liste (horizontal) – Desktop: Flyer links (volle Höhe), Infos rechts,
   Fußzeile (Preis über Button) unten rechts. */
.bul-overview[data-view="list"] .bul-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.bul-overview[data-view="list"] .bul-eventcard {
	display: grid;
	grid-template-columns: 240px 1fr;
	grid-template-areas: "media body" "media foot";
	align-items: stretch;
}
.bul-overview[data-view="list"] .bul-eventcard__media {
	grid-area: media;
	aspect-ratio: auto;
	height: 100%;
}
.bul-overview[data-view="list"] .bul-eventcard__body {
	grid-area: body;
	justify-content: center;
}
.bul-overview[data-view="list"] .bul-eventcard__foot {
	grid-area: foot;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	padding: 0 18px 18px;
	margin-top: 0;
}

/* Standard auf dem Handy: kompakte Zeile – 1:1-Flyer oben links, Titel/Künstler
   rechts, Fußzeile (Preis links, Button rechts) volle Breite darunter. */
@media (max-width: 768px) {
	.bul-overview[data-view="auto"] .bul-list {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}
	.bul-overview[data-view="auto"] .bul-eventcard,
	.bul-overview[data-view="list"] .bul-eventcard {
		display: grid;
		grid-template-columns: 108px 1fr;
		grid-template-areas: "media body" "foot foot";
		align-items: start;
	}
	.bul-overview[data-view="auto"] .bul-eventcard__media,
	.bul-overview[data-view="list"] .bul-eventcard__media {
		grid-area: media;
		width: 108px;
		height: 108px;
		aspect-ratio: 1 / 1;
		align-self: start;
	}
	.bul-overview[data-view="auto"] .bul-eventcard__body,
	.bul-overview[data-view="list"] .bul-eventcard__body {
		grid-area: body;
		justify-content: center;
		padding: 12px 14px;
	}
	.bul-overview[data-view="auto"] .bul-eventcard__title,
	.bul-overview[data-view="list"] .bul-eventcard__title { font-size: 16px; }
	/* Beschreibung, Genre und Meta auf dem Handy ausblenden (kompakt). */
	.bul-overview[data-view="auto"] .bul-eventcard__excerpt,
	.bul-overview[data-view="list"] .bul-eventcard__excerpt,
	.bul-overview[data-view="auto"] .bul-eventcard__genre,
	.bul-overview[data-view="list"] .bul-eventcard__genre,
	.bul-overview[data-view="auto"] .bul-eventcard__meta,
	.bul-overview[data-view="list"] .bul-eventcard__meta { display: none; }
	/* Fußzeile: Preis links, Button rechts – auf einer Linie. */
	.bul-overview[data-view="auto"] .bul-eventcard__foot,
	.bul-overview[data-view="list"] .bul-eventcard__foot {
		grid-area: foot;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		padding: 0 14px 14px;
		margin-top: 0;
	}
	.bul-overview[data-view="auto"] .bul-eventcard__buy,
	.bul-overview[data-view="list"] .bul-eventcard__buy { padding: 10px 18px; }
	/* Datum-Badge auf dem kleinen Flyer verkleinern. */
	.bul-overview[data-view="auto"] .bul-eventcard__date,
	.bul-overview[data-view="list"] .bul-eventcard__date { top: 6px; left: 6px; padding: 3px 7px; border-radius: 9px; }

	/* Erzwungenes Raster auf dem Handy: eine Spalte. */
	.bul-overview[data-view="grid"] .bul-list { grid-template-columns: 1fr; }

	.bul-toolbar { gap: 10px; }
	.bul-viewswitch { margin-left: 0; }
}

.bul-eventcard {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--bul-line);
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	color: var(--bul-ink);
	box-shadow: 0 6px 20px rgba(24, 24, 24, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Klickfläche über der ganzen Karte (erlaubt echten „Tickets kaufen"-Button). */
.bul-eventcard__link {
	position: absolute;
	inset: 0;
	z-index: 1;
	text-indent: -9999px;
	overflow: hidden;
}
.bul-eventcard__buy { position: relative; z-index: 2; }

/* Kurzbeschreibung + Fußzeile (Preis/Button) nur in der Listenansicht. */
.bul-eventcard__excerpt,
.bul-eventcard__foot { display: none; }

.bul-eventcard__excerpt {
	margin: 4px 0 2px;
	color: var(--bul-muted);
	font-size: 14px;
	line-height: 1.5;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bul-eventcard__foot {
	align-items: flex-start;
	gap: 10px;
	margin-top: 12px;
}
.bul-eventcard__price {
	font-weight: 800;
	font-size: 16px;
	color: var(--bul-ink);
}
.bul-eventcard__buy { padding: 10px 20px; font-size: 14px; }

/* Vollständigen Flyer im Kachelmodus zeigen (nicht beschneiden). */
.bul-overview[data-view="grid"] .bul-eventcard__media {
	aspect-ratio: auto;
}
.bul-overview[data-view="grid"] .bul-eventcard__media img {
	height: auto;
	object-fit: contain;
}
@media (min-width: 769px) {
	.bul-overview[data-view="auto"] .bul-eventcard__media { aspect-ratio: auto; }
	.bul-overview[data-view="auto"] .bul-eventcard__media img { height: auto; object-fit: contain; }
}

/* Fußzeile (Preis + Button) in der Listenansicht einblenden. */
.bul-overview[data-view="list"] .bul-eventcard__foot { display: flex; }
@media (max-width: 768px) {
	.bul-overview[data-view="auto"] .bul-eventcard__foot { display: flex; }
}
/* Kurzbeschreibung nur in der Listenansicht auf dem DESKTOP (Handy: aus). */
@media (min-width: 769px) {
	.bul-overview[data-view="list"] .bul-eventcard__excerpt { display: -webkit-box; }
}

.bul-eventcard:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(24, 24, 24, 0.12);
	color: var(--bul-ink);
}

.bul-eventcard__media {
	position: relative;
	aspect-ratio: 3 / 2;
	background: linear-gradient(135deg, #f2f2f5, #e6e6ec);
	overflow: hidden;
}

.bul-eventcard__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.bul-eventcard__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 44px;
	opacity: 0.5;
}

.bul-eventcard__date {
	position: absolute;
	top: 12px;
	left: 12px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 12px;
	padding: 6px 10px;
	text-align: center;
	line-height: 1.1;
	box-shadow: 0 4px 12px rgba(24, 24, 24, 0.16);
}

.bul-eventcard__day { display: block; font-size: 20px; font-weight: 800; }
.bul-eventcard__mon { display: block; font-size: 11px; text-transform: uppercase; color: var(--bul-main); font-weight: 700; }

.bul-eventcard__badge {
	position: absolute;
	top: 12px;
	right: 12px;
}

.bul-eventcard__body {
	padding: 16px 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.bul-eventcard__genre {
	color: var(--bul-main);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.bul-eventcard__title {
	font-size: 19px;
	font-weight: 800;
	line-height: 1.2;
	margin: 2px 0;
}

.bul-eventcard__artist {
	color: var(--bul-muted);
	font-size: 14.5px;
	margin: 0 0 6px;
}

.bul-eventcard__meta {
	display: flex;
	flex-direction: column;
	gap: 3px;
	font-size: 13.5px;
	color: #444;
	margin-top: auto;
}

.bul-empty {
	text-align: center;
	padding: 60px 20px;
	color: var(--bul-muted);
	font-size: 17px;
}

.bul-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 28px;
}

.bul-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	border-radius: 12px;
	border: 1px solid var(--bul-line);
	background: #fff;
	color: var(--bul-ink);
	text-decoration: none;
	font-weight: 600;
}

.bul-pagination .page-numbers.current {
	background: var(--bul-main);
	color: #fff;
	border-color: var(--bul-main);
}

/* --------------------------------------------------------------------- */
/* Responsive                                                             */
/* --------------------------------------------------------------------- */

@media (max-width: 860px) {
	.bul-body {
		grid-template-columns: 1fr;
	}
	.bul-side {
		position: static;
	}
	.bul-hero__inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.bul-hero__flyer {
		flex-basis: auto;
		width: 100%;
		max-width: 100%;
		align-self: stretch;
	}
	.bul-hero__title {
		font-size: 30px;
	}
	.bul-dl__row {
		grid-template-columns: 1fr;
		gap: 2px;
	}
	/* Ja/Nein bleibt zweispaltig: Label links, Haken rechts. */
	.bul-dl__row--check {
		grid-template-columns: 1fr auto;
		gap: 12px;
	}
}

/* RTL erbt aus rtl.css; nur Kartendatum spiegeln. */
.rtl .bul-eventcard__date { left: auto; right: 12px; }
.rtl .bul-eventcard__badge { right: auto; left: 12px; }
.rtl .bul-facts li strong { text-align: left; }
