/**
 * Event Portal Manager frontendledenflows.
 * Bestandsversie: 0.9.0
 */

.epm-portal,
.event-portal-events {
	--epm-border: #d7dce4;
	--epm-text: #172033;
	--epm-muted: #596579;
	--epm-surface: #ffffff;
	--epm-soft: #f5f7fb;
	--epm-primary: #2456d8;
	--epm-primary-dark: #173da7;
	--epm-success: #176b3a;
	--epm-warning: #8b5b00;
	--epm-error: #a32626;
	max-width: 860px;
	margin: 28px auto;
	color: var(--epm-text);
	font-size: 16px;
	line-height: 1.55;
}

.epm-portal *,
.epm-portal *::before,
.epm-portal *::after {
	box-sizing: border-box;
}

.epm-portal__header,
.epm-card,
.epm-form,
.epm-notice {
	border: 1px solid var(--epm-border);
	border-radius: 16px;
	background: var(--epm-surface);
	box-shadow: 0 8px 24px rgba(23, 32, 51, 0.06);
}

.epm-portal__header,
.epm-card,
.epm-form {
	padding: clamp(20px, 4vw, 34px);
	margin-bottom: 18px;
}

.epm-portal h2,
.epm-portal h3 {
	margin-top: 0;
	color: var(--epm-text);
}

.epm-portal__header p:last-child,
.epm-card p:last-child {
	margin-bottom: 0;
}

.epm-eyebrow {
	margin: 0 0 6px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--epm-primary);
}

.epm-notice {
	padding: 16px 18px;
	margin: 0 0 18px;
	border-left-width: 5px;
}

.epm-notice--success {
	border-left-color: var(--epm-success);
	background: #effaf3;
}

.epm-notice--warning {
	border-left-color: var(--epm-warning);
	background: #fff8e7;
}

.epm-notice--error {
	border-left-color: var(--epm-error);
	background: #fff1f1;
}

.epm-notice--info {
	border-left-color: var(--epm-primary);
	background: #f1f5ff;
}

.epm-error-summary ul {
	margin-bottom: 0;
}

.epm-progress {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
	gap: 8px;
	padding: 0;
	margin: 0 0 22px;
	list-style: none;
}

.epm-progress li {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 0;
	padding: 9px 8px;
	border-radius: 10px;
	background: var(--epm-soft);
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	color: var(--epm-muted);
}

.epm-progress li[aria-current="step"] {
	background: var(--epm-primary);
	color: #fff;
}

.epm-progress__number {
	display: inline-grid;
	place-items: center;
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #e3e8f2;
	color: var(--epm-text);
	font-size: 12px;
	line-height: 1;
}

.epm-progress__label {
	min-width: 0;
	line-height: 1.15;
}

.epm-progress li[aria-current="step"] .epm-progress__number {
	background: #fff;
	color: var(--epm-primary);
}

.epm-step {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

.epm-step + .epm-step {
	margin-top: 28px;
}

.epm-js .epm-step[hidden] {
	display: none;
}

.epm-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.epm-field {
	min-width: 0;
}

.epm-field--full {
	grid-column: 1 / -1;
}

.epm-field label,
.epm-field legend,
.epm-field__label {
	display: block;
	margin-bottom: 7px;
	font-weight: 750;
}

.epm-field input,
.epm-field select,
.epm-field textarea {
	width: 100%;
	min-height: 48px;
	padding: 11px 13px;
	border: 1px solid #aeb7c5;
	border-radius: 9px;
	background: #fff;
	color: var(--epm-text);
	font: inherit;
}

.epm-field textarea {
	min-height: 110px;
	resize: vertical;
}

.epm-field input:focus,
.epm-field select:focus,
.epm-field textarea:focus {
	outline: 3px solid rgba(36, 86, 216, .18);
	border-color: var(--epm-primary);
}

.epm-field__help {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	color: var(--epm-muted);
}

.epm-field__error {
	display: block;
	margin-top: 6px;
	font-weight: 700;
	color: var(--epm-error);
}

.epm-field--error input,
.epm-field--error select,
.epm-field--error textarea {
	border-color: var(--epm-error);
}

.epm-choice-list {
	display: grid;
	gap: 10px;
}

.epm-choice {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	border: 1px solid var(--epm-border);
	border-radius: 10px;
	background: var(--epm-soft);
}

.epm-choice input {
	width: auto;
	min-height: 0;
	margin-top: 4px;
}

.epm-actions {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin-top: 24px;
}

.epm-button,
.epm-portal a.epm-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 18px;
	border: 1px solid transparent;
	border-radius: 9px;
	background: var(--epm-primary);
	color: #fff;
	font: inherit;
	font-weight: 750;
	text-decoration: none;
	cursor: pointer;
}

.epm-button:hover,
.epm-button:focus,
.epm-portal a.epm-button:hover,
.epm-portal a.epm-button:focus {
	background: var(--epm-primary-dark);
	color: #fff;
}

.epm-button--secondary,
.epm-portal a.epm-button--secondary {
	border-color: var(--epm-border);
	background: #fff;
	color: var(--epm-text);
}

.epm-button--secondary:hover,
.epm-button--secondary:focus,
.epm-portal a.epm-button--secondary:hover,
.epm-portal a.epm-button--secondary:focus {
	background: var(--epm-soft);
	color: var(--epm-text);
}

.epm-summary-list,
.epm-data-list {
	display: grid;
	grid-template-columns: minmax(120px, 1fr) 2fr;
	gap: 10px 18px;
	margin: 0;
}

.epm-summary-list dt,
.epm-data-list dt {
	font-weight: 750;
}

.epm-summary-list dd,
.epm-data-list dd {
	margin: 0;
}

.epm-dashboard-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.epm-status {
	display: inline-flex;
	align-items: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--epm-soft);
	font-size: 13px;
	font-weight: 800;
}

.epm-status--active,
.epm-status--complete {
	background: #e8f7ee;
	color: var(--epm-success);
}

.epm-status--attention {
	background: #fff2d7;
	color: var(--epm-warning);
}

.epm-resend {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--epm-border);
}

.epm-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media (max-width: 680px) {
	.epm-portal {
		margin: 18px 0;
	}

	.epm-form-grid,
	.epm-dashboard-grid {
		grid-template-columns: 1fr;
	}

	.epm-progress {
		grid-template-columns: 1fr;
	}

	.epm-progress li:not([aria-current="step"]) {
		display: none;
	}

	.epm-actions {
		position: sticky;
		bottom: 0;
		z-index: 5;
		padding: 12px;
		margin-inline: -12px;
		background: rgba(255, 255, 255, .96);
		box-shadow: 0 -8px 20px rgba(23, 32, 51, .08);
	}

	.epm-button {
		flex: 1;
	}

	.epm-summary-list,
	.epm-data-list {
		grid-template-columns: 1fr;
		gap: 3px;
	}

	.epm-summary-list dd,
	.epm-data-list dd {
		margin-bottom: 10px;
	}
}

/* Wachtwoordsterkte-stoplicht, toegevoegd in v0.2.1. */
.epm-password-strength {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 9px;
	font-size: 13px;
	font-weight: 750;
	color: var(--epm-muted);
}

.epm-password-strength__lights {
	display: inline-flex;
	gap: 5px;
	flex: 0 0 auto;
}

.epm-password-strength__light {
	width: 12px;
	height: 12px;
	border: 1px solid rgba(23, 32, 51, .2);
	border-radius: 50%;
	background: #dfe3ea;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .65);
}

.epm-password-strength[data-level="weak"] .epm-password-strength__light--weak {
	background: #c72b2b;
}

.epm-password-strength[data-level="medium"] .epm-password-strength__light--medium {
	background: #d88400;
}

.epm-password-strength[data-level="strong"] .epm-password-strength__light--strong {
	background: #16803c;
}

.epm-password-strength[data-level="weak"] {
	color: var(--epm-error);
}

.epm-password-strength[data-level="medium"] {
	color: var(--epm-warning);
}

.epm-password-strength[data-level="strong"] {
	color: var(--epm-success);
}

/* Gepubliceerde eventkaarten.
 * Bestandsversie aanvulling: 0.3.0
 */
.event-portal-events {
	display: grid;
	gap: 24px;
}

.event-portal-event-card {
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.14);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.event-portal-event-card__image img {
	display: block;
	width: 100%;
	height: auto;
}

.event-portal-event-card__body {
	padding: clamp(20px, 4vw, 30px);
}

.event-portal-event-card__body h2 {
	margin-top: 4px;
}

.event-portal-event-card__date {
	margin: 0;
	font-weight: 800;
}

.event-portal-event-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 18px 0;
}

.event-portal-event-card__meta span {
	padding: 7px 11px;
	border-radius: 999px;
	background: #f0f0f1;
	font-weight: 700;
}

/* Fase 4: aanmeldwizard, introducees en live prijsoverzicht. */
.epm-booking-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(210px, 280px);
	gap: 22px;
	align-items: start;
}

.epm-booking-main {
	min-width: 0;
}

.epm-booking-total {
	position: sticky;
	top: 24px;
	display: grid;
	gap: 6px;
	padding: 18px;
	border: 1px solid var(--epm-border);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(23, 32, 51, .08);
}

.epm-booking-total span,
.epm-booking-total small {
	color: var(--epm-muted);
}

.epm-booking-total strong {
	font-size: clamp(24px, 4vw, 34px);
	line-height: 1.1;
}

.epm-progress--booking {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(118px, 1fr);
	grid-template-columns: none;
	overflow-x: auto;
	padding: 2px 2px 10px;
	scrollbar-width: thin;
}

.epm-progress--booking li {
	border: 1px solid var(--epm-border);
	background: #fff;
	color: var(--epm-text);
	opacity: 1;
}

.epm-progress--booking li.is-complete {
	border-color: transparent;
	background: var(--epm-soft);
	color: var(--epm-muted);
	opacity: .52;
}

.epm-progress--booking li.is-upcoming {
	border-color: var(--epm-border);
	background: #fff;
	color: var(--epm-text);
	opacity: 1;
}

.epm-progress--booking li[aria-current="step"] {
	border-color: var(--epm-primary);
	background: var(--epm-primary);
	color: #fff;
	opacity: 1;
	box-shadow: 0 5px 14px rgba(36, 86, 216, .18);
}

.epm-progress--booking .epm-progress__number {
	display: none;
}

/* Fase 4.2: rustige tekststappen zonder nummerbadges. */
.epm-event-choice {
	cursor: pointer;
}

.epm-event-choice:has(input:checked) {
	border-color: var(--epm-primary);
	box-shadow: 0 0 0 3px rgba(36, 86, 216, .12);
}

.epm-field--wide {
	grid-column: 1 / -1;
}

.epm-choice-list--compact {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.epm-guest-card {
	position: relative;
	margin: 0 0 18px;
	padding: 20px;
	border: 1px solid var(--epm-border);
	border-radius: 12px;
	background: var(--epm-soft);
}

.epm-guest-card legend {
	padding: 0 8px;
	font-weight: 800;
}

.epm-guest-remove {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border: 1px solid var(--epm-border);
	border-radius: 50%;
	background: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.epm-guest-remove:hover,
.epm-guest-remove:focus {
	border-color: var(--epm-error);
	color: var(--epm-error);
}

.epm-guest-options {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--epm-border);
}

.epm-person-summary,
.epm-registration-card {
	padding: 16px;
	border: 1px solid var(--epm-border);
	border-radius: 10px;
	background: #fff;
}

.epm-person-summary + .epm-person-summary {
	margin-top: 12px;
}

.epm-person-summary ul {
	margin-bottom: 0;
}

.epm-confirmation {
	text-align: center;
}

.epm-confirmation__icon {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background: #e8f7ee;
	color: var(--epm-success);
	font-size: 40px;
	font-weight: 900;
}

.epm-section-heading,
.epm-registration-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.epm-registration-list {
	display: grid;
	gap: 12px;
}

.epm-registration-card h4,
.epm-section-heading h3 {
	margin-top: 0;
	margin-bottom: 6px;
}

.epm-registration-card p {
	margin: 4px 0;
}

@media (max-width: 900px) {
	.epm-booking-layout {
		grid-template-columns: 1fr;
	}

	.epm-booking-total {
		position: sticky;
		bottom: 0;
		top: auto;
		z-index: 4;
		grid-template-columns: 1fr auto;
		align-items: center;
		padding: 12px 14px;
	}

	.epm-booking-total small {
		grid-column: 1 / -1;
	}
}

@media (max-width: 680px) {
	.epm-progress--booking {
		display: flex;
	}

	.epm-progress--booking li {
		min-width: 110px;
	}

	.epm-progress--booking li:not([aria-current="step"]) {
		display: flex;
	}

	.epm-choice-list--compact {
		grid-template-columns: 1fr;
	}

	.epm-guest-card {
		padding: 18px 12px 14px;
	}

	.epm-section-heading,
	.epm-registration-card {
		align-items: stretch;
		flex-direction: column;
	}
}

.epm-terms-box {
	margin: 20px 0;
	padding: 16px;
	border: 1px solid var(--epm-border);
	border-radius: 10px;
	background: var(--epm-soft);
}

.epm-terms-box h4 {
	margin-top: 0;
}

.epm-terms-box > :last-child {
	margin-bottom: 0;
}


/* Fase 4.1: theme-onafhankelijke CTA's en leesbare deelnamestatus. */
.event-portal-events .epm-button,
.event-portal-events a.epm-button {
	border-color: transparent;
	background: var(--epm-primary, #2456d8);
	color: #fff;
	text-decoration: none;
}

.event-portal-events .epm-button:hover,
.event-portal-events .epm-button:focus,
.event-portal-events a.epm-button:hover,
.event-portal-events a.epm-button:focus {
	background: var(--epm-primary-dark, #173da7);
	color: #fff;
}

.epm-event-participation {
	margin-top: 16px;
}

.epm-participant-view {
	text-align: left;
}

.epm-participant-items {
	display: grid;
	gap: 8px;
	padding: 0;
	list-style: none;
}

.epm-participant-items li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 12px;
	border-radius: 9px;
	background: var(--epm-soft);
}

@media (max-width: 680px) {
	.epm-progress--booking {
		display: grid;
		grid-auto-columns: minmax(118px, 72vw);
	}

	.epm-progress--booking li:not([aria-current="step"]) {
		display: flex;
	}
}

.epm-event-choice--locked {
	cursor: default;
	background: #fff8e7;
}

.epm-inline-link {
	display: inline-block;
	margin-top: 8px;
	font-weight: 750;
}

/* Fase 5: boekingswijzigingen en hoofdboekeroverdrachten. */
.epm-actions--wrap {
	flex-wrap: wrap;
	align-items: center;
}

.epm-actions--wrap form {
	margin: 0;
}

.epm-button--danger,
.epm-portal a.epm-button--danger {
	border-color: #b42318;
	background: #b42318;
	color: #fff;
}

.epm-button--danger:hover,
.epm-button--danger:focus,
.epm-portal a.epm-button--danger:hover,
.epm-portal a.epm-button--danger:focus {
	background: #8f1d14;
	color: #fff;
}

.epm-choice--danger {
	border-color: #f2b8b5;
	background: #fff4f3;
}

.epm-booking-change .epm-summary-list,
.epm-booking-transfer .epm-summary-list {
	margin-block: 16px;
}

@media (max-width: 680px) {
	.epm-actions--wrap {
		position: static;
		margin-inline: 0;
		background: transparent;
		box-shadow: none;
	}

	.epm-actions--wrap form,
	.epm-actions--wrap .epm-button {
		width: 100%;
	}
}


/* Fase 6: betalingen, meldingen en mobiele controle. */
.epm-payment-panel {
	margin-top: 22px;
}

.epm-section-heading {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	align-items: flex-start;
	margin-bottom: 16px;
}

.epm-payment-totals dd strong {
	font-size: 1.12em;
}

.epm-payment-link-box {
	padding: 18px;
	margin: 18px 0;
	border: 1px solid color-mix(in srgb, var(--epm-primary) 32%, #d9dde3);
	border-radius: 14px;
	background: color-mix(in srgb, var(--epm-primary) 7%, #fff);
}

.epm-payment-report {
	margin: 18px 0;
	padding: 14px 16px;
	border: 1px solid #d9dde3;
	border-radius: 12px;
	background: #fff;
}

.epm-payment-report summary {
	cursor: pointer;
	font-weight: 750;
}

.epm-financial-history {
	display: grid;
	gap: 8px;
	padding: 0;
	list-style: none;
}

.epm-financial-history li {
	display: grid;
	grid-template-columns: minmax(130px, 1fr) auto minmax(150px, 1fr);
	gap: 12px;
	align-items: center;
	padding: 10px 12px;
	border-radius: 10px;
	background: var(--epm-soft);
}

.epm-mobile-payment-check {
	max-width: 720px;
	margin-inline: auto;
}

.epm-mobile-actions {
	display: grid;
	gap: 10px;
}

.epm-button--success,
.epm-portal a.epm-button--success {
	border-color: #18794e;
	background: #18794e;
	color: #fff;
}

@media (max-width: 680px) {
	.epm-section-heading {
		align-items: stretch;
		flex-direction: column;
	}

	.epm-financial-history li {
		grid-template-columns: 1fr;
		gap: 3px;
	}
}


/* Fase 6.1: volle boekingsbreedte en vaste tweerijige aanmeldstappen. */
.epm-booking-layout > .epm-booking-main:only-child {
	grid-column: 1 / -1;
	width: 100%;
}

.epm-progress--booking.epm-progress--nine {
	display: grid;
	grid-template-columns: repeat(10, minmax(0, 1fr));
	grid-auto-flow: row;
	grid-auto-columns: unset;
	gap: 8px;
	overflow: visible;
	padding: 2px;
}

.epm-progress--booking.epm-progress--nine li {
	grid-column: span 2;
	min-width: 0;
	min-height: 42px;
	padding: 9px 5px;
	white-space: normal;
}

.epm-progress--booking.epm-progress--nine li:nth-child(6) {
	grid-column: 2 / span 2;
}

@media (max-width: 680px) {
	.epm-progress--booking.epm-progress--nine {
		display: grid;
		grid-template-columns: repeat(10, minmax(0, 1fr));
		grid-auto-flow: row;
		grid-auto-columns: unset;
		overflow: visible;
		padding: 2px;
	}

	.epm-progress--booking.epm-progress--nine li {
		grid-column: span 2;
		min-width: 0;
		min-height: 40px;
		padding: 8px 3px;
		font-size: clamp(9px, 2.6vw, 12px);
		line-height: 1.15;
	}

	.epm-progress--booking.epm-progress--nine li:nth-child(6) {
		grid-column: 2 / span 2;
	}
}


/* Fase 7.1: aparte annuleringspagina. */
.epm-cancellation-page .epm-actions--cancellation-back {
	justify-content: flex-start;
	margin: 0 0 18px;
}

.epm-cancellation-page .epm-cancellation-panel {
	margin-bottom: 0;
}

@media (max-width: 680px) {
	.epm-cancellation-page .epm-actions--cancellation-back .epm-button {
		width: 100%;
	}
}

/* Fase 9: toegankelijke visuele basis en themecompatibiliteit.
 * Bestandsversie aanvulling: 0.9.0
 */
.epm-portal,
.event-portal-events {
	--epm-primary: #005b63;
	--epm-primary-dark: #003f45;
	--epm-success: #146c43;
	--epm-warning: #734600;
	--epm-error: #a02b25;
	--epm-focus: #f2b636;
}

.epm-portal :where(a, button, input, select, textarea, summary):focus-visible,
.event-portal-events :where(a, button, input, select, textarea, summary):focus-visible {
	outline: 3px solid var(--epm-focus);
	outline-offset: 3px;
}

.epm-portal :where(button, .epm-button, input[type="submit"], input[type="button"]),
.event-portal-events :where(button, .epm-button) {
	min-height: 44px;
}

.epm-portal a:not(.epm-button),
.event-portal-events a:not(.epm-button) {
	text-decoration-thickness: .1em;
	text-underline-offset: .18em;
}

.epm-status,
.epm-notice,
.epm-payment-link-box {
	border-style: solid;
}

.epm-status--active,
.epm-status--complete {
	border: 1px solid color-mix(in srgb, var(--epm-success) 45%, #fff);
}

.epm-status--attention {
	border: 1px solid color-mix(in srgb, var(--epm-warning) 45%, #fff);
}

.epm-home {
	max-width: 1180px;
}

.epm-home-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(28px, 7vw, 72px);
	border: 1px solid color-mix(in srgb, var(--epm-primary) 20%, #fff);
	border-radius: 24px;
	background:
		radial-gradient(circle at 88% 18%, rgba(242, 182, 54, .36) 0 9%, transparent 9.5%),
		radial-gradient(circle at 80% 72%, rgba(255, 107, 94, .20) 0 13%, transparent 13.5%),
		linear-gradient(135deg, #ffffff 0%, #effbfa 58%, #fff5dd 100%);
	box-shadow: 0 18px 48px rgba(0, 63, 69, .10);
}

.epm-home-hero h2 {
	max-width: 760px;
	margin-bottom: 14px;
	font-size: clamp(34px, 7vw, 68px);
	line-height: 1.02;
	letter-spacing: -.035em;
}

.epm-home-hero > p:not(.epm-eyebrow) {
	max-width: 720px;
	font-size: clamp(17px, 2.5vw, 22px);
}

.epm-home-actions {
	justify-content: flex-start;
	align-items: center;
}

.epm-home-features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: 24px 0 34px;
}

.epm-home-feature {
	margin: 0;
}

.epm-home-feature__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 16px;
	border-radius: 14px;
	background: #e7f5f3;
	color: var(--epm-primary);
	font-size: 25px;
	font-weight: 900;
}

.epm-home-events > .event-portal-events {
	margin-top: 18px;
}

@media (max-width: 760px) {
	.epm-home-features {
		grid-template-columns: 1fr;
	}

	.epm-home-hero {
		border-radius: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.epm-portal *,
	.epm-portal *::before,
	.epm-portal *::after,
	.event-portal-events *,
	.event-portal-events *::before,
	.event-portal-events *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media (forced-colors: active) {
	.epm-button,
	.epm-notice,
	.epm-card,
	.epm-form,
	.epm-status,
	.event-portal-event-card {
		border: 1px solid CanvasText;
	}
}
