/**
 * DMP Jet Engine Frontend
 * Event pages, cards, booking and forms.
 *
 * Mobile-first. Pure CSS Grid and Flexbox, no framework.
 * Base tokens come from dmp-shared.css; this file refines them for the
 * public-facing event experience.
 */

/* ==========================================================================
   Scale
   ========================================================================== */

.dmp-event {
	/* Radii: 12–18px across cards and controls. */
	--dmp-r-btn: 12px;
	--dmp-r-input: 12px;
	--dmp-r-card: 18px;
	--r-tile: 14px;

	/* Ink */
	--ink: #111214;
	--ink-2: #5b6068;
	--ink-3: #8a9099;
	--line: #e8eaed;
	--wash: #f7f8f9;

	/* Elevation — soft only. */
	--sh-1: 0 1px 2px rgba(17, 18, 20, 0.04), 0 6px 20px rgba(17, 18, 20, 0.05);
	--sh-2: 0 2px 4px rgba(17, 18, 20, 0.05), 0 18px 44px rgba(17, 18, 20, 0.09);
	--sh-3: 0 24px 60px rgba(17, 18, 20, 0.16);

	/* Rhythm */
	--pad: clamp(20px, 5vw, 40px);
	--stack: clamp(40px, 6vw, 72px);
	--measure: 68ch;

	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--pad) clamp(64px, 9vw, 120px);
	color: var(--ink);
	font-size: 1.0625rem;
	line-height: 1.65;
	overflow-x: clip;
}

.dmp-event *,
.dmp-event *::before,
.dmp-event *::after {
	box-sizing: border-box;
}

.dmp-event img {
	max-width: 100%;
}

/* ==========================================================================
   Control reset

   Themes style every button and link on the page. These resets stop that
   bleeding into our components — the pink hover state came from the theme.
   ========================================================================== */

.dmp-event button,
.dmp-event summary {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	background: none;
	border: 0;
	border-radius: 0;
	color: inherit;
	font: inherit;
	text-transform: none;
	letter-spacing: normal;
	text-decoration: none;
	box-shadow: none;
	text-shadow: none;
}

.dmp-event button:hover,
.dmp-event button:focus,
.dmp-event button:active,
.dmp-event summary:hover,
.dmp-event summary:focus {
	background: none;
	color: inherit;
	border-color: transparent;
	box-shadow: none;
	text-decoration: none;
	outline: none;
}

.dmp-event a {
	box-shadow: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.dmp-event .dmp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 48px;
	padding: 0 24px;
	border: 0;
	border-radius: var(--dmp-r-btn);
	font-family: inherit;
	font-weight: 600;
	font-size: 0.9688rem;
	letter-spacing: -0.005em;
	text-decoration: none;
	cursor: pointer;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.dmp-event .dmp-btn--block {
	display: flex;
	width: 100%;
}

.dmp-event .dmp-btn--lg {
	min-height: 56px;
	padding: 0 34px;
	font-size: 1.0625rem;
}

.dmp-event .dmp-btn--sm {
	min-height: 42px;
	padding: 0 18px;
	font-size: 0.9062rem;
}

.dmp-event .dmp-btn--accent {
	background: var(--dmp-accent);
	color: #fff;
	box-shadow: 0 6px 18px rgba(245, 130, 32, 0.28);
}

.dmp-event .dmp-btn--accent:hover {
	background: #e0741a;
	transform: translateY(-1px);
	box-shadow: 0 10px 26px rgba(245, 130, 32, 0.34);
}

.dmp-event .dmp-btn--primary {
	background: var(--ink);
	color: #fff;
}

.dmp-event .dmp-btn--primary:hover {
	background: #000;
	transform: translateY(-1px);
	box-shadow: var(--sh-1);
}

.dmp-event .dmp-btn--secondary {
	background: #fff;
	border: 1px solid var(--line);
	color: var(--ink);
}

.dmp-event .dmp-btn--soft {
	background: var(--wash);
	color: var(--ink);
}

.dmp-event .dmp-btn--secondary:hover,
.dmp-event .dmp-btn--soft:hover {
	background: #eceef0;
	transform: translateY(-1px);
}

.dmp-event .dmp-btn .dmp-icon {
	width: 17px;
	height: 17px;
}

.dmp-event .dmp-btn:active {
	transform: translateY(0);
}

.dmp-event .dmp-btn:focus-visible {
	outline: 2px solid var(--dmp-accent);
	outline-offset: 3px;
}

/* ==========================================================================
   Page layout
   ========================================================================== */

.dmp-event__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--stack);
	align-items: start;
}

.dmp-event__main {
	min-width: 0;
}

.dmp-event__aside {
	min-width: 0;
}

.dmp-section {
	margin-bottom: var(--stack);
}

.dmp-section:last-child {
	margin-bottom: 0;
}

.dmp-section__title {
	margin: 0 0 clamp(16px, 2.4vw, 24px);
	font-size: clamp(1.25rem, 1.05rem + 0.9vw, 1.625rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.022em;
	color: var(--ink);
}

/* ==========================================================================
   Sticky section nav
   ========================================================================== */

.dmp-subnav {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 95;
	background: #fff;
	border-bottom: 1px solid var(--line);
	box-shadow: 0 4px 16px rgba(17, 18, 20, 0.06);
}

.dmp-subnav[hidden] {
	display: none;
}

.dmp-subnav__inner {
	display: flex;
	gap: 4px;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--pad);
	overflow-x: auto;
	scrollbar-width: none;
}

.dmp-subnav__inner::-webkit-scrollbar {
	display: none;
}

.dmp-subnav__link {
	flex: 0 0 auto;
	padding: 16px 14px;
	border: 0;
	border-bottom: 2px solid transparent;
	background: none;
	color: var(--ink-2);
	font-family: inherit;
	font-size: 0.9062rem;
	font-weight: 500;
	white-space: nowrap;
	cursor: pointer;
	transition: color 160ms ease, border-color 160ms ease;
}

.dmp-event .dmp-subnav__link:hover,
.dmp-event .dmp-subnav__link:focus {
	background: none;
	color: var(--ink);
	box-shadow: none;
}

.dmp-event .dmp-subnav__link:focus-visible {
	outline: 2px solid var(--dmp-accent);
	outline-offset: -4px;
}

.dmp-event .dmp-subnav__link.is-active {
	background: none;
	color: var(--dmp-accent);
	border-bottom-color: var(--dmp-accent);
	font-weight: 600;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.dmp-crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	padding: 18px 0;
	font-size: 0.8125rem;
	color: var(--ink-3);
}

.dmp-crumbs a {
	color: var(--ink-2);
	text-decoration: none;
}

.dmp-crumbs a:hover {
	color: var(--dmp-accent);
}

.dmp-crumbs__sep {
	color: #d3d6da;
}

.dmp-crumbs__now {
	color: var(--ink);
	font-weight: 500;
}

/* ==========================================================================
   Showcase (featured image + strip)
   ========================================================================== */

.dmp-showcase {
	margin-bottom: clamp(28px, 4vw, 44px);
}

.dmp-showcase__main {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	border-radius: var(--dmp-r-card);
	overflow: hidden;
	background: var(--wash);
	cursor: pointer;
	line-height: 0;
}

.dmp-showcase__main img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.dmp-showcase__main:hover img {
	transform: scale(1.03);
}

.dmp-showcase__count {
	position: absolute;
	right: 14px;
	bottom: 14px;
	padding: 7px 15px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.62);
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.4;
}

.dmp-showcase__strip {
	display: flex;
	gap: 8px;
	margin-top: 8px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: thin;
}

.dmp-showcase__thumb {
	flex: 0 0 auto;
	width: 68px;
	height: 50px;
	padding: 0;
	border: 0;
	border-radius: 10px;
	overflow: hidden;
	background: var(--wash);
	cursor: pointer;
	line-height: 0;
}

.dmp-showcase__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dmp-showcase__main:focus-visible,
.dmp-showcase__thumb:focus-visible {
	outline: 2px solid var(--dmp-accent);
	outline-offset: 3px;
}

/* ==========================================================================
   Title block
   ========================================================================== */

.dmp-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.dmp-badge {
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--wash);
	color: var(--ink-2);
	font-size: 0.8125rem;
	font-weight: 600;
}

.dmp-badge--accent {
	background: var(--dmp-accent-soft);
	color: #a85a10;
}

.dmp-badge--muted {
	background: #f1f2f4;
	color: var(--ink-3);
}

.dmp-title {
	margin: 0 0 12px;
	font-size: clamp(1.75rem, 1.1rem + 2.6vw, 3rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: var(--ink);
	text-wrap: balance;
}

.dmp-subtitle {
	margin: 0 0 clamp(24px, 3vw, 34px);
	max-width: 640px;
	font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem);
	line-height: 1.5;
	color: var(--ink-2);
}

/* ==========================================================================
   Quick facts
   ========================================================================== */

.dmp-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 4px 16px;
	margin-bottom: var(--stack);
}

.dmp-fact {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	min-width: 0;
}

.dmp-fact__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--wash);
}

.dmp-fact__icon .dmp-icon {
	width: 18px;
	height: 18px;
	color: var(--ink-2);
}

.dmp-fact__value {
	font-size: 0.9375rem;
	color: var(--ink);
	line-height: 1.4;
	min-width: 0;
}

/* ==========================================================================
   About
   ========================================================================== */

.dmp-prose {
	font-size: 1rem;
	line-height: 1.78;
	color: var(--ink-2);
	max-width: var(--measure);
}

.dmp-prose > *:first-child { margin-top: 0; }
.dmp-prose > *:last-child { margin-bottom: 0; }
.dmp-prose p { margin: 0 0 1.15em; }

.dmp-prose h2,
.dmp-prose h3,
.dmp-prose h4 {
	margin: 1.6em 0 0.5em;
	color: var(--ink);
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.015em;
}

.dmp-prose img {
	height: auto;
	border-radius: var(--r-tile);
}

.dmp-prose a {
	color: var(--dmp-accent);
	text-underline-offset: 3px;
}

/* ==========================================================================
   Panels (information sections and FAQ)
   ========================================================================== */

.dmp-panels {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.dmp-panel {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-tile);
	overflow: hidden;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.dmp-panel[open] {
	border-color: #dcdfe3;
	box-shadow: var(--sh-1);
}

.dmp-panel__head {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 64px;
	padding: 16px clamp(16px, 2.4vw, 24px);
	cursor: pointer;
	list-style: none;
}

.dmp-panel__head::-webkit-details-marker {
	display: none;
}

.dmp-panel__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--wash);
}

.dmp-panel__icon .dmp-icon {
	width: 19px;
	height: 19px;
	color: var(--ink-2);
}

.dmp-panel__title {
	flex: 1 1 auto;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: -0.012em;
	color: var(--ink);
	min-width: 0;
}

.dmp-panel__chev {
	display: inline-flex;
	flex: 0 0 auto;
	transition: transform 240ms ease;
}

.dmp-panel__chev .dmp-icon {
	width: 20px;
	height: 20px;
	color: var(--ink-3);
}

.dmp-panel[open] .dmp-panel__chev {
	transform: rotate(180deg);
}

.dmp-panel__head:focus-visible {
	outline: 2px solid var(--dmp-accent);
	outline-offset: -3px;
}

.dmp-panel__body {
	overflow: hidden;
	transition: height 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.dmp-panel__body > div {
	padding: 0 clamp(16px, 2.4vw, 24px) 20px;
	max-width: var(--measure);
	color: var(--ink-2);
	line-height: 1.72;
}

.dmp-panel__body p {
	margin: 0 0 0.8em;
}

.dmp-panel__body p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.dmp-gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dmp-gallery__item {
	margin: 0;
	min-width: 0;
}

.dmp-gallery__btn {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	border-radius: var(--r-tile);
	overflow: hidden;
	background: var(--wash);
	cursor: pointer;
	line-height: 0;
}

.dmp-gallery__btn img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.dmp-gallery__btn:hover img {
	transform: scale(1.05);
}

.dmp-gallery__btn:focus-visible {
	outline: 2px solid var(--dmp-accent);
	outline-offset: 3px;
}

/* ==========================================================================
   Venue
   ========================================================================== */

.dmp-venue {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--dmp-r-card);
	overflow: hidden;
}

.dmp-venue__map {
	height: 240px;
	background: var(--wash);
}

.dmp-venue__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.dmp-venue__body {
	padding: clamp(20px, 3vw, 28px);
}

.dmp-venue__name {
	margin: 0 0 6px;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: -0.018em;
	color: var(--ink);
}

.dmp-venue__address {
	margin: 0 0 18px;
	color: var(--ink-2);
	line-height: 1.6;
}

.dmp-venue__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* ==========================================================================
   Organiser
   ========================================================================== */

.dmp-organiser {
	padding: clamp(22px, 3vw, 30px);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--dmp-r-card);
}

.dmp-organiser__head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.dmp-organiser__logo {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 auto;
}

.dmp-organiser__name {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: -0.018em;
	color: var(--ink);
}

.dmp-organiser__role {
	font-size: 0.8125rem;
	color: var(--ink-3);
}

.dmp-organiser__about {
	margin: 0 0 18px;
	color: var(--ink-2);
	line-height: 1.7;
	max-width: var(--measure);
}

.dmp-organiser__contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dmp-organiser__contact li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9375rem;
	color: var(--ink-2);
}

.dmp-organiser__contact .dmp-icon {
	width: 17px;
	height: 17px;
	color: var(--ink-3);
	flex: 0 0 auto;
}

.dmp-organiser__contact a {
	color: var(--ink-2);
	text-decoration: none;
}

.dmp-organiser__contact a:hover {
	color: var(--dmp-accent);
}

/* ==========================================================================
   Related events
   ========================================================================== */

.dmp-related {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.dmp-rel {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--dmp-r-card);
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.dmp-rel:hover {
	border-color: #dcdfe3;
	box-shadow: var(--sh-1);
	transform: translateY(-2px);
}

.dmp-rel__media {
	display: block;
	background: var(--wash);
	line-height: 0;
	overflow: hidden;
}

.dmp-rel__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.dmp-rel:hover .dmp-rel__media img {
	transform: scale(1.04);
}

.dmp-rel__body {
	display: block;
	padding: 18px;
}

.dmp-rel__date {
	display: block;
	margin-bottom: 6px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--dmp-accent);
}

.dmp-rel__title {
	display: block;
	margin-bottom: 10px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.015em;
	color: var(--ink);
}

.dmp-rel__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.dmp-rel__price {
	font-size: 1rem;
	font-weight: 700;
	color: var(--ink);
}

.dmp-rel__more {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--dmp-accent);
}

/* ==========================================================================
   Booking card
   ========================================================================== */

.dmp-booking {
	padding: clamp(22px, 3vw, 30px);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--dmp-r-card);
	box-shadow: var(--sh-2);
}

.dmp-booking__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--line);
}

.dmp-price {
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.028em;
	color: var(--ink);
}

.dmp-price del {
	font-size: 0.58em;
	font-weight: 400;
	color: var(--ink-3);
}

.dmp-price ins {
	text-decoration: none;
}

.dmp-price--free {
	color: #16a34a;
}

.dmp-booking__note {
	font-size: 0.875rem;
	color: var(--ink-2);
}

.dmp-booking__seats {
	margin-bottom: 20px;
}

.dmp-meter {
	height: 7px;
	margin-bottom: 9px;
	border-radius: 999px;
	background: #eef0f2;
	overflow: hidden;
}

.dmp-meter__fill {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--dmp-accent);
	transition: width 420ms ease;
}

.dmp-booking__seatstext {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--ink-2);
}

.dmp-booking__closing {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 20px;
	padding: 11px 14px;
	border-radius: var(--dmp-r-input);
	background: rgba(245, 158, 11, 0.1);
	color: #8a5a08;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.4;
}

.dmp-booking__hint {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: 14px 0 0;
	font-size: 0.8125rem;
	color: var(--ink-3);
	text-align: center;
}

.dmp-booking__secure {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 18px 0 0;
	padding-top: 16px;
	border-top: 1px solid var(--line);
	font-size: 0.8125rem;
	color: var(--ink-3);
	text-align: center;
}

.dmp-booking__secure .dmp-icon {
	width: 15px;
	height: 15px;
	padding: 0;
	background: none;
	color: var(--ink-3);
}

.dmp-booking__blocked {
	padding: 22px 18px;
	border-radius: var(--r-tile);
	background: var(--wash);
	text-align: center;
}

.dmp-booking__blockedtitle {
	margin: 0 0 6px;
	font-weight: 600;
	color: var(--ink);
}

.dmp-booking__blockedtext {
	margin: 0;
	font-size: 0.875rem;
	color: var(--ink-2);
	line-height: 1.6;
}

/* Tickets */

.dmp-tickets {
	margin-bottom: 20px;
	border-radius: var(--r-tile);
	transition: box-shadow 300ms ease;
}

.dmp-tickets.is-asking {
	box-shadow: 0 0 0 3px var(--dmp-accent-soft);
}

.dmp-tickets__label,
.dmp-qty__label {
	display: block;
	margin: 0 0 10px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ink-2);
}

.dmp-ticket {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	margin-bottom: 8px;
	padding: 14px 16px;
	border: 2px solid transparent;
	border-radius: 12px;
	background: var(--wash);
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	transition: border-color 160ms ease, background-color 160ms ease;
}

.dmp-ticket:last-child {
	margin-bottom: 0;
}

.dmp-ticket:hover:not(.is-out) {
	border-color: #dcdfe3;
}

.dmp-ticket.is-selected {
	border-color: var(--dmp-accent);
	background: var(--dmp-accent-soft);
}

.dmp-ticket.is-out {
	opacity: 0.5;
	cursor: not-allowed;
}

.dmp-ticket:focus-visible {
	outline: 2px solid var(--dmp-accent);
	outline-offset: 2px;
}

.dmp-ticket__info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.dmp-ticket__name {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--ink);
}

.dmp-ticket__desc {
	font-size: 0.8125rem;
	color: var(--ink-3);
}

.dmp-ticket__price {
	font-size: 1rem;
	font-weight: 700;
	color: var(--ink);
	white-space: nowrap;
}

.dmp-ticket__price del {
	font-size: 0.8em;
	font-weight: 400;
	color: var(--ink-3);
	margin-right: 4px;
}

.dmp-ticket__price ins {
	text-decoration: none;
}

/* Quantity */

.dmp-qty {
	margin-bottom: 20px;
}

.dmp-stepper {
	display: inline-flex;
	align-items: center;
	border-radius: 12px;
	background: var(--wash);
	overflow: hidden;
}

.dmp-stepper__btn {
	width: 48px;
	height: 48px;
	border: 0;
	background: none;
	color: var(--ink);
	font-family: inherit;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	transition: background-color 160ms ease;
}

.dmp-stepper__btn:hover {
	background: #eceef0;
}

.dmp-stepper__btn:focus-visible {
	outline: 2px solid var(--dmp-accent);
	outline-offset: -2px;
}

.dmp-stepper__value {
	min-width: 48px;
	text-align: center;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--ink);
}

/* Total */

.dmp-total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}

.dmp-total__label {
	font-size: 0.9375rem;
	color: var(--ink-2);
}

.dmp-total__value {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.025em;
	color: var(--ink);
}

/* Save and share */

.dmp-booking__actions {
	display: flex;
	gap: 10px;
	margin-top: 16px;
}

.dmp-event .dmp-minibtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	flex: 1 1 0;
	min-height: 46px;
	padding: 0 14px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	color: var(--ink-2);
	font-family: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.dmp-event .dmp-minibtn:hover {
	background: var(--wash);
	border-color: #d5d8dc;
	color: var(--ink);
}

.dmp-minibtn .dmp-icon {
	width: 17px;
	height: 17px;
}

.dmp-minibtn.is-on {
	color: #dc2626;
}

.dmp-minibtn.is-on .dmp-icon {
	fill: #dc2626;
	color: #dc2626;
}

.dmp-booking__error {
	margin: 10px 0 0;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--dmp-error);
	text-align: center;
}

.dmp-booking__error[hidden] {
	display: none;
}

/* The native WooCommerce form drives the cart; our card is the interface.
   The form stays visible so guest fields inside it post normally — only the
   controls our card replaces are hidden, and only once JavaScript runs, so
   the page still works without it. */

.dmp-js .dmp-booking__cart .quantity,
.dmp-js .dmp-booking__cart table.variations,
.dmp-js .dmp-booking__cart .woocommerce-variation-price,
.dmp-js .dmp-booking__cart .single_add_to_cart_button,
.dmp-js .dmp-booking__cart button[type="submit"] {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* --- Guest details step --- */

.dmp-gueststep {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	font-family: var(--dmp-font);
}

.dmp-gueststep[hidden] {
	display: none;
}

.dmp-gueststep__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(12, 13, 15, .5);
	animation: dmp-fade 180ms ease;
}

.dmp-gueststep__sheet {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-height: 92vh;
	background: #fff;
	border-radius: 20px 20px 0 0;
	box-shadow: 0 -10px 50px rgba(12, 13, 15, .28);
	animation: dmp-sheet 240ms cubic-bezier(.22, .61, .36, 1);
	overflow: hidden;
}

.dmp-gueststep__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 20px 16px;
}

.dmp-gueststep__title {
	margin: 0 0 4px;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -.02em;
	color: var(--ink);
}

.dmp-gueststep__sub {
	margin: 0;
	font-size: .875rem;
	color: var(--ink-2);
}

.dmp-event .dmp-gueststep__close,
.dmp-gueststep__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: var(--wash);
	color: var(--ink-2);
	cursor: pointer;
}

.dmp-gueststep__close svg {
	width: 18px;
	height: 18px;
}

.dmp-gueststep__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin: 0 20px 4px;
	padding: 14px 16px;
	background: var(--wash);
	border-radius: var(--r-tile);
	font-size: .9375rem;
}

.dmp-gueststep__summary[hidden] {
	display: none;
}

.dmp-gueststep__ticket {
	font-weight: 600;
	color: var(--ink);
	min-width: 0;
}

.dmp-gueststep__qty {
	color: var(--ink-3);
	font-weight: 500;
}

.dmp-gueststep__total {
	font-weight: 700;
	color: var(--ink);
	white-space: nowrap;
}

.dmp-gueststep__body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 16px 20px 4px;
	-webkit-overflow-scrolling: touch;
}

.dmp-gueststep__foot {
	display: flex;
	gap: 10px;
	padding: 16px 20px;
	padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid var(--line);
	background: #fff;
}

.dmp-gueststep__foot .dmp-btn {
	flex: 1 1 0;
}

.dmp-cartguests__rows {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.dmp-cartguests__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.dmp-cartguests__row[hidden] {
	display: none;
}

.dmp-gueststep .dmp-input {
	width: 100%;
	min-height: 50px;
	padding: 13px 14px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: #fff;
	color: var(--ink);
	font-family: var(--dmp-font);
	font-size: 1rem;
	transition: border-color .16s ease, box-shadow .16s ease;
}

.dmp-gueststep .dmp-input:focus {
	outline: 0;
	border-color: var(--dmp-accent);
	box-shadow: 0 0 0 3px var(--dmp-accent-soft);
}

.dmp-cartguests__note {
	margin: 14px 0 0;
	font-size: .8125rem;
	line-height: 1.5;
	color: var(--ink-3);
}

@keyframes dmp-fade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes dmp-sheet {
	from { transform: translateY(24px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

@media (min-width: 600px) {
	.dmp-gueststep {
		align-items: center;
		padding: 24px;
	}

	.dmp-gueststep__sheet {
		max-width: 520px;
		border-radius: 20px;
	}

	.dmp-cartguests__row {
		grid-template-columns: 1.3fr 1fr;
	}

	.dmp-gueststep__foot .dmp-btn {
		flex: 0 0 auto;
	}

	.dmp-gueststep__foot {
		justify-content: flex-end;
	}
}

/* ==========================================================================
   Registration form
   ========================================================================== */

.dmp-registration {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--line);
}

.dmp-form__body {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.dmp-form__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.dmp-event .dmp-label {
	display: block;
	margin-bottom: 7px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ink-2);
}

.dmp-event .dmp-input {
	width: 100%;
	min-height: 52px;
	padding: 13px 15px;
	border: 1px solid var(--line);
	border-radius: var(--dmp-r-input);
	background: #fff;
	color: var(--ink);
	font-family: var(--dmp-font);
	font-size: 1rem;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.dmp-event .dmp-input:focus {
	outline: 0;
	border-color: var(--dmp-accent);
	box-shadow: 0 0 0 3px var(--dmp-accent-soft);
}

.dmp-event .dmp-input.has-error {
	border-color: var(--dmp-error);
}

.dmp-error {
	display: block;
	margin-top: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--dmp-error);
}

.dmp-error:empty {
	display: none;
}

.dmp-event .dmp-hint {
	display: block;
	margin-top: 6px;
	font-size: 0.8125rem;
	color: var(--ink-3);
}

.dmp-form__notice {
	padding: 13px 16px;
	border-radius: var(--dmp-r-input);
	background: rgba(239, 68, 68, 0.09);
	color: #991b1b;
	font-size: 0.9062rem;
	font-weight: 500;
}

.dmp-form__legal {
	margin: 0;
	font-size: 0.75rem;
	color: var(--ink-3);
	text-align: center;
	line-height: 1.5;
}

.dmp-guests {
	padding: 18px;
	border-radius: var(--r-tile);
	background: var(--wash);
}

.dmp-guests__title {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
	margin: 0 0 14px;
	font-weight: 600;
	color: var(--ink);
}

.dmp-guests__count {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--dmp-accent);
}

.dmp-guests__rows {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.dmp-guests__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.dmp-guests__note {
	margin: 14px 0 0;
	font-size: 0.8125rem;
	color: var(--ink-3);
	line-height: 1.5;
}

.dmp-form__done {
	padding: 30px 12px;
	text-align: center;
}

.dmp-form__tick {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: rgba(34, 197, 94, 0.12);
	color: #16a34a;
}

.dmp-form__tick .dmp-icon {
	width: 28px;
	height: 28px;
	padding: 0;
	background: none;
	color: inherit;
}

.dmp-form__donetitle {
	margin: 0 0 8px;
	font-size: 1.375rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.dmp-form__donetext {
	margin: 0 0 24px;
	color: var(--ink-2);
	line-height: 1.6;
}

/* ==========================================================================
   Sticky bar (mobile)
   ========================================================================== */

.dmp-stickybar {
	position: fixed;
	inset: auto 0 0 0;
	z-index: 90;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 12px 16px;
	padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
	background: rgba(255, 255, 255, 0.97);
	border-top: 1px solid var(--line);
	box-shadow: 0 -8px 28px rgba(17, 18, 20, 0.1);
	animation: dmp-rise 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.dmp-stickybar[hidden] {
	display: none;
}

.dmp-stickybar__info {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.dmp-stickybar .dmp-price {
	font-size: 1.25rem;
}

.dmp-stickybar__seats {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--ink-3);
}

.dmp-stickybar .dmp-btn {
	flex: 0 0 auto;
}

@keyframes dmp-rise {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.dmp-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 20px;
	background: rgba(9, 10, 12, 0.94);
}

.dmp-lightbox[hidden] {
	display: none;
}

.dmp-lightbox__figure {
	margin: 0;
	max-width: min(100%, 1100px);
	max-height: 84vh;
}

.dmp-lightbox__figure img {
	display: block;
	max-width: 100%;
	max-height: 84vh;
	border-radius: var(--r-tile);
	object-fit: contain;
}

.dmp-lightbox__close,
.dmp-lightbox__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	flex: 0 0 auto;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.13);
	color: #fff;
	cursor: pointer;
	transition: background-color 160ms ease;
}

.dmp-lightbox__close:hover,
.dmp-lightbox__nav:hover {
	background: rgba(255, 255, 255, 0.26);
}

.dmp-lightbox__close {
	position: absolute;
	top: 20px;
	right: 20px;
}

.dmp-lightbox svg {
	width: 22px;
	height: 22px;
}

.dmp-noscroll {
	overflow: hidden;
}

/* ==========================================================================
   Event cards and grids
   ========================================================================== */

.dmp-events-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
}

.dmp-card-event {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e8eaed;
	border-radius: 18px;
	overflow: hidden;
	transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.dmp-card-event:hover {
	border-color: #dcdfe3;
	box-shadow: 0 2px 4px rgba(17, 18, 20, 0.05), 0 18px 44px rgba(17, 18, 20, 0.09);
	transform: translateY(-3px);
}

.dmp-card-event__media {
	position: relative;
	display: block;
	background: #f7f8f9;
	line-height: 0;
	overflow: hidden;
}

.dmp-card-event__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.dmp-card-event:hover .dmp-card-event__media img {
	transform: scale(1.04);
}

.dmp-card-event__cat {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 5px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	color: #111214;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.4;
}

.dmp-card-event__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 22px;
	flex: 1 1 auto;
}

.dmp-card-event__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.dmp-card-event__date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #5b6068;
}

.dmp-card-event__date .dmp-icon {
	width: 16px;
	height: 16px;
	padding: 0;
	background: none;
	color: var(--dmp-accent);
}

.dmp-card-event__title {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -0.015em;
}

.dmp-card-event__title a {
	color: #111214;
	text-decoration: none;
}

.dmp-card-event__title a:hover {
	color: var(--dmp-accent);
}

.dmp-card-event__where {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0;
	font-size: 0.875rem;
	color: #5b6068;
}

.dmp-card-event__where span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

.dmp-card-event__where .dmp-icon {
	width: 16px;
	height: 16px;
	padding: 0;
	background: none;
	color: #8a9099;
}

.dmp-card-event__excerpt {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #5b6068;
}

.dmp-card-event__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid #e8eaed;
}

.dmp-card-event__price {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.dmp-card-event__price .dmp-price {
	font-size: 1.125rem;
}

.dmp-card-event__seats {
	font-size: 0.75rem;
	color: #8a9099;
}

.dmp-loop-event {
	list-style: none;
}

.dmp-loop-event::before,
.dmp-loop-event::after {
	display: none;
}

.dmp-tag {
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--dmp-accent-soft);
	color: #a85a10;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
}

.dmp-tag:hover {
	background: var(--dmp-accent);
	color: #fff;
}

/* ==========================================================================
   Reviews (opt-in placements only)
   ========================================================================== */

.dmp-stars {
	position: relative;
	display: inline-block;
	line-height: 1;
	white-space: nowrap;
}

.dmp-stars__base,
.dmp-stars__fill {
	display: inline-flex;
	gap: 2px;
}

.dmp-stars svg {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}

.dmp-stars__base svg {
	fill: rgba(138, 144, 153, 0.3);
}

.dmp-stars__fill {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.dmp-stars__fill svg {
	fill: var(--dmp-accent);
}

.dmp-reviews__summary {
	display: grid;
	grid-template-columns: 1fr;
	gap: 26px;
	padding: 26px;
	margin-bottom: 26px;
	background: var(--wash);
	border-radius: var(--dmp-r-card);
}

.dmp-reviews__score {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
}

.dmp-reviews__average {
	font-size: 2.75rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.03em;
}

.dmp-reviews__count {
	font-size: 0.875rem;
	color: var(--ink-2);
}

.dmp-reviews__bars {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dmp-reviews__bar {
	display: grid;
	grid-template-columns: 14px 1fr 34px;
	align-items: center;
	gap: 12px;
	font-size: 0.875rem;
	color: var(--ink-2);
}

.dmp-reviews__bartrack {
	height: 7px;
	border-radius: 999px;
	background: #eef0f2;
	overflow: hidden;
}

.dmp-reviews__barfill {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: var(--dmp-accent);
}

.dmp-reviews__barcount {
	text-align: right;
}

.dmp-reviews__list {
	display: flex;
	flex-direction: column;
	gap: 26px;
	margin: 0 0 32px;
	padding: 0;
	list-style: none;
}

.dmp-review {
	display: flex;
	gap: 14px;
}

.dmp-review__img {
	border-radius: 50%;
}

.dmp-review__body {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.dmp-review__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 9px;
}

.dmp-review__author {
	font-weight: 600;
}

.dmp-review__verified {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 9px;
	border-radius: 999px;
	background: rgba(34, 197, 94, 0.12);
	color: #15803d;
	font-size: 0.75rem;
	font-weight: 600;
}

.dmp-review__verified .dmp-icon {
	width: 13px;
	height: 13px;
	padding: 0;
	background: none;
	color: inherit;
}

.dmp-review__text {
	color: var(--ink);
	line-height: 1.68;
}

.dmp-review__date {
	font-size: 0.8125rem;
	color: var(--ink-3);
}

.dmp-reviews__empty {
	margin: 0 0 26px;
	color: var(--ink-2);
}

.dmp-reviews__write {
	padding-top: 26px;
	border-top: 1px solid var(--line);
}

.dmp-reviews__writetitle {
	margin: 0 0 18px;
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: -0.018em;
}

.dmp-reviews__locked {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 20px 24px;
	background: var(--wash);
	border-radius: var(--dmp-r-card);
}

.dmp-reviews__lockedtext {
	margin: 0;
	color: var(--ink-2);
	font-weight: 500;
}

.dmp-rating-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-bottom: 18px;
	max-width: 280px;
}

.dmp-rating-field label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ink-2);
}

.dmp-review-form .form-submit {
	margin: 18px 0 0;
}

.dmp-review-form .submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 30px;
	border: 0;
	border-radius: var(--dmp-r-btn);
	background: var(--ink);
	color: #fff;
	font-family: var(--dmp-font);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
}

.dmp-review-form .submit:hover {
	background: #000;
}

/* ==========================================================================
   480px and up
   ========================================================================== */

@media (min-width: 480px) {
	.dmp-form__row,
	.dmp-guests__row {
		grid-template-columns: 1fr 1fr;
	}
}

/* ==========================================================================
   768px and up — tablet
   ========================================================================== */

@media (min-width: 768px) {
	.dmp-showcase__main img {
		height: 300px;
	}

	.dmp-facts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.dmp-related {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dmp-showcase__thumb {
		width: 96px;
		height: 66px;
	}

	.dmp-gallery {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		grid-auto-rows: 1fr;
		gap: 12px;
	}

	.dmp-gallery__item:first-child {
		grid-column: span 2;
		grid-row: span 2;
	}

	.dmp-gallery__item:first-child .dmp-gallery__btn img {
		aspect-ratio: auto;
		min-height: 100%;
	}

	.dmp-venue {
		grid-template-columns: 260px minmax(0, 1fr);
		align-items: stretch;
	}

	.dmp-venue__map {
		min-height: 100%;
	}

	.dmp-events-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dmp-reviews__summary {
		grid-template-columns: auto minmax(0, 1fr);
		align-items: center;
		gap: 48px;
		padding: 32px;
	}
}

/* ==========================================================================
   1024px and up — desktop
   ========================================================================== */

@media (min-width: 1024px) {
	.dmp-showcase__main img {
		height: 350px;
	}

	.dmp-event__layout {
		grid-template-columns: minmax(0, 1fr) 380px;
		gap: clamp(40px, 5vw, 72px);
	}

	.dmp-event__aside {
		position: sticky;
		top: 84px;
	}

	.dmp-facts {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.dmp-related {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.dmp-stickybar {
		display: none;
	}

	.dmp-events-grid {
		grid-template-columns: repeat(var(--dmp-cols, 3), minmax(0, 1fr));
	}
}

/* ==========================================================================
   1280px and up
   ========================================================================== */

@media (min-width: 1280px) {
	.dmp-event__layout {
		grid-template-columns: minmax(0, 1fr) 400px;
	}
}

/* ==========================================================================
   Motion and accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	.dmp-event *,
	.dmp-event *::before,
	.dmp-event *::after,
	.dmp-stickybar,
	.dmp-card-event {
		transition-duration: 1ms !important;
		animation-duration: 1ms !important;
	}

	.dmp-card-event:hover,
	.dmp-fact:hover,
	.dmp-event .dmp-btn:hover,
	.dmp-gallery__btn:hover img,
	.dmp-card-event:hover .dmp-card-event__media img {
		transform: none;
	}
}

.dmp-event .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
