/* ==========================================================================
   Amity Events — Styles v2.3.0
   Brand: Navy #213964 | Purple #674f93 | Teal #35ad96 | Grey #bdb9b9
   Fonts: Montserrat (labels) · Open Sans (body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Container
   -------------------------------------------------------------------------- */

.amity-events-container {
	font-family: 'Open Sans', sans-serif;
	color: #213964;
	transition: opacity 0.2s ease;
}

.amity-events-container.amity-loading {
	opacity: 0.55;
	pointer-events: none;
}

/* --------------------------------------------------------------------------
   Year switcher
   -------------------------------------------------------------------------- */

.amity-year-switcher {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-bottom: 22px;
	font-family: 'Montserrat', sans-serif;
}

.amity-year-btn {
	padding: 8px 20px;
	border: 1px solid #213964;
	background: transparent;
	color: #213964;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.02em;
	border-radius: 3px;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
	line-height: 1.4;
}

.amity-year-btn:hover,
.amity-year-btn:focus-visible {
	background: #213964;
	color: #ffffff;
	outline: none;
}

.amity-year-btn--placeholder {
	display: inline-block;
	width: 100px;
	visibility: hidden;
}

.amity-current-year {
	font-family: 'Montserrat', sans-serif;
	font-size: 22px;
	font-weight: 600;
	color: #213964;
	min-width: 70px;
	text-align: center;
	letter-spacing: 0.01em;
}

/* --------------------------------------------------------------------------
   Table scroll wrapper — horizontal scroll on small viewports
   -------------------------------------------------------------------------- */

.amity-table-scroll {
	overflow-x: auto;
	overflow-y: visible;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	/* Firefox — subtle thin scrollbar */
	scrollbar-width: thin !important;
	scrollbar-color: rgba( 33, 57, 100, 0.2 ) transparent !important;
}

/* Webkit — subtle 4px scrollbar, only visible when content overflows */
.amity-table-scroll::-webkit-scrollbar {
	height: 4px !important;
}

.amity-table-scroll::-webkit-scrollbar-track {
	background: transparent !important;
}

.amity-table-scroll::-webkit-scrollbar-thumb {
	background: rgba( 33, 57, 100, 0.2 ) !important;
	border-radius: 4px !important;
	transition: background 0.3s ease !important;
}

.amity-table-scroll::-webkit-scrollbar-thumb:hover {
	background: rgba( 33, 57, 100, 0.5 ) !important;
}

/* --------------------------------------------------------------------------
   Table base
   -------------------------------------------------------------------------- */

.amity-events-table {
	width: 100% !important;
	/*
	 * Min-width = sum of all column min-widths:
	 * Month(170) + Date(120) + Time(120) + Type(160) + Category(200)
	 * + Topic(160) + More Info(110) + Register(130) = 1170px.
	 * Without this, table-layout:fixed squeezes Topic & More Info together
	 * on small laptop/desktop screens. The scroll wrapper handles overflow.
	 */
	min-width: 1170px;
	border-collapse: collapse;
	font-size: 13px;
	line-height: 1.5;
	table-layout: fixed !important;
}

/* --------------------------------------------------------------------------
   Header row
   -------------------------------------------------------------------------- */

.amity-events-table thead tr {
	background-color: #213964;
}

.amity-events-table thead th {
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.03em;
	padding: 13px 12px;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Column widths — class-based (v1.9.0)
   Fixed px on narrow columns; Topic is auto so it fills all remaining space.
   -------------------------------------------------------------------------- */

/* Month — wide enough for "September 2026" on one line */
.amity-events-wrap table.amity-events-table thead th.col-month,
.amity-events-wrap table.amity-events-table tbody td.col-month {
	width: 170px !important;
	min-width: 170px !important;
}

/* Prevent month cell text bleeding into adjacent column */
.amity-events-wrap table.amity-events-table tbody td.amity-month-cell {
	overflow: hidden !important;
	max-width: 170px !important;
}

/* Date */
.amity-events-wrap table.amity-events-table thead th.col-date,
.amity-events-wrap table.amity-events-table tbody td.col-date {
	width: 120px !important;
	min-width: 120px !important;
}

/* Time */
.amity-events-wrap table.amity-events-table thead th.col-time,
.amity-events-wrap table.amity-events-table tbody td.col-time {
	width: 120px !important;
	min-width: 120px !important;
}

/* Type */
.amity-events-wrap table.amity-events-table thead th.col-type,
.amity-events-wrap table.amity-events-table tbody td.col-type {
	width: 160px !important;
	min-width: 160px !important;
}

/* Category */
.amity-events-wrap table.amity-events-table thead th.col-category,
.amity-events-wrap table.amity-events-table tbody td.col-category {
	width: 200px !important;
	min-width: 200px !important;
}

/* Topic — fills all remaining width, but never squeezes below 160px */
.amity-events-wrap table.amity-events-table thead th.col-topic,
.amity-events-wrap table.amity-events-table tbody td.col-topic {
	width: auto !important;
	min-width: 160px !important;
}

/* More Info */
.amity-events-wrap table.amity-events-table thead th.col-more-info,
.amity-events-wrap table.amity-events-table tbody td.col-more-info {
	width: 110px !important;
	min-width: 110px !important;
	text-align: center !important;
	vertical-align: middle !important;
	white-space: nowrap !important;
}

/* Register */
.amity-events-wrap table.amity-events-table thead th.col-register,
.amity-events-wrap table.amity-events-table tbody td.col-register {
	width: 130px !important;
	min-width: 130px !important;
}

/* --------------------------------------------------------------------------
   Narrow columns — force single line with ellipsis (v1.9.0)
   -------------------------------------------------------------------------- */

.amity-events-wrap table.amity-events-table tbody td.col-date,
.amity-events-wrap table.amity-events-table tbody td.col-time,
.amity-events-wrap table.amity-events-table tbody td.col-type,
.amity-events-wrap table.amity-events-table tbody td.col-category {
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

/* --------------------------------------------------------------------------
   Topic column — allow natural wrapping (v1.9.0)
   -------------------------------------------------------------------------- */

.amity-events-wrap table.amity-events-table tbody td.col-topic {
	white-space: normal !important;
	overflow: visible !important;
	text-overflow: unset !important;
	line-height: 1.6;
	vertical-align: middle !important;
}

/* --------------------------------------------------------------------------
   Consistent cell padding (v1.9.0)
   -------------------------------------------------------------------------- */

.amity-events-wrap table.amity-events-table thead th {
	padding: 13px 12px !important;
}

.amity-events-wrap table.amity-events-table tbody td:not(.amity-month-cell) {
	padding: 12px 12px !important;
}

.amity-events-wrap table.amity-events-table tbody td.col-topic {
	padding: 14px 16px !important;
}

/* Register td — legacy data-label selector kept for fallback */
.amity-events-table td[data-label="Register"] { text-align: center; vertical-align: middle; }

/* --------------------------------------------------------------------------
   High-specificity header overrides — defeats Divi 5 style conflicts.
   Backed up by inline style="" on each <th> in PHP.
   -------------------------------------------------------------------------- */

.amity-events-wrap table.amity-events-table thead th,
.amity-events-wrap table.amity-events-table thead tr th {
	color: #ffffff !important;
	font-family: 'Montserrat', sans-serif !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	text-align: center !important;
	vertical-align: middle !important;
	background-color: #213964 !important;
}

/* Month header — match left padding of month cells */
.amity-events-wrap table.amity-events-table thead th.col-month {
	padding-left: 16px !important;
}

/* High-specificity month cell overrides — defeats Divi 5 style conflicts */
.amity-events-wrap table.amity-events-table tbody td.amity-month-cell {
	color: #ffffff !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	text-align: left !important;
	vertical-align: middle !important;
}

.amity-events-wrap table.amity-events-table tbody td.amity-month-cell--empty {
	background-color: #213964 !important;
}

.amity-events-wrap table.amity-events-table tbody td.amity-month-cell--has-events {
	background-color: #674f93 !important;
}

/* --------------------------------------------------------------------------
   Cell content wrapper — flex layout for month name + view label
   -------------------------------------------------------------------------- */

.amity-cell-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
}

/* --------------------------------------------------------------------------
   Month column cells
   -------------------------------------------------------------------------- */

.amity-month-cell {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	padding: 13px 16px;
	text-align: left;
	vertical-align: middle;
	white-space: nowrap;
	cursor: default;
	min-width: 120px;
	transition: filter 0.18s ease;
}

/* Navy — months with no events */
.amity-month-cell--empty {
	background-color: #213964;
	color: #ffffff !important;
}

/* Purple — months with events */
.amity-month-cell--has-events {
	background-color: #674f93;
	color: #ffffff !important;
	cursor: pointer;
}

.amity-month-cell--has-events:hover {
	filter: brightness(1.18);
}

/* Month name */
.amity-month-name {
	font-size: 13px;
	font-weight: 500;
	display: block;
}

/* Year — second line below month name */
.amity-month-year {
	font-size: 12px;
	font-weight: 400;
	opacity: 0.82;
	display: block;
	line-height: 1.3;
}

/* "↗ view" sub-label */
.amity-month-view-label {
	font-size: 11px;
	font-weight: 400;
	opacity: 0.75;
	letter-spacing: 0.02em;
	display: block;
	text-align: center;
	color: #ffffff;
}

/* Month link — inherits cell colour */
.amity-month-link,
.amity-month-link:visited {
	color: #ffffff;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.amity-month-link:hover {
	text-decoration: none;
}

/* --------------------------------------------------------------------------
   Data rows — alternating backgrounds
   -------------------------------------------------------------------------- */

.amity-events-table tbody td:not(.amity-month-cell) {
	padding: 14px 16px;
	color: #213964;
	vertical-align: top;
	transition: background-color 0.18s ease;
}

.amity-row--a td:not(.amity-month-cell) {
	background-color: #eef1f6;
}

.amity-row--b td:not(.amity-month-cell) {
	background-color: #dde3ee;
}

/* --------------------------------------------------------------------------
   Clickable event rows
   -------------------------------------------------------------------------- */

.amity-event-row[data-event-url] td:not(.amity-month-cell):not(.amity-register-cell) {
	cursor: pointer;
}

/* --------------------------------------------------------------------------
   Row hover animation
   Note: transform on <tr> is supported in Chrome 80+, Firefox, Edge 80+,
   and Safari 14+. Falls back gracefully to background-only in older browsers.
   -------------------------------------------------------------------------- */

.amity-event-row:not(.amity-event-row--no-events) {
	transition: background 0.18s ease, box-shadow 0.18s ease;
}

.amity-event-row:not(.amity-event-row--no-events):hover {
	/* No scale() — prevents row from widening and triggering scrollbar */
	transform: none !important;
	box-shadow: inset 0 0 0 2px rgba( 33, 57, 100, 0.15 ) !important;
	cursor: pointer;
}

.amity-event-row:not(.amity-event-row--no-events):hover td:not(.amity-month-cell) {
	background-color: #cdd5e8 !important;
}

.amity-event-row:not(.amity-event-row--no-events):hover .amity-month-cell {
	filter: brightness(0.9) !important;
}

/* --------------------------------------------------------------------------
   Past event rows
   -------------------------------------------------------------------------- */

.amity-event-row--past {
	opacity: 0.6;
}

.amity-event-row--past.amity-row--a td:not(.amity-month-cell) {
	background-color: #e2e4ea;
}

.amity-event-row--past.amity-row--b td:not(.amity-month-cell) {
	background-color: #d0d4de;
}

/* --------------------------------------------------------------------------
   Event type badge
   -------------------------------------------------------------------------- */

.amity-type-badge {
	display: inline-block;
	background-color: #35ad96;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.01em;
	padding: 3px 9px;
	border-radius: 4px;
	white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Completed badge (past events)
   -------------------------------------------------------------------------- */

.amity-completed-badge {
	display: inline-block;
	background: #bdb9b9;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 10px;
	font-weight: 500;
	padding: 2px 6px;
	border-radius: 3px;
	margin-left: 4px;
	white-space: nowrap;
	vertical-align: middle;
}

/* --------------------------------------------------------------------------
   Register button (table cell)
   -------------------------------------------------------------------------- */

.amity-register-btn,
.amity-register-btn:visited {
	display: inline-block;
	background: #35ad96;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 500;
	padding: 6px 14px;
	border-radius: 4px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s ease;
}

.amity-register-btn:hover,
.amity-register-btn:focus {
	background: #213964;
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

/* --------------------------------------------------------------------------
   Empty state
   -------------------------------------------------------------------------- */

.amity-empty-dash {
	color: #bdb9b9;
	font-size: 13px;
}

.amity-no-events {
	color: #bdb9b9;
	font-size: 12px;
	font-style: italic;
}

/* --------------------------------------------------------------------------
   Filter bar
   -------------------------------------------------------------------------- */

.amity-filter-bar {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
	width: 100%;
}

.amity-filter-left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.amity-filter-right {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: auto;
}

@media ( max-width: 768px ) {
	.amity-filter-bar {
		flex-direction: column !important;
		align-items: flex-start !important;
	}

	/* Label sits on its own line; dropdowns stack left-aligned below it */
	.amity-filter-left {
		flex-direction: column;
		align-items: flex-start;
	}

	.amity-filter-right {
		margin-left: 0;
		width: 100%;
		justify-content: flex-start;
	}

	/* Keep "All Events" and "Upcoming Events" on a single line each */
	.amity-toggle-label {
		white-space: nowrap;
		font-size: 11px;
	}
}

.amity-filter-label {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #213964;
	white-space: nowrap;
}

.amity-filter-bar select {
	border: 1px solid #213964;
	color: #213964;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	padding: 8px 12px;
	border-radius: 4px;
	background: #ffffff;
	min-width: 160px;
	cursor: pointer;
	outline: none;
	transition: border-color 0.15s ease;
	-webkit-appearance: auto;
	appearance: auto;
}

.amity-filter-bar select:focus {
	border-color: #35ad96;
}

.amity-filter-reset {
	background: transparent;
	border: 1px solid #bdb9b9;
	color: #213964;
	padding: 8px 14px;
	border-radius: 4px;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
	line-height: 1.4;
}

.amity-filter-reset:hover,
.amity-filter-reset:focus-visible {
	border-color: #213964;
	background: #213964;
	color: #ffffff;
	outline: none;
}

/* --------------------------------------------------------------------------
   Single Event Page — hero image
   -------------------------------------------------------------------------- */

.amity-event-single {
	max-width: 100%;
}

.amity-event-hero {
	margin-bottom: 0;
}

.amity-event-hero img {
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: unset;
	display: block;
}

/* --------------------------------------------------------------------------
   Single Event Page — meta bar
   -------------------------------------------------------------------------- */

.amity-event-meta-wrap {
	max-width: 960px;
	margin: 0 auto;
	padding: 40px 24px 0 !important;
}

.amity-event-hero + .amity-event-meta-wrap {
	padding-top: 36px !important;
}

.amity-event-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: #213964;
	margin-top: 0;
	margin-bottom: 24px !important;
	padding-top: 8px;
}

.amity-event-meta-items {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 24px;
}

.amity-meta-item {
	display: flex;
	flex-direction: column;
}

.amity-meta-item--full {
	flex-basis: 100%;
}

.amity-meta-label {
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: #35ad96;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: block;
	margin-bottom: 4px;
}

.amity-meta-value {
	font-family: 'Open Sans', sans-serif;
	font-size: 15px;
	color: #213964;
	font-weight: 500;
}

/* --------------------------------------------------------------------------
   Single Event Page — topic block (full-width, below flex meta row)
   -------------------------------------------------------------------------- */

.amity-event-topic-block {
	width: 100%;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-top: 20px;
	border-top: 1px solid #eef1f6;
}

.amity-event-topic-text {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: #213964;
	line-height: 1.7;
	margin-top: 8px;
	margin-bottom: 0;
	max-width: 800px;
}

/* --------------------------------------------------------------------------
   Completed label — shown in the Register cell / mobile actions for past events
   -------------------------------------------------------------------------- */

.amity-completed-label {
	display: inline-block;
	background: #bdb9b9;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 4px;
	white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Single Event Page — Event Completed banner
   -------------------------------------------------------------------------- */

.amity-event-completed-banner {
	display: inline-block;
	background: #bdb9b9;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 4px;
	margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   Single Event Page — register button
   -------------------------------------------------------------------------- */

.amity-event-register {
	margin-bottom: 8px;
}

.amity-register-btn-single,
.amity-register-btn-single:visited {
	display: inline-block;
	background: #35ad96;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 500;
	padding: 10px 20px;
	border-radius: 4px;
	text-decoration: none;
	margin-top: 4px;
	transition: background 0.15s ease;
}

.amity-register-btn-single:hover,
.amity-register-btn-single:focus {
	background: #213964;
	color: #ffffff;
	outline: none;
}

/* --------------------------------------------------------------------------
   Single Event Page — category badges
   -------------------------------------------------------------------------- */

.amity-event-categories {
	margin-bottom: 16px;
}

.amity-cat-badge {
	display: inline-block;
	background: #eef1f6;
	color: #213964;
	border: 1px solid #213964;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	padding: 3px 10px;
	border-radius: 12px;
	margin-right: 6px;
	margin-bottom: 6px;
}

/* --------------------------------------------------------------------------
   Single Event Page — Add to Calendar
   -------------------------------------------------------------------------- */

.amity-add-to-cal {
	margin-top: 20px;
	margin-bottom: 8px;
}

.amity-cal-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.amity-cal-btn,
.amity-cal-btn:visited {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 4px;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid #213964;
	color: #213964;
	transition: background 0.15s ease, color 0.15s ease;
}

.amity-cal-btn:hover,
.amity-cal-btn:focus {
	background: #213964;
	color: #ffffff;
	outline: none;
}

.amity-cal-google,
.amity-cal-google:visited {
	border-color: #35ad96;
	color: #35ad96;
}

.amity-cal-google:hover,
.amity-cal-google:focus {
	background: #35ad96;
	color: #ffffff;
	border-color: #35ad96;
}

/* Outlook / Desktop — Microsoft blue */
.amity-cal-outlook,
.amity-cal-outlook:visited {
	border-color: #0078d4;
	color: #0078d4;
}

.amity-cal-outlook:hover,
.amity-cal-outlook:focus {
	background: #0078d4;
	color: #ffffff;
	border-color: #0078d4;
}

/* Apple / iCal — neutral dark grey */
.amity-cal-ics,
.amity-cal-ics:visited {
	border-color: #555555;
	color: #555555;
}

.amity-cal-ics:hover,
.amity-cal-ics:focus {
	background: #555555;
	color: #ffffff;
	border-color: #555555;
}

/* Helper text below calendar buttons */
.amity-cal-helper {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	color: #bdb9b9;
	margin-top: 8px;
	margin-bottom: 0;
	font-style: italic;
}

/* --------------------------------------------------------------------------
   Single Event Page — content area (Divi-editable)
   -------------------------------------------------------------------------- */

.amity-event-content {
	max-width: 960px;
	margin: 0 auto;
	padding: 32px 24px 60px;
}

/* --------------------------------------------------------------------------
   Responsive — tablet (480px – 980px)
   -------------------------------------------------------------------------- */

@media screen and (min-width: 480px) and (max-width: 980px) {
	.amity-events-table {
		font-size: 12px;
	}

	.amity-events-table thead th,
	.amity-events-table tbody td {
		padding: 10px 12px;
	}

	.amity-month-cell {
		min-width: 90px;
		padding: 10px 12px;
	}

	.amity-current-year {
		font-size: 18px;
	}

	.amity-event-title {
		font-size: 22px;
	}
}

/* --------------------------------------------------------------------------
   Responsive — phone (≤ 479px)
   Stacked card layout using data-label attributes.
   -------------------------------------------------------------------------- */

@media screen and (max-width: 479px) {

	.amity-events-table,
	.amity-events-table thead,
	.amity-events-table tbody,
	.amity-events-table th,
	.amity-events-table td,
	.amity-events-table tr {
		display: block;
	}

	.amity-events-table {
		min-width: unset;
	}

	/* Hide column header row — labels come from data-label */
	.amity-events-table thead {
		display: none;
	}

	.amity-event-row {
		margin-bottom: 12px;
		border: 1px solid rgba( 33, 57, 100, 0.15 );
		border-radius: 4px;
		overflow: hidden;
	}

	/* Month cell spans full width as a header block */
	.amity-month-cell {
		white-space: normal;
		text-align: center;
		padding: 12px 16px;
		min-width: unset;
	}

	.amity-cell-content {
		align-items: center;
	}

	/* Data cells: label on left, value on right */
	.amity-events-table tbody td:not(.amity-month-cell) {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		padding: 8px 14px;
		border-top: 1px solid rgba( 33, 57, 100, 0.06 );
		gap: 8px;
		width: auto !important;
		min-width: unset !important;
	}

	.amity-events-table tbody td:not(.amity-month-cell)::before {
		content: attr( data-label );
		font-family: 'Montserrat', sans-serif;
		font-weight: 600;
		font-size: 11px;
		color: #213964;
		flex-shrink: 0;
		padding-top: 1px;
	}

	.amity-year-switcher {
		gap: 10px;
	}

	.amity-year-btn {
		padding: 7px 13px;
		font-size: 12px;
	}

	.amity-year-btn--placeholder {
		width: 70px;
	}

	.amity-current-year {
		font-size: 18px;
		min-width: 55px;
	}

	.amity-event-meta-wrap {
		padding: 24px 16px 0;
	}

	.amity-event-title {
		font-size: 20px;
	}

	.amity-event-meta-items {
		gap: 16px;
	}

	.amity-cal-buttons {
		flex-direction: column;
	}
}

/* --------------------------------------------------------------------------
   Category pill — table cell (v1.6.0)
   -------------------------------------------------------------------------- */

.amity-cat-pill {
	display: inline-block;
	background: #eef1f6;
	color: #213964;
	border: 1px solid #213964;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 500;
	padding: 2px 8px;
	border-radius: 10px;
	margin: 2px;
	white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Left-aligned data columns — Date, Time, Type, Category
   Backed up by inline styles on each <td> in PHP.
   -------------------------------------------------------------------------- */

.amity-events-table td[data-label="Date"],
.amity-events-table td[data-label="Time"],
.amity-events-table td[data-label="Type"],
.amity-events-table td[data-label="Category"],
.amity-events-table td.col-date,
.amity-events-table td.col-time,
.amity-events-table td.col-type,
.amity-events-table td.col-category {
	text-align: left !important;
	vertical-align: middle !important;
}

/* --------------------------------------------------------------------------
   Settings page — admin UI (v1.6.0)
   Scoped to .amity-settings-wrap so rules don't leak into wp-admin globally.
   -------------------------------------------------------------------------- */

.amity-settings-wrap {
	max-width: 760px;
	margin: 24px 0;
	font-family: 'Open Sans', sans-serif;
}

.amity-settings-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #213964;
	margin-bottom: 20px;
}

.amity-settings-notice {
	background: #35ad96;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 500;
	padding: 12px 16px;
	border-radius: 4px;
	margin-bottom: 16px;
}

.amity-settings-section {
	background: #ffffff;
	border: 1px solid #e0e4ed;
	border-radius: 6px;
	padding: 24px 28px;
	margin-bottom: 24px;
}

.amity-settings-section-heading {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #213964;
	border-bottom: 2px solid #35ad96;
	padding-bottom: 8px;
	margin-top: 0;
	margin-bottom: 16px;
}

.amity-settings-description {
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	color: #555;
	margin-bottom: 16px;
}

.amity-settings-fields {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.amity-settings-field {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.amity-settings-field input[type="checkbox"] {
	width: 17px;
	height: 17px;
	margin-top: 2px;
	flex-shrink: 0;
	accent-color: #35ad96;
	cursor: pointer;
}

.amity-settings-field-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.amity-settings-field-text strong {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #213964;
}

.amity-settings-field-text span {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	color: #777;
}

.amity-settings-note {
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	color: #666;
	background: #f8f9fb;
	border-left: 3px solid #35ad96;
	padding: 10px 14px;
	margin-top: 16px;
	margin-bottom: 0;
	border-radius: 0 4px 4px 0;
}

.amity-settings-save,
input.amity-settings-save {
	background: #213964 !important;
	color: #ffffff !important;
	font-family: 'Montserrat', sans-serif !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	padding: 10px 24px !important;
	border-radius: 4px !important;
	border: none !important;
	cursor: pointer !important;
	transition: background 0.15s ease !important;
	height: auto !important;
}

.amity-settings-save:hover,
input.amity-settings-save:hover {
	background: #35ad96 !important;
}

/* --------------------------------------------------------------------------
   Admin — CSV export button (v2.0.0)
   -------------------------------------------------------------------------- */

.amity-csv-export-btn,
.amity-csv-export-btn:visited {
	display: inline-block;
	background: #213964;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 500;
	padding: 10px 20px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	margin-bottom: 0;
	transition: background 0.15s ease;
}

.amity-csv-export-btn:hover,
.amity-csv-export-btn:focus {
	background: #35ad96;
	color: #ffffff;
	text-decoration: none;
	outline: none;
}

/* --------------------------------------------------------------------------
   Registration popup — overlay, modal, form (v2.0.0)
   -------------------------------------------------------------------------- */

.amity-reg-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba( 33, 57, 100, 0.7 );
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.amity-reg-modal {
	background: #ffffff;
	border-radius: 8px;
	padding: 40px;
	max-width: 640px;
	width: 100%;
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 8px 40px rgba( 33, 57, 100, 0.25 );
}

.amity-reg-close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	color: #bdb9b9;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	transition: color 0.15s ease;
}

.amity-reg-close:hover {
	color: #213964;
}

.amity-reg-header {
	margin-bottom: 28px;
	border-bottom: 2px solid #35ad96;
	padding-bottom: 16px;
}

.amity-reg-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #213964;
	margin: 0 0 6px;
}

.amity-reg-subtitle {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	color: #674f93;
	margin: 0;
	font-style: italic;
}

.amity-reg-row {
	display: flex;
	gap: 16px;
	margin-bottom: 16px;
}

.amity-reg-field {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.amity-reg-field--full {
	flex: 1 1 100%;
}

.amity-reg-field label {
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #213964;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.amity-reg-field input {
	border: 1px solid #bdb9b9;
	border-radius: 4px;
	padding: 10px 12px;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	color: #213964;
	outline: none;
	transition: border-color 0.15s ease;
	background: #ffffff;
}

.amity-reg-field input:focus {
	border-color: #35ad96;
}

.amity-reg-actions {
	display: flex;
	gap: 12px;
	margin-top: 24px;
	align-items: center;
	flex-wrap: wrap;
}

.amity-reg-submit {
	background: #213964;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 12px 28px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.15s ease;
}

.amity-reg-submit:hover {
	background: #35ad96;
}

.amity-reg-submit:disabled {
	background: #bdb9b9;
	cursor: not-allowed;
}

.amity-reg-cancel {
	background: transparent;
	color: #213964;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	padding: 12px 20px;
	border: 1px solid #bdb9b9;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.amity-reg-cancel:hover {
	border-color: #213964;
	background: #eef1f6;
}

.amity-reg-message {
	margin-top: 16px;
	padding: 12px 16px;
	border-radius: 4px;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
}

.amity-reg-message--success {
	background: #35ad96;
	color: #ffffff;
}

.amity-reg-message--error {
	background: #fff0f0;
	color: #c00000;
	border: 1px solid #fcc;
}

/* Popup button — same visual as register-btn-single */
.amity-register-btn-popup {
	border: none;
	cursor: pointer;
}

@media screen and (max-width: 600px) {
	.amity-reg-modal {
		padding: 24px 20px;
	}

	.amity-reg-row {
		flex-direction: column;
		gap: 0;
	}
}

/* ==========================================================================
   v2.1.0 — Admin: Tabs, Overview, Registrations Table, Delete, Refresh
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tab navigation
   -------------------------------------------------------------------------- */

.amity-reg-tabs {
	display: flex;
	gap: 0;
	margin: 16px 0 0;
	border-bottom: 2px solid #213964;
}

.amity-reg-tab {
	display: inline-block;
	padding: 9px 22px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid transparent;
	border-bottom: none;
	border-radius: 4px 4px 0 0;
	transition: background 0.15s ease, color 0.15s ease;
}

.amity-reg-tab--active {
	background: #213964;
	color: #fff !important;
	border-color: #213964;
	cursor: default;
	pointer-events: none;
}

.amity-reg-tab--inactive {
	background: #f0f0f1;
	color: #213964 !important;
	border-color: #c3c4c7;
}

.amity-reg-tab--inactive:hover {
	background: #e6e6e6;
}

.amity-reg-tab-body {
	background: #fff;
	border: 1px solid #c3c4c7;
	border-top: none;
	padding: 24px;
}

/* --------------------------------------------------------------------------
   Overview — summary bar
   -------------------------------------------------------------------------- */

.amity-reg-summary-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 0 32px;
	align-items: center;
	background: #213964;
	color: #fff;
	padding: 16px 24px;
	border-radius: 4px;
	margin-bottom: 24px;
}

.amity-reg-summary-bar strong {
	font-size: 22px;
	font-weight: 700;
	display: block;
	line-height: 1.1;
}

.amity-reg-summary-bar span {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0.75;
}

/* --------------------------------------------------------------------------
   Overview — event cards
   -------------------------------------------------------------------------- */

.amity-reg-event-cards {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 280px, 1fr ) );
	gap: 16px;
}

.amity-reg-event-card {
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.amity-reg-event-card--has-regs {
	border-left: 4px solid #35ad96;
}

.amity-reg-event-card__title {
	font-size: 14px;
	font-weight: 700;
	color: #213964;
	margin: 0 0 2px;
	line-height: 1.3;
}

.amity-reg-event-card__date {
	font-size: 12px;
	color: #666;
}

.amity-reg-event-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.amity-reg-event-card__stats {
	display: flex;
	gap: 20px;
	margin: 4px 0;
}

.amity-reg-stat {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.amity-reg-stat__count {
	font-size: 24px;
	font-weight: 700;
	color: #213964;
	line-height: 1;
}

.amity-reg-stat__label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #888;
	margin-top: 2px;
}

.amity-reg-event-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.amity-reg-event-card__actions .button {
	font-size: 12px;
	padding: 3px 10px;
}

/* --------------------------------------------------------------------------
   Admin registrations table (FIX 3)
   -------------------------------------------------------------------------- */

.amity-reg-admin-table {
	table-layout: fixed !important;
	width: 100% !important;
	border-collapse: collapse;
	font-size: 13px;
	overflow-x: visible !important;
}

.amity-reg-admin-table th,
.amity-reg-admin-table td {
	padding: 8px 10px;
	border: 1px solid #e0e0e0;
	word-wrap: break-word;
	overflow-wrap: break-word;
	vertical-align: top;
}

.amity-reg-admin-table thead th {
	background: #213964;
	color: #fff;
	font-weight: 600;
	text-align: left;
	white-space: nowrap;
}

.amity-reg-admin-table tbody tr:nth-child(even) td {
	background: #f7f7f7;
}

.amity-reg-admin-table tbody tr:hover td {
	background: #eaf6f3;
}

/* --------------------------------------------------------------------------
   Delete link (FIX 1)
   -------------------------------------------------------------------------- */

.amity-delete-reg {
	color: #c00;
	text-decoration: none;
	font-size: 12px;
	cursor: pointer;
}

/* =============================================================================
   MOBILE EVENTS SHORTCODE  [amity_events_mobile]
   ============================================================================= */

.amity-mob-evt-wrap {
	font-family: 'Open Sans', sans-serif;
	width: 100%;
	box-sizing: border-box;
}

/* Month section */
.amity-mob-evt-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.amity-mob-evt-month {
	margin-bottom: 10px;
}

.amity-mob-evt-month-hd {
	background: #213964;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	padding: 10px 16px;
	border-radius: 4px 4px 0 0;
}

.amity-mob-evt-month-hd--active {
	background: #674f93;
}

/* Card */
.amity-mob-evt-card {
	border: 1px solid #e6e6e6;
	border-left: 4px solid #35ad96;
	background: #fff;
	margin-bottom: 6px;
	border-radius: 0 0 3px 3px;
}

.amity-mob-evt-card--past {
	border-left-color: #bdb9b9;
}

.amity-mob-evt-card-hd {
	width: 100%;
	text-align: left;
	padding: 14px 16px;
	background: none;
	border: none;
	cursor: pointer;
	display: block;
}

.amity-mob-evt-card-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 8px;
}

.amity-mob-evt-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	flex: 1;
}

.amity-mob-evt-date {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #213964;
}

.amity-mob-evt-time-chip {
	font-size: 11px;
	font-weight: 600;
	color: #35ad96;
	background: rgba(53, 173, 150, 0.1);
	border: 1px solid rgba(53, 173, 150, 0.35);
	border-radius: 12px;
	padding: 2px 8px;
	white-space: nowrap;
}

.amity-mob-evt-chevron {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: #bdb9b9;
	transition: transform 0.25s ease;
	margin-top: 2px;
}

.amity-mob-evt-card-hd[aria-expanded="true"] .amity-mob-evt-chevron {
	transform: rotate(180deg);
}

.amity-mob-evt-topic-preview {
	font-size: 13px;
	color: #555;
	line-height: 1.5;
	margin: 0 0 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-align: left;
}

.amity-mob-evt-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

/* Card body */
.amity-mob-evt-card-body {
	display: none;
	padding: 4px 16px 16px;
	border-top: 1px solid #f0f0f0;
}

.amity-mob-evt-card-body.is-open {
	display: block;
}

.amity-mob-evt-topic-full {
	font-size: 13px;
	color: #444;
	line-height: 1.75;
	margin: 12px 0;
}

.amity-mob-evt-place {
	font-size: 13px;
	color: #555;
	margin: 0 0 12px;
}

.amity-mob-evt-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 12px;
}

.amity-mob-evt-more-btn {
	display: inline-block;
	padding: 10px 16px;
	background: #213964;
	color: #fff !important;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.2s ease;
}

.amity-mob-evt-more-btn:hover {
	background: #2d4f85;
	color: #fff !important;
	text-decoration: none;
}

.amity-mob-evt-reg-btn {
	display: inline-block;
	padding: 10px 16px;
	background: #213964;
	color: #fff !important;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.amity-mob-evt-reg-btn:hover {
	background: #35ad96;
	color: #fff !important;
	text-decoration: none;
}

.amity-mob-evt-empty {
	color: #bdb9b9;
	font-size: 13px;
	font-style: italic;
	padding: 12px 16px;
	border: 1px solid #e6e6e6;
	border-top: none;
	margin-bottom: 6px;
	border-radius: 0 0 3px 3px;
	background: #fff;
}

.amity-delete-reg:hover {
	color: #900;
	text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Refresh button (FIX 2)
   -------------------------------------------------------------------------- */

.amity-refresh-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: #f0f0f1;
	color: #213964;
	border: 1px solid #c3c4c7;
	border-radius: 3px;
	padding: 5px 12px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.15s ease;
}

.amity-refresh-btn:hover {
	background: #ddd;
	color: #213964;
}

/* ==========================================================================
   v2.2.0 — More Info button, admin page width, Registered At column
   ========================================================================== */

/* --------------------------------------------------------------------------
   More Info button (front-end table)
   -------------------------------------------------------------------------- */

.amity-more-info-btn {
	display: inline-block;
	background: transparent;
	color: #213964;
	border: 1px solid #213964;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 500;
	padding: 5px 12px;
	border-radius: 4px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s ease, color 0.15s ease;
}

.amity-more-info-btn:hover {
	background: #213964;
	color: #ffffff;
}

/* --------------------------------------------------------------------------
   Admin registrations page — full-width wrapper (FIX 2)
   -------------------------------------------------------------------------- */

.amity-reg-page-wrap {
	max-width: 100% !important;
	width: 100% !important;
	box-sizing: border-box;
}

.amity-reg-table-card {
	background: #ffffff;
	border-radius: 6px;
	border: 1px solid #eef1f6;
	padding: 24px 28px;
	width: 100%;
	box-sizing: border-box;
	overflow: visible;
	margin-top: 16px;
}

.amity-reg-table-card .amity-reg-admin-table {
	width: 100% !important;
	table-layout: fixed !important;
}

/* --------------------------------------------------------------------------
   Registered At column — single line, no wrap (FIX 1)
   -------------------------------------------------------------------------- */

.amity-reg-admin-table td.col-registered-at {
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	width: 130px;
	min-width: 130px;
}

/* ==========================================================================
   v2.3.0 — Past/Upcoming toggle, table register button, category dots fix,
             background image overlay
   ========================================================================== */

/* --------------------------------------------------------------------------
   Past / Upcoming sliding toggle
   -------------------------------------------------------------------------- */

.amity-toggle-wrap {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.amity-toggle-label {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: #bdb9b9;
	transition: color 0.2s ease;
	cursor: default;
	user-select: none;
}

.amity-toggle-label.active {
	color: #213964;
	font-weight: 600;
}

.amity-status-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	outline: none;
}

.amity-status-toggle:focus-visible .amity-toggle-track {
	box-shadow: 0 0 0 3px rgba(33, 57, 100, 0.25);
}

.amity-toggle-track {
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
	border-radius: 12px;
	background: #213964;
	transition: background 0.2s ease;
}

.amity-status-toggle[aria-checked="false"] .amity-toggle-track {
	background: #674f93;
}

.amity-toggle-thumb {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
	transition: transform 0.2s ease;
}

.amity-status-toggle[aria-checked="true"] .amity-toggle-thumb {
	transform: translateX( 20px );
}

/* --------------------------------------------------------------------------
   Table Register button — URL link variant (transparent, navy border)
   -------------------------------------------------------------------------- */

button.amity-register-btn-table {
	display: inline-block;
	background: transparent;
	color: #213964;
	border: 1px solid #213964;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 500;
	padding: 5px 12px;
	border-radius: 4px;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
	line-height: 1.4;
}

button.amity-register-btn-table:hover {
	background: #213964;
	color: #ffffff;
}

/* --------------------------------------------------------------------------
   Table Register button — popup trigger variant (navy fill, white text)
   Overrides the transparent base style above for buttons that open the
   registration modal rather than linking to an external URL.
   -------------------------------------------------------------------------- */

.amity-reg-table-popup {
	background: #213964 !important;
	color: #ffffff !important;
	border: none !important;
	font-family: 'Montserrat', sans-serif !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	padding: 6px 14px !important;
	border-radius: 4px !important;
	cursor: pointer !important;
	white-space: nowrap !important;
	display: inline-block !important;
	transition: background 0.15s ease !important;
}

.amity-reg-table-popup:hover {
	background: #35ad96 !important;
	color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   Category column — remove any list-style dots or pseudo-element bullets
   -------------------------------------------------------------------------- */

.col-category ul,
.col-category li {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.amity-cat-pill::before,
.amity-cat-pill::after {
	content: none !important;
}

td.col-category *::before,
td.col-category *::after {
	content: none !important;
}

/* --------------------------------------------------------------------------
   Single event page — full-page background image
   -------------------------------------------------------------------------- */

.amity-event-page-wrap {
	position: relative;
	min-height: 100vh;
}

.amity-event-bg-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.82);
	z-index: 0;
	pointer-events: none;
}

.amity-event-single {
	position: relative;
	z-index: 1;
}
