﻿/* CodeFixr Events â€” pro front UI (inherits theme fonts) */

.cfx-ev-app {
	--cfx-ink: #111827;
	--cfx-ink-soft: #1f2937;
	--cfx-muted: #6b7280;
	--cfx-line: #e5e7eb;
	--cfx-line-soft: #f3f4f6;
	--cfx-surface: #ffffff;
	--cfx-canvas: #f3f5f9;
	--cfx-cell: #ffffff;
	--cfx-cell-muted: #f9fafb;
	--cfx-cell-hover: #fafafa;
	--cfx-mix-base: #ffffff;
	--cfx-accent: #6c5dd3;
	--cfx-accent-deep: #5b4fc7;
	--cfx-accent-soft: rgba(108, 93, 211, 0.14);
	--cfx-warn: #b45309;
	--cfx-danger: #b91c1c;
	--cfx-radius: 16px;
	--cfx-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.06);
	--cfx-shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
	color: var(--cfx-ink);
	background: transparent;
	font-family: inherit;
	font-size: inherit;
	line-height: 1.5;
}

.cfx-ev-app a { transition: color 0.15s ease, background 0.15s ease, box-shadow 0.2s ease, transform 0.2s ease; }

/* Header */
.cfx-ev-app__header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.15rem;
}

.cfx-ev-app__heading {
	margin: 0;
	font-size: 1.85em;
	font-weight: 750;
	letter-spacing: -0.03em;
	line-height: 1.15;
	color: var(--cfx-ink);
}

.cfx-ev-app__lede {
	margin: 0.35rem 0 0;
	color: var(--cfx-muted);
	font-size: 0.98em;
}

.cfx-ev-app__header .cfx-ev-app__views {
	margin: 0;
}

/* App shell + sidebar */
.cfx-ev-app__shell {
	position: relative;
}

.cfx-ev-app__shell-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 19rem;
	gap: 1.5rem;
	align-items: start;
}

.cfx-ev-app__shell-body[hidden],
.cfx-ev-app__gate[hidden] {
	display: none !important;
}

.cfx-ev-app__gate {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: clamp(260px, 40vw, 480px);
	padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 3vw, 2.5rem);
	box-sizing: border-box;
}

.cfx-ev-app--sidebar-left .cfx-ev-app__shell-body {
	grid-template-columns: 19rem minmax(0, 1fr);
}

.cfx-ev-app--sidebar-none .cfx-ev-app__shell-body {
	grid-template-columns: minmax(0, 1fr);
}

.cfx-ev-app--sidebar-top .cfx-ev-app__shell-body,
.cfx-ev-app--sidebar-bottom .cfx-ev-app__shell-body {
	grid-template-columns: minmax(0, 1fr);
}

.cfx-ev-app--sidebar-top .cfx-ev-aside,
.cfx-ev-app--sidebar-bottom .cfx-ev-aside {
	position: static;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.cfx-ev-app__main { min-width: 0; }

.cfx-ev-aside {
	display: grid;
	gap: 1rem;
	position: sticky;
	top: 1rem;
}

.cfx-ev-aside__card {
	padding: 1.25rem 1.2rem;
	border: 1px solid var(--cfx-line);
	border-radius: 20px;
	background: var(--cfx-surface);
	box-shadow: var(--cfx-shadow);
}

.cfx-ev-aside__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.cfx-ev-aside__title {
	margin: 0 0 1rem;
	font-size: 1em;
	font-weight: 750;
	letter-spacing: -0.02em;
}

.cfx-ev-aside__head .cfx-ev-aside__title { margin: 0; }

.cfx-ev-aside__date {
	font-size: 0.85em;
	font-weight: 700;
	color: var(--cfx-muted);
}

.cfx-ev-aside__empty {
	margin: 0;
	color: var(--cfx-muted);
	font-size: 0.95em;
}

.cfx-ev-aside__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.cfx-ev-aside__item {
	display: grid;
	grid-template-columns: 3.4rem 1fr;
	gap: 0.75rem;
	align-items: start;
	padding: 0.65rem;
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	background: var(--cfx-canvas);
	border: 1px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.cfx-ev-aside__item:hover {
	transform: translateY(-2px);
	border-color: var(--cfx-line);
	box-shadow: var(--cfx-shadow);
	background: var(--cfx-surface);
}

.cfx-ev-aside__hour {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.4rem;
	min-height: 3.4rem;
	padding: 0.35rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--cfx-event-color, var(--cfx-accent)) 18%, var(--cfx-mix-base));
	color: var(--cfx-event-color, var(--cfx-accent));
	font-size: 0.72em;
	font-weight: 750;
	text-align: center;
	line-height: 1.15;
	box-shadow: inset 0 0 0 2px color-mix(in srgb, var(--cfx-event-color, var(--cfx-accent)) 35%, transparent);
}

.cfx-ev-aside__item-body { display: grid; gap: 0.2rem; min-width: 0; }
.cfx-ev-aside__item-title { font-weight: 700; font-size: 0.98em; line-height: 1.3; }
.cfx-ev-aside__item-meta { font-size: 0.84em; color: var(--cfx-muted); }

.cfx-ev-aside__legend {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.35rem;
}

.cfx-ev-aside__legend li {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 0.65rem;
	align-items: center;
	font-size: 0.95em;
	padding: 0.55rem 0.5rem;
	border-radius: 12px;
	transition: background 0.15s ease;
}

.cfx-ev-aside__legend li:hover {
	background: var(--cfx-canvas);
}

.cfx-ev-aside__dot {
	width: 0.7rem;
	height: 0.7rem;
	border-radius: 999px;
}

.cfx-ev-aside__legend-count {
	color: var(--cfx-muted);
	font-weight: 700;
	font-size: 0.85em;
}

/* Event detail drawer */
.cfx-ev-drawer {
	display: grid;
	gap: 1rem;
}

.cfx-ev-drawer__detail {
	position: relative;
	border: 1px solid var(--cfx-line);
	border-radius: 20px;
	background: var(--cfx-surface);
	box-shadow: var(--cfx-shadow-lg);
	overflow: hidden;
}

.cfx-ev-drawer__detail[hidden],
.cfx-ev-drawer__idle[hidden] {
	display: none !important;
}

.cfx-ev-drawer__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	width: 2.25rem;
	height: 2.25rem;
	border: 0;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.55);
	color: #fff;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
}

.cfx-ev-drawer__media {
	min-height: 10.5rem;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--cfx-event-color, var(--cfx-accent)) 55%, #111827), color-mix(in srgb, var(--cfx-accent) 70%, #312e81));
	background-size: cover;
	background-position: center;
}

.cfx-ev-drawer__media.has-image {
	background-color: #1f2937;
}

.cfx-ev-drawer__body {
	display: grid;
	gap: 0.85rem;
	padding: 1.2rem 1.25rem 1.35rem;
}

.cfx-ev-drawer__cat {
	display: inline-flex;
	align-self: start;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--cfx-accent) 16%, var(--cfx-mix-base));
	color: var(--cfx-accent-deep);
	font-size: 0.72em;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.cfx-ev-drawer__title {
	margin: 0;
	font-size: 1.35em;
	font-weight: 750;
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.cfx-ev-drawer__meta {
	display: grid;
	gap: 0.45rem;
}

.cfx-ev-drawer__row {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.95em;
	color: var(--cfx-muted);
	line-height: 1.4;
}

.cfx-ev-drawer__icon {
	flex: 0 0 1.35rem;
	width: 1.35rem;
	height: 1.35rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: var(--cfx-canvas);
	color: var(--cfx-accent);
	font-size: 0.75em;
	font-weight: 700;
}

.cfx-ev-drawer__excerpt {
	margin: 0;
	color: var(--cfx-ink-soft);
	font-size: 0.95em;
	line-height: 1.55;
}

.cfx-ev-drawer__actions {
	display: grid;
	gap: 0.55rem;
	margin-top: 0.25rem;
}

.cfx-ev-drawer__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1rem;
	border-radius: 12px;
	font-weight: 700;
	text-decoration: none !important;
}

.cfx-ev-drawer__cta--primary {
	background: var(--cfx-accent);
	color: #fff !important;
	box-shadow: 0 8px 20px color-mix(in srgb, var(--cfx-accent) 35%, transparent);
}

.cfx-ev-drawer__cta--primary:hover {
	background: var(--cfx-accent-deep);
	transform: translateY(-1px);
}

@media (max-width: 980px) {
	.cfx-ev-app__shell-body,
	.cfx-ev-app--sidebar-left .cfx-ev-app__shell-body {
		grid-template-columns: 1fr;
	}
	.cfx-ev-aside,
	.cfx-ev-app--sidebar-top .cfx-ev-aside,
	.cfx-ev-app--sidebar-bottom .cfx-ev-aside {
		position: static;
		grid-template-columns: 1fr;
	}
}

/* Filters */
.cfx-ev-app__facets {
	display: grid;
	gap: 1rem;
	margin-bottom: 1.15rem;
	padding: 1.15rem 1.25rem 1.25rem;
	border: 1px solid var(--cfx-line);
	border-radius: 20px;
	background: var(--cfx-surface);
	box-shadow: var(--cfx-shadow);
}

.cfx-ev-app__facets .facetwp-selections {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 0.15rem;
}

.cfx-ev-app__facets .facetwp-selection-value {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--cfx-accent) 12%, var(--cfx-canvas));
	color: var(--cfx-ink);
	font-size: 0.85em;
	font-weight: 650;
}

/* Category filters as checkbox buttons */
.cfx-ev-app__facets .facetwp-facet[data-name="cfx_event_categories"],
.cfx-ev-app__facets .facetwp-type-checkboxes {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.cfx-ev-app__facets .facetwp-facet[data-name="cfx_event_categories"] .facetwp-checkbox,
.cfx-ev-app__facets .facetwp-type-checkboxes .facetwp-checkbox {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0.55rem 0.95rem;
	border: 1px solid var(--cfx-line);
	border-radius: 999px;
	background: var(--cfx-canvas) !important;
	background-image: none !important;
	color: var(--cfx-ink);
	font-size: 0.95em;
	font-weight: 650;
	line-height: 1.2;
	box-shadow: none;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.cfx-ev-app__facets .facetwp-checkbox:hover {
	border-color: color-mix(in srgb, var(--cfx-accent) 45%, var(--cfx-line));
	transform: translateY(-1px);
}

.cfx-ev-app__facets .facetwp-checkbox.checked {
	background: var(--cfx-accent) !important;
	background-image: none !important;
	border-color: var(--cfx-accent);
	color: #fff;
	box-shadow: 0 6px 16px color-mix(in srgb, var(--cfx-accent) 35%, transparent);
}

.cfx-ev-app__facets .facetwp-checkbox.checked .facetwp-counter {
	opacity: 0.85;
	color: inherit;
}

.cfx-ev-app__facets .facetwp-checkbox.disabled {
	opacity: 0.45;
}

.cfx-ev-app__facets .facetwp-counter {
	display: none !important;
}

.cfx-ev-app__facets .facetwp-search-wrap,
.cfx-ev-app__facets .facetwp-search {
	width: 100%;
}

.cfx-ev-app__facets .facetwp-search {
	padding: 0.8rem 1.1rem;
	border: 1px solid var(--cfx-line);
	border-radius: 0;
	background: var(--cfx-canvas);
	color: var(--cfx-ink);
	font: inherit;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.cfx-ev-app__facets .facetwp-search:focus {
	outline: none;
	border-color: color-mix(in srgb, var(--cfx-accent) 55%, var(--cfx-line));
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--cfx-accent) 22%, transparent);
}

.cfx-ev-app__facets-label {
	display: block;
	margin-bottom: 0.55rem;
	font-size: 0.78em;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--cfx-muted);
}

.cfx-ev-app__facets-search { margin-bottom: 0.35rem; }

.cfx-ev-app__facets-reset {
	display: flex;
	align-items: center;
	min-height: 0;
}

.cfx-ev-app__facets-reset .facetwp-facet {
	margin: 0;
}

.cfx-ev-app__facets-reset .facetwp-reset,
.cfx-ev-app__facets .facetwp-reset {
	appearance: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0.5rem 0.95rem;
	border: 1px solid var(--cfx-line);
	border-radius: 999px;
	background: transparent;
	color: var(--cfx-muted);
	font: inherit;
	font-size: 0.85em;
	font-weight: 650;
	text-decoration: none !important;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cfx-ev-app__facets-reset .facetwp-reset:hover,
.cfx-ev-app__facets .facetwp-reset:hover {
	border-color: var(--cfx-accent);
	color: var(--cfx-accent-deep);
	background: color-mix(in srgb, var(--cfx-accent) 10%, transparent);
}

.cfx-ev-app__facets-reset .facetwp-hidden,
.cfx-ev-app__facets .facetwp-facet[data-name="cfx_event_reset"].facetwp-hidden {
	display: none !important;
}

.cfx-ev-notice {
	padding: 1rem 1.15rem;
	border-radius: var(--cfx-radius);
	border: 1px solid #fde68a;
	background: #fffbeb;
	color: #92400e;
	font-size: 1em;
}

/* View switcher */
.cfx-ev-app__views {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0 0 1.75rem;
	padding: 0.35rem;
	border: 1px solid var(--cfx-line);
	border-radius: 999px;
	background: var(--cfx-surface);
	box-shadow: 0 2px 8px rgba(12, 22, 40, 0.04);
}

.cfx-ev-app__view-btn {
	cursor: pointer;
	padding: 0.7rem 1.35rem;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--cfx-muted);
	font: inherit;
	font-size: 1em;
	font-weight: 650;
	letter-spacing: 0.01em;
}

.cfx-ev-app__view-btn:hover { color: var(--cfx-ink); background: var(--cfx-line-soft); }
.cfx-ev-app__view-btn.is-active {
	background: var(--cfx-accent);
	color: #fff;
	box-shadow: 0 6px 16px color-mix(in srgb, var(--cfx-accent) 35%, transparent);
}

.cfx-ev-app__panel[hidden] { display: none !important; }
.cfx-ev-calendar.is-loading { opacity: 0.5; pointer-events: none; transition: opacity 0.2s ease; }

.cfx-ev-empty-until-filter,
.cfx-ev-empty {
	margin: 0;
	padding: 2.75rem 1.5rem;
	text-align: center;
	font-size: 1.05em;
	font-weight: 600;
	color: var(--cfx-muted);
	border: 1px dashed var(--cfx-line);
	border-radius: var(--cfx-radius);
	background: var(--cfx-canvas);
}

.cfx-ev-empty-until-filter--shell {
	width: 100%;
	max-width: 22rem;
	margin: 0 auto;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: clamp(1.35rem, 2.4vw, 1.85rem);
	font-weight: 650;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--cfx-ink);
}

.cfx-ev-app__gate-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	text-align: center;
	max-width: 26rem;
	margin: 0 auto;
}

.cfx-ev-app__gate-icon,
.cfx-ev-empty-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: color-mix(in srgb, #0099F7 12%, #fff);
	color: #0099F7;
	box-shadow: 0 10px 28px rgba(0, 153, 247, 0.12);
}

.cfx-ev-app__gate-icon svg,
.cfx-ev-empty-icon svg {
	width: 1.85rem;
	height: 1.85rem;
	display: block;
}

.cfx-ev-no-results {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	margin: 0;
	padding: 2.75rem 1.75rem;
	text-align: center;
	border: 1px dashed var(--cfx-line);
	border-radius: var(--cfx-radius);
	background: var(--cfx-canvas);
}

.cfx-ev-no-results__title {
	margin: 0;
	font-size: 1.15em;
	font-weight: 700;
	color: var(--cfx-ink);
}

.cfx-ev-no-results__hint {
	margin: 0 auto;
	max-width: 28rem;
	font-size: 0.98em;
	font-weight: 500;
	line-height: 1.45;
	color: var(--cfx-muted);
}

/* ========== LIST ========== */
.cfx-ev-list {
	display: grid;
	gap: 1.15rem;
}

.cfx-ev-card {
	display: grid;
	grid-template-columns: 6.5rem 1fr auto;
	gap: 1.35rem;
	align-items: stretch;
	padding: 1.25rem 1.35rem 1.25rem 1.2rem;
	border: 1px solid var(--cfx-line);
	border-radius: var(--cfx-radius);
	background: var(--cfx-surface);
	box-shadow: var(--cfx-shadow);
	overflow: hidden;
	position: relative;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cfx-ev-card.has-image {
	grid-template-columns: 9.5rem 6.5rem 1fr auto;
	padding-left: 0;
	padding-top: 0;
	padding-bottom: 0;
}

.cfx-ev-card__media {
	display: block;
	min-height: 100%;
	overflow: hidden;
	background: var(--cfx-canvas);
}

.cfx-ev-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 9rem;
	transition: transform 0.35s ease;
}

.cfx-ev-card:hover .cfx-ev-card__media img { transform: scale(1.04); }

.cfx-ev-card.has-image .cfx-ev-card__date,
.cfx-ev-card.has-image .cfx-ev-card__body,
.cfx-ev-card.has-image .cfx-ev-card__cta {
	margin-top: 1.15rem;
	margin-bottom: 1.15rem;
}
.cfx-ev-card.has-image .cfx-ev-card__cta { margin-right: 1.15rem; }
.cfx-ev-card.has-image .cfx-ev-card__body { padding-right: 0.25rem; }

.cfx-ev-card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: transparent;
	transition: background 0.2s ease;
}

.cfx-ev-card:hover {
	transform: translateY(-2px);
	border-color: #cbd5e1;
	box-shadow: var(--cfx-shadow-lg);
}

.cfx-ev-card:hover::before { background: var(--cfx-accent); }
.cfx-ev-card.is-featured { border-color: rgba(15, 118, 110, 0.35); }
.cfx-ev-card.is-featured::before { background: var(--cfx-accent); }
.cfx-ev-card.is-canceled { opacity: 0.62; }
.cfx-ev-card.is-canceled .cfx-ev-card__title { text-decoration: line-through; }

.cfx-ev-card__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 6.5rem;
	border-radius: 10px;
	background: linear-gradient(160deg, #0c1628 0%, #1e3a5f 100%);
	color: #fff;
	text-align: center;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cfx-ev-card__weekday {
	font-size: 0.75em;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	opacity: 0.75;
	margin-bottom: 0.2rem;
}

.cfx-ev-card__month {
	font-size: 0.85em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #5eead4;
}

.cfx-ev-card__day {
	font-size: 2.15em;
	font-weight: 750;
	line-height: 1;
	margin-top: 0.15rem;
}

.cfx-ev-card__body { min-width: 0; display: grid; align-content: center; gap: 0.45rem; }

.cfx-ev-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 0.1rem;
}

.cfx-ev-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.6rem;
	border-radius: 5px;
	font-size: 0.78em;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: var(--cfx-line-soft);
	color: var(--cfx-muted);
}

.cfx-ev-badge--featured { background: var(--cfx-accent-soft); color: var(--cfx-accent-deep); }
.cfx-ev-badge--canceled { background: #fee2e2; color: var(--cfx-danger); }
.cfx-ev-badge--postponed { background: #ffedd5; color: var(--cfx-warn); }

.cfx-ev-card__title {
	margin: 0;
	font-size: 1.35em;
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.3;
}

.cfx-ev-card__title a {
	color: inherit;
	text-decoration: none;
}

.cfx-ev-card__title a:hover { color: var(--cfx-accent); }

.cfx-ev-card__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 1.15rem;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--cfx-muted);
	font-size: 1em;
}

.cfx-ev-card__facts li {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.cfx-ev-card__facts svg {
	width: 1.05em;
	height: 1.05em;
	flex: 0 0 auto;
	opacity: 0.7;
}

.cfx-ev-card__cost { color: var(--cfx-ink-soft); font-weight: 700; }
.cfx-ev-card__excerpt {
	margin: 0.2rem 0 0;
	color: #475569;
	font-size: 1em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cfx-ev-card__cta {
	display: inline-flex;
	align-items: center;
	align-self: center;
	gap: 0.4rem;
	padding: 0.7rem 1.1rem;
	border-radius: 10px;
	background: var(--cfx-ink);
	color: #fff !important;
	text-decoration: none;
	font-size: 0.95em;
	font-weight: 700;
	white-space: nowrap;
}

.cfx-ev-card__cta:hover {
	background: var(--cfx-accent);
	transform: translateY(-1px);
}

/* ========== CALENDAR SHELL ========== */
.cfx-ev-cal--pro {
	border: 1px solid var(--cfx-line);
	border-radius: 22px;
	background: var(--cfx-surface);
	box-shadow: var(--cfx-shadow);
	overflow: hidden;
}

.cfx-ev-cal__toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
	justify-content: space-between;
	padding: 1.15rem 1.35rem;
	background: var(--cfx-surface);
	color: var(--cfx-ink);
	border-bottom: 1px solid var(--cfx-line);
}

.cfx-ev-cal__toolbar-left {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	min-width: 0;
}

.cfx-ev-cal__toolbar-nav { display: inline-flex; gap: 0.4rem; }

.cfx-ev-cal__badge {
	display: grid;
	place-items: center;
	width: 3.55rem;
	height: 3.55rem;
	border-radius: 14px;
	background: color-mix(in srgb, var(--cfx-accent) 12%, var(--cfx-canvas));
	border: 1px solid color-mix(in srgb, var(--cfx-accent) 22%, var(--cfx-line));
	color: var(--cfx-accent-deep);
	line-height: 1;
}

.cfx-ev-cal__badge-mon {
	font-size: 0.65rem;
	font-weight: 750;
	letter-spacing: 0.06em;
	opacity: 0.85;
}

.cfx-ev-cal__badge-day {
	font-size: 1.3rem;
	font-weight: 750;
}

.cfx-ev-cal__title {
	margin: 0;
	font-size: 1.45em;
	font-weight: 750;
	letter-spacing: -0.03em;
	text-align: left;
	color: var(--cfx-ink);
}

.cfx-ev-cal__sub {
	margin: 0.2rem 0 0;
	font-size: 0.9em;
	color: var(--cfx-muted);
	opacity: 1;
}

.cfx-ev-cal__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.72em;
	font-weight: 650;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #c4a35a;
}

.cfx-ev-cal__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.65rem;
	height: 2.65rem;
	border: 1px solid var(--cfx-line);
	border-radius: 12px;
	text-decoration: none;
	color: var(--cfx-ink);
	background: var(--cfx-canvas);
	font-size: 1.15em;
	line-height: 1;
}

.cfx-ev-cal__nav:hover {
	background: color-mix(in srgb, var(--cfx-accent) 12%, var(--cfx-canvas));
	border-color: color-mix(in srgb, var(--cfx-accent) 35%, var(--cfx-line));
	color: var(--cfx-accent-deep);
}

.cfx-ev-cal__nav-icon {
	display: block;
	width: 0.9em;
	height: 0.9em;
	flex-shrink: 0;
}

.cfx-ev-cal__switch { display: none; }

/* Month grid â€” airy SaaS cells */
.cfx-ev-cal__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 0.45rem;
	padding: 0.85rem;
	background: var(--cfx-canvas);
}

.cfx-ev-cal__dow {
	background: transparent;
	color: var(--cfx-muted);
	padding: 0.45rem 0.35rem 0.15rem;
	text-align: center;
	font-size: 0.78em;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.cfx-ev-cal__cell {
	background: var(--cfx-cell);
	min-height: 9.75rem;
	padding: 0.65rem;
	position: relative;
	border: 1px solid var(--cfx-line);
	border-radius: 14px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
	transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.cfx-ev-cal__cell:hover {
	background: var(--cfx-cell-hover);
	border-color: color-mix(in srgb, var(--cfx-accent) 25%, var(--cfx-line));
	box-shadow: var(--cfx-shadow);
}

.cfx-ev-cal__cell--empty {
	background: transparent;
	border-color: transparent;
	box-shadow: none;
}

.cfx-ev-cal__cell.is-today {
	background: var(--cfx-cell);
	border-color: color-mix(in srgb, var(--cfx-accent) 45%, var(--cfx-line));
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--cfx-accent) 30%, transparent), var(--cfx-shadow);
}

.cfx-ev-cal__daynum {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.9rem;
	height: 1.9rem;
	margin-bottom: 0.5rem;
	padding: 0 0.35rem;
	border-radius: 999px;
	font-size: 0.95em;
	font-weight: 700;
	color: var(--cfx-muted);
}

.cfx-ev-cal__cell.is-today .cfx-ev-cal__daynum {
	background: var(--cfx-ink);
	color: #fff;
}

.cfx-ev-cal__cell.has-events .cfx-ev-cal__daynum { color: var(--cfx-ink); }
.cfx-ev-cal__cell.is-today.has-events .cfx-ev-cal__daynum { color: #fff; }

.cfx-ev-cal__events { display: grid; gap: 0.28rem; }

.cfx-ev-cal__event {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.35rem;
	padding: 0.4rem 0.55rem;
	border-radius: 10px;
	border: 0;
	border-left: 3px solid var(--cfx-event-color, var(--cfx-accent));
	background: color-mix(in srgb, var(--cfx-event-color, var(--cfx-accent)) 16%, var(--cfx-mix-base));
	color: var(--cfx-ink);
	font-size: 0.8em;
	line-height: 1.25;
	text-decoration: none;
	overflow: hidden;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cfx-ev-cal__event-title {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 650;
}

.cfx-ev-cal__event-dot {
	flex: 0 0 0.45rem;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 999px;
	background: var(--cfx-event-color, var(--cfx-accent));
}

.cfx-ev-cal__event-time {
	flex: 0 0 auto;
	opacity: 0.75;
	font-variant-numeric: tabular-nums;
	font-size: 0.92em;
	margin: 0;
	white-space: nowrap;
}

.cfx-ev-cal__more {
	display: inline-flex;
	align-items: center;
	margin-top: 0.15rem;
	padding: 0.2rem 0.45rem;
	border: 0;
	border-radius: 999px;
	background: color-mix(in srgb, var(--cfx-accent) 14%, var(--cfx-mix-base));
	color: var(--cfx-accent-deep);
	font: inherit;
	font-size: 0.72em;
	font-weight: 750;
	cursor: pointer;
}

.cfx-ev-cal__event--extra[hidden] {
	display: none !important;
}

.cfx-ev-cal__cell.is-expanded {
	z-index: 4;
	overflow: visible;
}

.cfx-ev-cal__more:hover {
	background: color-mix(in srgb, var(--cfx-accent) 22%, var(--cfx-mix-base));
}

.cfx-ev-cal__event:hover,
.cfx-ev-cal__event:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
	outline: none;
	z-index: 2;
	position: relative;
}

.cfx-ev-cal__event.is-featured {
	background: color-mix(in srgb, var(--cfx-event-color, var(--cfx-accent)) 28%, var(--cfx-mix-base));
	color: var(--cfx-ink);
	font-weight: 750;
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--cfx-event-color, var(--cfx-accent)) 35%, transparent);
}

.cfx-ev-cal__event.is-sticky { font-weight: 750; }
.cfx-ev-cal__event.is-canceled { opacity: 0.55; text-decoration: line-through; }
.cfx-ev-cal__event.is-featured .cfx-ev-cal__event-time { opacity: 0.9; }

/* Week */
.cfx-ev-cal__week {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 0.45rem;
	padding: 0.85rem;
	background: var(--cfx-canvas);
}

.cfx-ev-cal__week-day {
	background: var(--cfx-cell);
	min-height: 18rem;
	padding: 0.9rem 0.75rem;
	border: 1px solid var(--cfx-line);
	border-radius: 14px;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
	transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.cfx-ev-cal__week-day:hover {
	background: var(--cfx-cell-hover);
	border-color: color-mix(in srgb, var(--cfx-accent) 25%, var(--cfx-line));
	box-shadow: var(--cfx-shadow);
}

.cfx-ev-cal__week-day.is-today {
	background: var(--cfx-cell);
	border-color: color-mix(in srgb, var(--cfx-accent) 45%, var(--cfx-line));
	box-shadow: 0 0 0 1px color-mix(in srgb, var(--cfx-accent) 30%, transparent), var(--cfx-shadow);
}

.cfx-ev-cal__week-label {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.4rem;
	margin-bottom: 1rem;
	padding-bottom: 0.65rem;
	border-bottom: 1px solid var(--cfx-line);
}

.cfx-ev-cal__week-dow {
	font-weight: 750;
	text-transform: uppercase;
	font-size: 0.88em;
	letter-spacing: 0.06em;
	color: var(--cfx-ink);
}

.cfx-ev-cal__week-date {
	color: var(--cfx-muted);
	font-size: 0.95em;
	font-variant-numeric: tabular-nums;
}

.cfx-ev-cal__week-day.is-today .cfx-ev-cal__week-dow { color: var(--cfx-accent-deep); }

.cfx-ev-cal__week-event {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.55rem;
	margin-bottom: 0.65rem;
	padding: 0.65rem;
	border: 1px solid var(--cfx-line);
	border-left: 4px solid var(--cfx-event-color, var(--cfx-accent));
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	background: color-mix(in srgb, var(--cfx-event-color, var(--cfx-accent)) 10%, var(--cfx-mix-base));
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
	align-items: start;
}

.cfx-ev-cal__week-thumb {
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
	flex: 0 0 auto;
}

.cfx-ev-cal__week-copy { display: grid; gap: 0.2rem; min-width: 0; }

.cfx-ev-cal__week-event:hover,
.cfx-ev-cal__week-event:focus-visible {
	transform: translateY(-2px);
	border-color: rgba(15, 118, 110, 0.35);
	box-shadow: 0 8px 20px rgba(12, 22, 40, 0.1);
	outline: none;
}

.cfx-ev-cal__week-event.is-featured {
	border-left-color: var(--cfx-ink);
	background: color-mix(in srgb, var(--cfx-accent) 16%, var(--cfx-mix-base));
}

.cfx-ev-cal__week-event.is-canceled { opacity: 0.55; }
.cfx-ev-cal__week-time {
	font-size: 0.88em;
	color: var(--cfx-accent);
	font-weight: 750;
	font-variant-numeric: tabular-nums;
}

.cfx-ev-cal__week-title { font-size: 1.05em; font-weight: 700; line-height: 1.3; }
.cfx-ev-cal__week-venue,
.cfx-ev-cal__week-cost { font-size: 0.92em; color: var(--cfx-muted); }

/* Hover popover (Eventime-style card) */
.cfx-ev-tip {
	position: fixed;
	z-index: 100000;
	width: min(24rem, calc(100vw - 1.25rem));
	padding: 0;
	border-radius: 18px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	background: #fff;
	color: #0f172a;
	font-family: inherit;
	font-size: 1.125rem;
	box-shadow:
		0 4px 6px rgba(15, 23, 42, 0.04),
		0 22px 48px rgba(15, 23, 42, 0.16);
	pointer-events: none;
	opacity: 0;
	transform: translateY(8px) scale(0.96);
	transition: opacity 0.18s ease, transform 0.18s ease;
	overflow: hidden;
}

.cfx-ev-tip.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

/* Invisible bridge so mouse can travel from event â†’ tip without closing */
.cfx-ev-tip::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 18px;
	top: -18px;
}

.cfx-ev-tip[data-placement="below"]::before {
	top: auto;
	bottom: -18px;
}

.cfx-ev-tip__media {
	display: block;
	width: 100%;
	height: 8.5rem;
	background-size: cover;
	background-position: center;
	background-color: #e2e8f0;
	text-decoration: none;
}

.cfx-ev-tip__body {
	display: grid;
	gap: 0.75rem;
	padding: 1.15rem 1.25rem 1.25rem;
}

.cfx-ev-tip__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	min-height: 0;
}

.cfx-ev-tip__badges:empty { display: none; }

.cfx-ev-tip__title {
	margin: 0;
	font-size: 1.35em;
	font-weight: 750;
	letter-spacing: -0.02em;
	line-height: 1.3;
	color: #0f172a;
}

.cfx-ev-tip__meta {
	display: grid;
	gap: 0.5rem;
}

.cfx-ev-tip__row {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin: 0;
	font-size: 1em;
	color: #475569;
	line-height: 1.45;
}

.cfx-ev-tip__icon {
	flex: 0 0 1.35rem;
	width: 1.35rem;
	height: 1.35rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: color-mix(in srgb, var(--cfx-accent, #2563eb) 12%, #f1f5f9);
	color: var(--cfx-accent, #2563eb);
	font-size: 0.75em;
	font-weight: 700;
}

.cfx-ev-tip__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.25rem;
	padding: 0.8rem 1.1rem;
	border-radius: 12px;
	background: var(--cfx-accent, #2563eb);
	color: #fff !important;
	font-size: 1em;
	font-weight: 700;
	text-decoration: none !important;
	transition: background 0.15s ease, transform 0.15s ease;
}

.cfx-ev-tip__cta:hover {
	background: var(--cfx-accent-deep, #1d4ed8);
	transform: translateY(-1px);
	color: #fff !important;
}

.cfx-ev-tip__status {
	display: inline-block;
	padding: 0.28rem 0.65rem;
	border-radius: 999px;
	font-size: 0.78em;
	font-weight: 750;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.cfx-ev-tip__status--canceled { background: #fee2e2; color: #991b1b; }
.cfx-ev-tip__status--postponed { background: #ffedd5; color: #9a3412; }
.cfx-ev-tip__status--featured { background: #ccfbf1; color: #115e59; }

.cfx-ev-tip__cat {
	display: inline-block;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	background: color-mix(in srgb, var(--cfx-accent, #6c5dd3) 16%, #fff);
	color: var(--cfx-accent-deep, #5b4fc7);
	font-size: 0.72em;
	font-weight: 750;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.cfx-ev-tip__excerpt {
	margin: 0;
	color: #475569;
	font-size: 0.92em;
	line-height: 1.5;
}

.cfx-ev-cal__title-block {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.cfx-ev-cal__count-pill {
	font-family: "JetBrains Mono", ui-monospace, monospace;
	font-size: 0.72em;
	font-weight: 600;
	padding: 0.2rem 0.6rem;
	border-radius: 999px;
	color: var(--cfx-accent);
	background: color-mix(in srgb, var(--cfx-accent) 12%, transparent);
	border: 1px solid color-mix(in srgb, var(--cfx-accent) 30%, transparent);
}

.cfx-ev-cal__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 0.5rem;
}

.cfx-ev-cal__legend-item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.78em;
	color: var(--cfx-muted);
}

.cfx-ev-cal__legend-item i {
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 999px;
	display: inline-block;
}

.cfx-ev-cal__nav--today {
	width: auto;
	padding: 0 0.75rem;
	border-radius: 6px;
	font-size: 0.8em;
	font-weight: 650;
}

/* Arena tip — interactive card */
.cfx-ev-tip--arena {
	width: min(280px, calc(100vw - 1.5rem));
	padding: 0;
	font-size: 0.95rem;
	border-radius: 14px;
	pointer-events: none;
	transform: translateY(4px) scale(0.98);
}

.cfx-ev-tip--arena.is-visible {
	pointer-events: auto;
	transform: translateY(0) scale(1);
}


.cfx-ev-tip__media--fallback {
	background: linear-gradient(145deg, color-mix(in srgb, var(--cfx-event-color, var(--cfx-accent)) 55%, #111), color-mix(in srgb, var(--cfx-event-color, var(--cfx-accent)) 25%, #fff));
}

.cfx-ev-tip__title {
	display: block;
	text-decoration: none !important;
	color: inherit !important;
}
.cfx-ev-tip__title:hover {
	text-decoration: underline !important;
}


/* Mobile peek panel (below calendar) */
.cfx-ev-peek {
	margin: 0.85rem 0 0;
	border: 1px solid var(--cfx-line, #e2e8f0);
	border-radius: 14px;
	background: var(--cfx-surface, #fff);
	color: var(--cfx-ink, #1d2a29);
	overflow: hidden;
	box-shadow: var(--cfx-shadow, 0 12px 28px rgba(15, 23, 42, 0.08));
}
.cfx-ev-peek[hidden] { display: none !important; }
.cfx-ev-peek__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.65rem 0.85rem;
	border-bottom: 1px solid var(--cfx-line, #e2e8f0);
}
.cfx-ev-peek__heading {
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--cfx-muted, #64748b);
}
.cfx-ev-peek__close {
	appearance: none;
	border: 0;
	background: transparent;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
	color: var(--cfx-muted, #64748b);
	padding: 0.15rem 0.35rem;
	flex: 0 0 auto;
}
.cfx-ev-peek__media {
	display: block;
	aspect-ratio: 16 / 9;
	background-size: cover;
	background-position: center;
	background-color: color-mix(in srgb, var(--cfx-event-color, var(--cfx-accent)) 35%, #cbd5e1);
	text-decoration: none;
}
.cfx-ev-peek__media:not(.has-image) {
	min-height: 7rem;
	background-image: linear-gradient(145deg, color-mix(in srgb, var(--cfx-event-color, var(--cfx-accent)) 60%, #111), color-mix(in srgb, var(--cfx-event-color, var(--cfx-accent)) 20%, #fff));
}
.cfx-ev-peek__body {
	display: grid;
	gap: 0.55rem;
	padding: 1rem 1.05rem 1.15rem;
}
.cfx-ev-peek__cat {
	display: inline-flex;
	width: fit-content;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	background: color-mix(in srgb, var(--cfx-accent) 16%, transparent);
	color: var(--cfx-accent-deep, var(--cfx-accent));
}
.cfx-ev-peek__title {
	font-size: 1.2rem;
	font-weight: 750;
	line-height: 1.25;
	color: inherit !important;
	text-decoration: none !important;
}
.cfx-ev-peek__title:hover { text-decoration: underline !important; }
.cfx-ev-peek__meta { display: grid; gap: 0.35rem; }
.cfx-ev-peek__row {
	display: flex;
	gap: 0.45rem;
	align-items: flex-start;
	font-size: 0.92rem;
	color: var(--cfx-muted, #64748b);
}
.cfx-ev-peek__excerpt {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--cfx-muted, #64748b);
}
.cfx-ev-peek__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.25rem;
	padding: 0.7rem 1rem;
	border-radius: 10px;
	background: var(--cfx-accent, #0F3B3D);
	color: #fff !important;
	font-weight: 700;
	text-decoration: none !important;
}

/* Event orb (hidden on desktop, circles on mobile) */
.cfx-ev-cal__event-orb,
.cfx-ev-timed__orb {
	display: none;
}

@media (max-width: 720px) {
	.cfx-ev-cal__events {
		display: flex;
		flex-wrap: wrap;
		gap: 0.35rem;
		align-items: center;
	}

	.cfx-ev-cal__event {
		width: 1.35rem;
		height: 1.35rem;
		min-width: 1.35rem;
		padding: 0;
		border: 2px solid color-mix(in srgb, var(--cfx-event-color, var(--cfx-accent)) 70%, #fff);
		border-radius: 999px;
		background: var(--cfx-event-color, var(--cfx-accent));
		justify-content: center;
		overflow: visible;
		box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
	}

	.cfx-ev-cal__event.has-image {
		background-image: var(--cfx-event-image);
		background-size: cover;
		background-position: center;
	}

	.cfx-ev-cal__event-orb {
		display: block;
		width: 100%;
		height: 100%;
		border-radius: 999px;
	}

	.cfx-ev-cal__event-dot,
	.cfx-ev-cal__event-title,
	.cfx-ev-cal__event-time {
		display: none !important;
	}

	.cfx-ev-cal__event.is-peek-active,
	.cfx-ev-timed__chip.is-peek-active,
	.cfx-ev-timed__evt.is-peek-active {
		outline: 2px solid var(--cfx-accent, #0F3B3D);
		outline-offset: 2px;
	}

	.cfx-ev-cal__more {
		font-size: 0.72em;
		padding: 0.15rem 0.35rem;
	}

	.cfx-ev-timed__chip,
	.cfx-ev-timed__evt {
		width: 1.25rem !important;
		min-width: 1.25rem;
		height: 1.25rem !important;
		min-height: 1.25rem !important;
		padding: 0 !important;
		border-radius: 999px !important;
		left: 50%;
		transform: translateX(-50%);
		overflow: hidden;
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		background: var(--cfx-event-color, var(--cfx-accent)) !important;
		border: 2px solid color-mix(in srgb, #fff 35%, var(--cfx-event-color, var(--cfx-accent)));
	}

	.cfx-ev-timed__chip {
		position: relative;
		transform: none;
		left: auto;
		margin: 0.15rem;
	}

	.cfx-ev-timed__chip[style*="--cfx-event-image"],
	.cfx-ev-timed__evt[style*="--cfx-event-image"] {
		background-image: var(--cfx-event-image) !important;
		background-size: cover !important;
		background-position: center !important;
	}

	.cfx-ev-timed__orb {
		display: block;
		width: 100%;
		height: 100%;
	}

	.cfx-ev-timed__chip-label,
	.cfx-ev-timed__evt-title,
	.cfx-ev-timed__evt-meta,
	.cfx-ev-timed__evt-img {
		display: none !important;
	}

	.cfx-ev-timed__allday-col {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 0.2rem;
	}
}

@media (min-width: 721px) {
	.cfx-ev-peek { display: none !important; }
}

/* Timed week / day grid (gallery) */
.cfx-ev-app__views--in-cal {
	display: flex;
	gap: 6px;
	margin: 0;
	padding: 14px 40px 22px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.cfx-ev-timed__pad {
	padding: 20px 32px 28px;
}

.cfx-ev-timed__head {
	display: grid;
	grid-template-columns: 56px repeat(7, 1fr);
}

.cfx-ev-timed__gutter-spacer { min-height: 1px; }

.cfx-ev-timed__day-head {
	padding: 10px 4px;
	text-align: center;
}

.cfx-ev-timed__wd {
	display: block;
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0.65;
}

.cfx-ev-timed__dn {
	display: block;
	font-size: 18px;
	font-weight: 700;
	margin-top: 2px;
}

.cfx-ev-timed__allday {
	display: grid;
	grid-template-columns: 56px repeat(7, 1fr);
	gap: 4px;
	padding: 6px 0;
	min-height: 34px;
}

.cfx-ev-timed__allday--single {
	grid-template-columns: 56px 1fr;
}

.cfx-ev-timed__allday-label {
	font-size: 9.5px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding-top: 8px;
	text-align: right;
	padding-right: 8px;
	opacity: 0.6;
}

.cfx-ev-timed__allday-col {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 2px 3px;
}

.cfx-ev-timed__chip {
	font-size: 10px;
	font-weight: 600;
	padding: 3px 7px;
	border-radius: 5px;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-decoration: none !important;
	color: #fff;
	background: var(--cfx-event-color, var(--cfx-accent));
}

.cfx-ev-timed__allday-empty {
	font-size: 10.5px;
	opacity: 0.4;
	padding: 6px 0 0 6px;
}

.cfx-ev-timed__body {
	display: flex;
}

.cfx-ev-timed__hours {
	width: 56px;
	flex-shrink: 0;
}

.cfx-ev-timed__hour {
	height: 52px;
	font-size: 10px;
	text-align: right;
	padding-right: 8px;
	opacity: 0.55;
	position: relative;
	top: -6px;
}

.cfx-ev-timed__body--single .cfx-ev-timed__hour {
	height: 64px;
}

.cfx-ev-timed__cols {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	position: relative;
	color: rgba(128, 128, 128, 0.2);
	background-image: repeating-linear-gradient(
		to bottom,
		currentColor 0,
		currentColor 1px,
		transparent 1px,
		transparent 52px
	);
}

.cfx-ev-timed__cols--single {
	grid-template-columns: 1fr;
	background-image: repeating-linear-gradient(
		to bottom,
		currentColor 0,
		currentColor 1px,
		transparent 1px,
		transparent 64px
	);
}

.cfx-ev-timed__col {
	position: relative;
	border-left: 1px solid rgba(128, 128, 128, 0.15);
}

.cfx-ev-timed__evt {
	position: absolute;
	left: 3px;
	right: 3px;
	border-radius: 6px;
	padding: 4px 6px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	background: var(--cfx-event-color, var(--cfx-accent));
	color: #fff;
	text-decoration: none !important;
	z-index: 1;
}

.cfx-ev-timed__evt-title {
	font-size: 10.5px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}

.cfx-ev-timed__evt-meta {
	font-size: 9px;
	opacity: 0.85;
	margin-top: 2px;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cfx-ev-timed__evt-img {
	width: 34px;
	height: 34px;
	border-radius: 7px;
	object-fit: cover;
	position: absolute;
	top: 6px;
	right: 6px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.cfx-ev-timed__day-title {
	font-size: 21px;
	font-weight: 700;
	padding: 8px 0 12px;
}

/* Gallery list rows */
.cfx-ev-list--gallery {
	max-height: 560px;
	overflow-y: auto;
	display: block;
}

.cfx-ev-list__date {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 16px 4px 8px;
	opacity: 0.6;
}

.cfx-ev-list__date:first-child { padding-top: 2px; }

.cfx-ev-list__row {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 10px 6px;
	border-radius: 10px;
	cursor: pointer;
	text-decoration: none !important;
	color: inherit;
	transition: background 0.15s;
}

.cfx-ev-list__thumb {
	width: 52px;
	height: 52px;
	border-radius: 9px;
	object-fit: cover;
	flex-shrink: 0;
	background: var(--cfx-line-soft);
}

.cfx-ev-list__thumb--empty {
	display: block;
	background: color-mix(in srgb, var(--cfx-event-color, var(--cfx-accent)) 25%, #e5e7eb);
}

.cfx-ev-list__body {
	flex: 1;
	min-width: 0;
}

.cfx-ev-list__title {
	display: block;
	font-size: 13.5px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cfx-ev-list__meta {
	display: block;
	font-size: 11.5px;
	margin-top: 2px;
	opacity: 0.7;
}

.cfx-ev-list__tag {
	font-size: 9.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 3px 9px;
	border-radius: 20px;
	flex-shrink: 0;
	background: var(--cfx-event-color, var(--cfx-accent));
	color: #fff;
}

.cfx-ev-list__bar {
	display: none;
	width: 4px;
	align-self: stretch;
	min-height: 44px;
	border-radius: 2px;
	background: var(--cfx-event-color, var(--cfx-accent));
	flex: 0 0 4px;
}

/* ========== #1 Arena (sportsplex blue) ========== */
.cfx-ev-app--design-arena {
	font-family: var(--cfx-font, "Barlow", system-ui, sans-serif);
	color: #091432;
}

.cfx-ev-app--design-arena .cfx-ev-app__shell {
	background: #fff;
	border: 1px solid #e3e9f3;
	border-radius: 26px;
	box-shadow: 0 30px 70px rgba(9, 20, 50, 0.12);
	overflow: hidden;
}

.cfx-ev-app--design-arena .cfx-ev-app__shell-body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 20rem;
	grid-template-rows: auto auto minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
}

.cfx-ev-app--design-arena.cfx-ev-app--sidebar-none .cfx-ev-app__shell-body {
	grid-template-columns: minmax(0, 1fr);
}

/* Promote chrome + stage into the shell grid so toolbar spans full card. */
.cfx-ev-app--design-arena .cfx-ev-app__main,
.cfx-ev-app--design-arena .cfx-ev-app__panels,
.cfx-ev-app--design-arena .cfx-ev-app__panel.is-active:not([hidden]),
.cfx-ev-app--design-arena .cfx-ev-calendar,
.cfx-ev-app--design-arena .cfx-ev-cal--pro {
	display: contents;
}

.cfx-ev-app--design-arena .cfx-ev-app__panel[hidden] {
	display: none !important;
}

.cfx-ev-app--design-arena .cfx-ev-cal__toolbar {
	grid-column: 1 / -1;
	grid-row: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.25rem;
	padding: 1.75rem 1.75rem 0.85rem;
	background: transparent;
	border-bottom: 0;
	color: #091432;
}

.cfx-ev-app--design-arena .cfx-ev-cal__toolbar-left {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem 1.25rem;
	min-width: 0;
	flex: 1 1 auto;
}

.cfx-ev-app--design-arena .cfx-ev-cal__legend {
	grid-column: 1 / -1;
	grid-row: 2;
}

.cfx-ev-app--design-arena .cfx-ev-cal__stage {
	grid-column: 1;
	grid-row: 3;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.cfx-ev-app--design-arena .cfx-ev-aside {
	grid-column: 2;
	grid-row: 3;
	align-self: stretch;
}

.cfx-ev-app--design-arena .cfx-ev-peek:not([hidden]) {
	grid-column: 1 / -1;
	grid-row: 4;
	margin: 0 1.75rem 1.5rem;
}

.cfx-ev-app--design-arena .cfx-ev-cal__toolbar-nav--spacer {
	width: 44px;
	height: 44px;
	visibility: hidden;
	pointer-events: none;
}

.cfx-ev-app--design-arena .cfx-ev-app__gate {
	min-height: clamp(220px, 28vw, 360px);
	padding: clamp(1.75rem, 3.5vw, 3rem) clamp(1.25rem, 3vw, 2.5rem);
}

.cfx-ev-app--design-arena .cfx-ev-app__gate-icon,
.cfx-ev-app--design-arena .cfx-ev-empty-icon {
	width: 4.25rem;
	height: 4.25rem;
	background: rgba(0, 153, 247, 0.1);
	box-shadow: 0 12px 32px rgba(0, 153, 247, 0.1);
}

.cfx-ev-app--design-arena .cfx-ev-app__gate-icon svg,
.cfx-ev-app--design-arena .cfx-ev-empty-icon svg {
	width: 2rem;
	height: 2rem;
}

.cfx-ev-app--design-arena .cfx-ev-empty-until-filter--shell {
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	font-weight: 600;
	line-height: 1.45;
	color: #5c6b85;
	max-width: 18rem;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(0.6rem, calc(12 * 100vw / 1920), 0.85rem) clamp(0.65rem, calc(14 * 100vw / 1920), 1rem);
	margin: 0 0 clamp(1.15rem, calc(24 * 100vw / 1920), 1.5rem);
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

/* Search — Figma @1920; fluid down to 1536 (0.8×) */
.cfx-ev-app--design-arena .cfx-ev-app__facets-search {
	position: relative;
	display: flex;
	box-sizing: border-box;
	width: 100%;
	max-width: clamp(336px, calc(420 * 100vw / 1920), 420px);
	flex: 0 1 clamp(336px, calc(420 * 100vw / 1920), 420px);
	align-self: stretch;
	align-items: flex-start;
	justify-content: center;
	height: fit-content;
	padding: clamp(12px, calc(15 * 100vw / 1920), 15px) clamp(16px, calc(20 * 100vw / 1920), 20px) clamp(12px, calc(15 * 100vw / 1920), 15px) clamp(38px, calc(48 * 100vw / 1920), 48px);
	border-radius: 30px;
	border: 1px solid #333;
	background: #fff;
	box-shadow: 0 8px 20px 0 rgba(9, 20, 50, 0.06);
	min-height: 0;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets-search .facetwp-icon {
	display: none !important;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets-search::before {
	content: "";
	position: absolute;
	left: clamp(14px, calc(18 * 100vw / 1920), 18px);
	top: 50%;
	width: clamp(17px, calc(21 * 100vw / 1920), 21px);
	height: clamp(17px, calc(21 * 100vw / 1920), 21px);
	transform: translateY(-50%);
	pointer-events: none;
	background: no-repeat center / contain;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cpath d='M9.625 16.625C13.491 16.625 16.625 13.491 16.625 9.625C16.625 5.75901 13.491 2.625 9.625 2.625C5.75901 2.625 2.625 5.75901 2.625 9.625C2.625 13.491 5.75901 16.625 9.625 16.625Z' stroke='%23222222' stroke-width='1.41667'/%3E%3Cpath d='M18.3719 18.3758L14.6094 14.6133' stroke='%23222222' stroke-width='1.41667'/%3E%3C/svg%3E");
}

.cfx-ev-app--design-arena .cfx-ev-app__facets-search .facetwp-facet,
.cfx-ev-app--design-arena .cfx-ev-app__facets-search .facetwp-search-wrap {
	width: 100%;
	margin: 0;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-search,
.cfx-ev-app--design-arena .cfx-ev-app__facets input[type="text"],
.cfx-ev-app--design-arena .cfx-ev-app__facets input[type="search"] {
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(14.4px, calc(18 * 100vw / 1920), 18px);
	font-weight: 400;
	line-height: normal;
	color: #081123;
	width: 100%;
	height: fit-content;
	padding: 0 !important;
	margin: 0 !important;
	min-height: 0;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-search::placeholder {
	color: #081123;
	opacity: 0.85;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets-cats {
	display: flex;
	flex: 1 1 28rem;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(0.4rem, calc(8 * 100vw / 1920), 0.55rem);
	position: relative;
}

.cfx-ev-app--design-arena .cfx-ev-app__cat-toggle {
	display: none;
}

.cfx-ev-app--design-arena .cfx-ev-app__cat-panel {
	display: contents;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-facet[data-name="cfx_event_categories"],
.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-type-checkboxes {
	display: contents;
}

/* Filter chips — Figma @1920 */
.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-checkbox,
.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-type-checkboxes .facetwp-checkbox,
.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-facet[data-name="cfx_event_categories"] .facetwp-checkbox {
	display: inline-flex !important;
	align-items: center;
	gap: clamp(0.4rem, calc(8 * 100vw / 1920), 0.55rem);
	margin: 0 !important;
	padding: clamp(0.5rem, calc(10 * 100vw / 1920), 0.65rem) clamp(0.85rem, calc(18 * 100vw / 1920), 1.1rem) !important;
	border-radius: 30px !important;
	border: 1px solid #091432 !important;
	background: rgba(8, 17, 35, 0.60) !important;
	background-image: none !important;
	color: #fff !important;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(14.4px, calc(18 * 100vw / 1920), 18px);
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	box-shadow: 0 4px 12px 0 rgba(9, 20, 50, 0.04);
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-checkbox:hover:not(.checked) {
	background: rgba(8, 17, 35, 0.78) !important;
	border-color: #091432 !important;
	transform: none;
	color: #fff !important;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-checkbox::before {
	content: "" !important;
	display: block !important;
	box-sizing: border-box !important;
	width: 10px !important;
	height: 10px !important;
	min-width: 10px !important;
	min-height: 10px !important;
	max-width: 10px !important;
	max-height: 10px !important;
	aspect-ratio: 1 / 1 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: var(--cfx-event-color, #0099F7) !important;
	background-image: none !important;
	box-shadow: none !important;
	flex: 0 0 10px !important;
	align-self: center;
	line-height: 0 !important;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-checkbox.checked,
.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-type-checkboxes .facetwp-checkbox.checked,
.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-facet[data-name="cfx_event_categories"] .facetwp-checkbox.checked {
	background: rgb(8 17 35 / 80%) !important;
	background-image: none !important;
	border: 1px solid #091432 !important;
	box-shadow: 0 4px 12px 0 rgba(9, 20, 50, 0.04);
	color: #fff !important;
	font-weight: 500;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-checkbox.checked:hover,
.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-type-checkboxes .facetwp-checkbox.checked:hover,
.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-facet[data-name="cfx_event_categories"] .facetwp-checkbox.checked:hover {
	background: rgb(8 17 35 / 90%) !important;
	border: 1px solid #091432 !important;
	color: #fff !important;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-display-value {
	color: #fff !important;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: inherit;
	font-style: normal;
	font-weight: inherit;
	line-height: normal;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-counter {
	display: none !important;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets-reset {
	display: inline-flex;
	align-items: center;
	margin: 0;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets-reset .facetwp-reset,
.cfx-ev-app--design-arena .cfx-ev-app__facets-reset a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: clamp(0.5rem, calc(10 * 100vw / 1920), 0.65rem) clamp(0.85rem, calc(18 * 100vw / 1920), 1.1rem);
	border-radius: 30px;
	border: 0;
	background: #0099F7 !important;
	color: #fff !important;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(14.4px, calc(18 * 100vw / 1920), 18px);
	font-weight: 600;
	line-height: normal;
	text-decoration: none;
	box-shadow: none;
	white-space: nowrap;
}

.cfx-ev-app--design-arena .cfx-ev-app__facets-reset .facetwp-reset:hover {
	background: #007acc !important;
	color: #fff !important;
}

.cfx-ev-app--design-arena .cfx-ev-cal--pro {
	position: relative;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.cfx-ev-app--design-arena .cfx-ev-cal__badge { display: none; }

.cfx-ev-app--design-arena .cfx-ev-cal__title {
	margin: 0;
	color: #091432;
	font-family: "Bebas Neue", system-ui, sans-serif;
	font-size: clamp(2rem, calc(54 * 100vw / 1920), 54px);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.cfx-ev-app--design-arena .cfx-ev-cal__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.15rem;
	margin: 0;
	padding: 0.15rem 1.75rem 0.85rem;
	background: transparent;
}

.cfx-ev-app--design-arena .cfx-ev-cal__legend-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #081123;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(1rem, calc(20 * 100vw / 1920), 20px);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.cfx-ev-app--design-arena .cfx-ev-cal__legend-item i {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	display: inline-block;
}

.cfx-ev-app--design-arena .cfx-ev-cal__toolbar-nav {
	display: inline-flex;
	gap: 0.75rem;
	flex-shrink: 0;
	padding-top: 0;
	margin-left: auto;
}

.cfx-ev-app--design-arena .cfx-ev-cal__nav {
	width: 44px;
	height: 44px;
	border-radius: 22px;
	border: 0;
	background: #0099F7;
	color: #fff;
	font-size: 1.65rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: none;
}

.cfx-ev-app--design-arena .cfx-ev-cal__nav-icon {
	width: 16px;
	height: 16px;
}

.cfx-ev-app--design-arena .cfx-ev-cal__nav:hover {
	background: #007acc;
	color: #fff;
	transform: none;
}

.cfx-ev-app--design-arena .cfx-ev-app__views--in-cal {
	position: static;
	top: auto;
	left: auto;
	transform: none;
	z-index: 2;
	display: inline-flex;
	flex-shrink: 0;
	gap: 2px;
	padding: 5px;
	margin: 0;
	background: #f7f9fc;
	border: 1px solid #e3e9f3;
	border-radius: 30px;
}

.cfx-ev-app--design-arena .cfx-ev-app__view-btn {
	appearance: none;
	border: 0;
	background: transparent;
	color: #5c6b85;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.55rem 1.05rem;
	border-radius: 24px;
	cursor: pointer;
	box-shadow: none;
}

.cfx-ev-app--design-arena .cfx-ev-app__view-btn:hover:not(.is-active) {
	color: #091432;
}

.cfx-ev-app--design-arena .cfx-ev-app__view-btn.is-active {
	background: #0099F7;
	color: #fff;
}

.cfx-ev-app--design-arena .cfx-ev-cal__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 0.45rem;
	padding: 0.85rem 1.4rem 1.5rem;
	background: transparent;
	border: 0;
	overflow: visible;
	align-items: start;
}

.cfx-ev-app--design-arena .cfx-ev-cal__dow {
	background: transparent;
	border: 0;
	padding: 0 0 0.25rem;
	text-align: center;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: #081123;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.cfx-ev-app--design-arena .cfx-ev-cal__cell {
	min-height: 7.25rem;
	padding: 0.65rem 0.5rem 0.55rem;
	border: 1px solid #eef1f6;
	border-radius: 10px;
	background: #fff;
	box-shadow: none;
	overflow: hidden;
	transition: min-height 0.2s ease, box-shadow 0.2s ease;
}

.cfx-ev-app--design-arena .cfx-ev-cal__cell.is-expanded {
	overflow: visible;
	background: #fff;
	box-shadow: 0 12px 28px rgba(9, 20, 50, 0.12);
	z-index: 6;
}

.cfx-ev-app--design-arena .cfx-ev-cal__cell:hover {
	background: #fafbfd;
	box-shadow: none;
}

.cfx-ev-app--design-arena .cfx-ev-cal__cell--empty,
.cfx-ev-app--design-arena .cfx-ev-cal__cell--adjacent {
	background: #f7f9fc;
	opacity: 1;
}

.cfx-ev-app--design-arena .cfx-ev-cal__cell--adjacent .cfx-ev-cal__daynum {
	color: #b0b9c9;
}

.cfx-ev-app--design-arena .cfx-ev-cal__cell.is-today {
	background: rgba(0, 153, 247, 0.06);
	border-color: #0099F7;
	box-shadow: inset 0 0 0 2px #0099F7;
}

.cfx-ev-app--design-arena .cfx-ev-cal__daynum {
	font-family: "Barlow", system-ui, sans-serif;
	font-size: 1.35rem;
	font-weight: 500;
	color: #091432;
	margin-bottom: 0.35rem;
	line-height: 1;
}

.cfx-ev-app--design-arena .cfx-ev-cal__cell.is-today .cfx-ev-cal__daynum {
	color: #0099F7;
	background: transparent;
	width: auto;
	height: auto;
	border-radius: 0;
	display: block;
	place-items: unset;
}

.cfx-ev-app--design-arena .cfx-ev-cal__events {
	display: grid;
	gap: 0.3rem;
}

.cfx-ev-app--design-arena .cfx-ev-cal__event {
	display: block;
	padding: 0.32rem 0.4rem;
	border-radius: 5px;
	border: 0;
	background: var(--cfx-event-color, #0099F7);
	color: #fff !important;
	text-decoration: none;
	box-shadow: none;
	min-height: 0;
}

.cfx-ev-app--design-arena .cfx-ev-cal__event-orb,
.cfx-ev-app--design-arena .cfx-ev-cal__event-dot,
.cfx-ev-app--design-arena .cfx-ev-cal__event-time {
	display: none !important;
}

.cfx-ev-app--design-arena .cfx-ev-cal__event-title {
	display: block;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #fff;
}

.cfx-ev-app--design-arena .cfx-ev-cal__event.has-image {
	background-image: none;
	background: var(--cfx-event-color, #0099F7);
}

.cfx-ev-app--design-arena .cfx-ev-cal__event:hover {
	filter: brightness(1.06);
	transform: none;
}

.cfx-ev-app--design-arena .cfx-ev-cal__more {
	appearance: none;
	border: 1px solid #0099F7;
	background: #fff;
	color: #0099F7;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.32rem 0.55rem;
	border-radius: 20px;
	cursor: pointer;
	width: fit-content;
	margin-top: 0.15rem;
}

.cfx-ev-app--design-arena .cfx-ev-cal__more:hover {
	background: rgba(0, 153, 247, 0.08);
}

/* Week / day timed grid */
.cfx-ev-app--design-arena .cfx-ev-timed__pad {
	background: #fff;
	padding: 0.5rem 1.4rem 1.75rem;
}

.cfx-ev-app--design-arena .cfx-ev-no-results {
	border-color: #e3e9f3;
	background: #f7f9fc;
	border-radius: 16px;
	padding: clamp(2rem, 3.5vw, 3rem) 1.5rem;
	font-family: "Barlow", system-ui, sans-serif;
	gap: 0.75rem;
}

.cfx-ev-app--design-arena .cfx-ev-no-results__title {
	color: #081123;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.cfx-ev-app--design-arena .cfx-ev-no-results__hint {
	color: #5c6b85;
	max-width: 22rem;
}

.cfx-ev-app--design-arena .cfx-ev-timed__head,
.cfx-ev-app--design-arena .cfx-ev-timed__allday {
	background: #fff;
	border-color: #eef1f6;
}

.cfx-ev-app--design-arena .cfx-ev-timed__day-head {
	font-family: "Barlow", system-ui, sans-serif;
	color: #081123;
}

.cfx-ev-app--design-arena .cfx-ev-timed__day-head.is-today {
	color: #0099F7;
	font-weight: 700;
}

.cfx-ev-app--design-arena .cfx-ev-timed__allday-label,
.cfx-ev-app--design-arena .cfx-ev-timed__hour {
	font-family: "Barlow", system-ui, sans-serif;
	color: #5c6b85;
}

.cfx-ev-app--design-arena .cfx-ev-timed__cols {
	color: #eef1f6;
	background: #f7f9fc;
}

.cfx-ev-app--design-arena .cfx-ev-timed__col.is-today {
	background: rgba(0, 153, 247, 0.06);
}

.cfx-ev-app--design-arena .cfx-ev-timed__evt,
.cfx-ev-app--design-arena .cfx-ev-timed__chip {
	border-radius: 8px;
	border: 0;
	background: var(--cfx-event-color, #0099F7);
	color: #fff;
	box-shadow: none;
}

.cfx-ev-app--design-arena .cfx-ev-timed__day-title,
.cfx-ev-app--design-arena .cfx-ev-timed__evt-title {
	font-family: "Barlow", system-ui, sans-serif;
	font-weight: 700;
	color: #fff;
}

/* Agenda list */
.cfx-ev-app--design-arena .cfx-ev-list--gallery {
	display: grid;
	gap: 0.75rem;
}

.cfx-ev-app--design-arena .cfx-ev-list__date {
	margin: 0.85rem 0 0.15rem;
	padding: 0;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: 1.15rem;
	font-weight: 400;
	color: #0099F7;
	border: 0;
	background: transparent;
}

.cfx-ev-app--design-arena .cfx-ev-list__row {
	display: grid;
	grid-template-columns: 4px minmax(0, 1fr);
	gap: 0.85rem;
	align-items: start;
	padding: 0.75rem 0.85rem;
	border-radius: 12px;
	background: #f7f9fc;
	border: 0;
	text-decoration: none;
	color: inherit;
	box-shadow: none;
}

.cfx-ev-app--design-arena .cfx-ev-list__bar { display: block; }
.cfx-ev-app--design-arena .cfx-ev-list__thumb,
.cfx-ev-app--design-arena .cfx-ev-list__tag { display: none; }

.cfx-ev-app--design-arena .cfx-ev-list__title {
	font-family: "Barlow", system-ui, sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	color: #081431;
}

.cfx-ev-app--design-arena .cfx-ev-list__meta {
	font-family: "Barlow", system-ui, sans-serif;
	font-size: 0.95rem;
	font-weight: 400;
	color: #081123;
	opacity: 1;
	margin-top: 0.15rem;
}

.cfx-ev-app--design-arena .cfx-ev-list__row:hover {
	background: #eef4fb;
}

/* Sidebar */
.cfx-ev-app--design-arena .cfx-ev-aside {
	padding: 1.75rem 1.35rem 2rem;
	background: #f7f9fc;
	border-left: 1px solid #e3e9f3;
	gap: 0;
	position: relative;
	top: auto;
	height: auto;
	min-height: 100%;
}

.cfx-ev-app--design-arena .cfx-ev-aside__card {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.cfx-ev-app--design-arena .cfx-ev-aside__title {
	margin: 0;
	color: #091432;
	font-family: "Bebas Neue", system-ui, sans-serif;
	font-size: clamp(1.5rem, calc(32 * 100vw / 1920), 32px);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.cfx-ev-app--design-arena .cfx-ev-aside__head {
	display: grid;
	gap: 0.2rem;
	margin-bottom: 0.85rem;
}

.cfx-ev-app--design-arena .cfx-ev-aside__date {
	color: #081123;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(0.95rem, calc(18 * 100vw / 1920), 18px);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.cfx-ev-app--design-arena .cfx-ev-aside__empty {
	display: none;
}

.cfx-ev-app--design-arena .cfx-ev-aside__item {
	display: grid;
	grid-template-columns: 10px minmax(0, 1fr);
	gap: 0.85rem;
	align-items: start;
	padding: 0.85rem 0;
	background: transparent;
	border: 0;
	border-radius: 0;
}

.cfx-ev-app--design-arena .cfx-ev-aside__item:hover {
	transform: none;
	box-shadow: none;
	background: transparent;
}

.cfx-ev-app--design-arena .cfx-ev-aside__hour {
	display: block;
	width: 10px;
	height: 10px;
	min-height: 10px;
	margin-top: 0.45rem;
	padding: 0;
	border-radius: 50%;
	background: var(--cfx-event-color, #0099F7);
	box-shadow: none;
	color: transparent;
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}

.cfx-ev-app--design-arena .cfx-ev-aside__item-title {
	color: #091432;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(1rem, calc(20 * 100vw / 1920), 20px);
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	white-space: normal;
}

.cfx-ev-app--design-arena .cfx-ev-aside__item-meta {
	color: #081123;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(0.875rem, calc(16 * 100vw / 1920), 16px);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.cfx-ev-app--design-arena .cfx-ev-aside__legend {
	margin-top: 10px;
	gap: 0.1rem;
	border-top: 1px solid #C0C0C0;
	padding-top: 32px;
}

.cfx-ev-app--design-arena .cfx-ev-aside__card + .cfx-ev-aside__card .cfx-ev-aside__title {
	display: none;
}

.cfx-ev-app--design-arena .cfx-ev-aside__legend li {
	padding: 0.4rem 0;
	border: 0;
	background: transparent;
	color: #081123;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(1rem, calc(20 * 100vw / 1920), 20px);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.cfx-ev-app--design-arena .cfx-ev-aside__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
}

.cfx-ev-app--design-arena .cfx-ev-aside__legend-count {
	font-variant-numeric: tabular-nums;
	color: #5c6b85;
}

.cfx-ev-app--design-arena .cfx-ev-drawer__detail {
	border: 0;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	overflow: hidden;
}

.cfx-ev-app--design-arena .cfx-ev-drawer__cat {
	display: inline-flex;
	padding: 0.35rem 1rem;
	border-radius: 26px;
	background: #081431;
	color: #fff;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
}

.cfx-ev-app--design-arena .cfx-ev-drawer__title {
	font-family: "Barlow", system-ui, sans-serif;
	font-weight: 700;
	color: #091432;
}

.cfx-ev-app--design-arena .cfx-ev-drawer__cta--primary {
	background: #0099F7;
	border-radius: 999px;
	font-family: "Barlow", system-ui, sans-serif;
	font-weight: 600;
	box-shadow: none;
}

/* Hover tip — Arena */
.cfx-ev-tip--arena {
	width: min(342px, calc(100vw - 1.5rem));
	border-radius: 20px;
	border: 1px solid #b6aeae;
	background: #fff;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	color: #081123;
	overflow: hidden;
}

.cfx-ev-tip--arena .cfx-ev-tip__media {
	display: block;
	height: 179px;
}

.cfx-ev-tip--arena .cfx-ev-tip__body {
	padding: 1rem 1.15rem 1.25rem;
	gap: 0.85rem;
}

.cfx-ev-tip--arena .cfx-ev-tip__cat {
	display: none;
}

.cfx-ev-tip--arena .cfx-ev-tip__title {
	display: inline-flex;
	width: fit-content;
	max-width: 100%;
	margin: 0;
	padding: 0.35rem 1rem;
	border-radius: 26px;
	background: #081431;
	color: #fff !important;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.25;
	text-decoration: none !important;
}

.cfx-ev-tip--arena .cfx-ev-tip__row,
.cfx-ev-tip--arena .cfx-ev-tip__excerpt {
	font-family: "Barlow", system-ui, sans-serif;
	font-size: 1.05rem;
	color: #081123;
}

.cfx-ev-tip--arena .cfx-ev-tip__excerpt { display: none; }

.cfx-ev-tip--arena .cfx-ev-tip__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	margin-top: 0.3rem;
	padding: 0.7rem 1.4rem;
	border-radius: 999px;
	background: #0099F7;
	color: #fff !important;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none !important;
}

.cfx-ev-tip--arena .cfx-ev-tip__cta::after {
	content: "→";
	font-weight: 400;
}

.cfx-ev-app--design-arena .cfx-ev-peek {
	border-radius: 20px;
	border-color: #e3e9f3;
}

.cfx-ev-app--design-arena .cfx-ev-peek__cta {
	background: #0099F7;
	border-radius: 999px;
	color: #fff !important;
	font-family: "Barlow", system-ui, sans-serif;
	font-weight: 600;
}

@media (max-width: 1100px) {
	.cfx-ev-app--design-arena .cfx-ev-cal__toolbar {
		padding: 1.1rem 1rem 0.55rem;
		gap: 0.75rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__toolbar-left {
		flex: 1 1 100%;
		gap: 0.65rem 0.85rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__views--in-cal {
		margin: 0;
		width: fit-content;
		max-width: 100%;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__facets {
		flex-direction: column;
		align-items: stretch;
		gap: 0.65rem;
		margin-bottom: 1rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__facets-search {
		max-width: none;
		flex: 0 0 auto;
		align-self: stretch;
		width: 100%;
		min-height: 0;
		height: auto;
		padding: 0.65rem 0.9rem 0.65rem 2.65rem;
		border-radius: 999px;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__facets-search::before {
		left: 0.9rem;
		width: 18px;
		height: 18px;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-search,
	.cfx-ev-app--design-arena .cfx-ev-app__facets input[type="text"],
	.cfx-ev-app--design-arena .cfx-ev-app__facets input[type="search"] {
		font-size: 0.95rem;
		line-height: 1.35;
		min-height: 0;
		height: auto;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__facets-cats {
		flex: 1 1 auto;
		flex-wrap: wrap;
		overflow: visible;
		gap: 0.55rem;
		padding: 0;
		max-width: 100%;
		align-items: stretch;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__cat-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.65rem;
		width: 100%;
		box-sizing: border-box;
		margin: 0;
		padding: 0.7rem 0.95rem;
		border: 1px solid #091432;
		border-radius: 999px;
		background: rgba(8, 17, 35, 0.72);
		color: #fff;
		font-family: "Barlow", system-ui, sans-serif;
		font-size: 0.92rem;
		font-weight: 600;
		line-height: 1.25;
		cursor: pointer;
		text-align: left;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__cat-toggle-label {
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__cat-toggle-icon {
		flex: 0 0 auto;
		transition: transform 0.15s ease;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__facets-cats.is-open .cfx-ev-app__cat-toggle-icon {
		transform: rotate(180deg);
	}
	.cfx-ev-app--design-arena .cfx-ev-app__cat-panel {
		display: none;
		width: 100%;
		box-sizing: border-box;
		padding: 0.45rem;
		border: 1px solid #e3e9f3;
		border-radius: 16px;
		background: #fff;
		box-shadow: 0 12px 28px rgba(9, 20, 50, 0.1);
		max-height: min(50vh, 18rem);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__facets-cats.is-open .cfx-ev-app__cat-panel {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0.35rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__cat-panel .facetwp-facet,
	.cfx-ev-app--design-arena .cfx-ev-app__cat-panel .facetwp-facet[data-name="cfx_event_categories"],
	.cfx-ev-app--design-arena .cfx-ev-app__cat-panel .facetwp-type-checkboxes {
		display: grid !important;
		gap: 0.35rem;
		margin: 0 !important;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-checkbox,
	.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-type-checkboxes .facetwp-checkbox,
	.cfx-ev-app--design-arena .cfx-ev-app__facets .facetwp-facet[data-name="cfx_event_categories"] .facetwp-checkbox {
		padding: 0.55rem 0.75rem !important;
		font-size: 0.88rem !important;
		flex: 0 0 auto;
		width: 100%;
		box-sizing: border-box;
		justify-content: flex-start;
		white-space: normal;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__facets-reset,
	.cfx-ev-app--design-arena .cfx-ev-app__facets-reset .facetwp-facet {
		width: auto;
		justify-content: center;
		align-self: center;
		margin: 0.2rem auto 0 !important;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__facets-reset .facetwp-reset,
	.cfx-ev-app--design-arena .cfx-ev-app__facets-reset a {
		width: auto;
		box-sizing: border-box;
		padding: 0.3rem 0.65rem;
		font-size: 0.72rem;
		font-weight: 600;
	}
	.cfx-ev-app--design-arena .cfx-ev-calendar,
	.cfx-ev-app--design-arena .cfx-ev-app__main {
		scroll-margin-top: 0.75rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__shell-body {
		grid-template-columns: minmax(0, 1fr);
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__toolbar {
		grid-column: 1;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__stage,
	.cfx-ev-app--design-arena .cfx-ev-aside {
		grid-column: 1;
		grid-row: auto;
	}
	.cfx-ev-app--design-arena .cfx-ev-peek:not([hidden]) {
		grid-column: 1;
		grid-row: auto;
		margin: 0.75rem 0.85rem 1rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-aside {
		border-left: 0;
		border-top: 1px solid #e3e9f3;
	}
}

@media (max-width: 900px) {
	.cfx-ev-app--design-arena .cfx-ev-cal__toolbar {
		padding: 1rem 0.75rem 0.45rem;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			"title nav"
			"views views";
		align-items: center;
		gap: 0.65rem 0.75rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__toolbar-left {
		display: contents;
		width: auto;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__toolbar-left > div:first-child {
		grid-area: title;
		min-width: 0;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__title {
		font-size: clamp(1.75rem, 8vw, 2.35rem);
		letter-spacing: 0.5px;
		margin: 0;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__toolbar-nav {
		grid-area: nav;
		margin-left: 0;
		justify-content: flex-end;
		width: auto;
		order: unset;
		align-self: center;
		flex-shrink: 0;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__views--in-cal {
		grid-area: views;
		width: 100%;
		justify-content: space-between;
		padding: 4px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.cfx-ev-app--design-arena .cfx-ev-app__view-btn {
		flex: 1 1 0;
		min-width: 0;
		padding: 0.5rem 0.35rem;
		font-size: 0.72rem;
		letter-spacing: 0.03em;
		text-align: center;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__nav {
		width: 40px;
		height: 40px;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__legend {
		padding: 0.25rem 0.75rem 0.75rem;
		gap: 0.45rem 0.75rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__legend-item {
		font-size: 0.8rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__legend-item i {
		width: 8px;
		height: 8px;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__grid {
		padding: 0.5rem 0.55rem 1rem;
		gap: 0.25rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__dow {
		font-size: 0.65rem;
		letter-spacing: 0.02em;
		padding-bottom: 0.15rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__cell {
		min-height: 3.25rem;
		padding: 0.35rem 0.2rem 0.3rem;
		border-radius: 8px;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__daynum {
		font-size: 0.85rem;
		margin-bottom: 0.2rem;
		text-align: center;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__events {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.25rem;
		align-items: center;
	}
	/* Force mobile dots — arena desktop chips are too wide for 7 columns */
	.cfx-ev-app--design-arena .cfx-ev-cal__event {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		box-sizing: border-box !important;
		width: 0.85rem !important;
		height: 0.85rem !important;
		min-width: 0.85rem !important;
		min-height: 0.85rem !important;
		max-width: 0.85rem !important;
		max-height: 0.85rem !important;
		aspect-ratio: 1 / 1 !important;
		padding: 0 !important;
		border-radius: 999px !important;
		border: 0 !important;
		background: var(--cfx-event-color, #0099F7) !important;
		box-shadow: none;
		overflow: hidden;
		flex: 0 0 0.85rem !important;
	}
	/* Must beat the inline-flex !important above or “+ more” never hides extras */
	.cfx-ev-app--design-arena .cfx-ev-cal__event[hidden],
	.cfx-ev-app--design-arena .cfx-ev-cal__event--extra[hidden] {
		display: none !important;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__event-orb {
		display: block !important;
		width: 100%;
		height: 100%;
		border-radius: 999px;
		background: inherit;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__event-title,
	.cfx-ev-app--design-arena .cfx-ev-cal__event-dot,
	.cfx-ev-app--design-arena .cfx-ev-cal__event-time {
		display: none !important;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__more {
		box-sizing: border-box !important;
		width: 0.85rem !important;
		height: 0.85rem !important;
		min-width: 0.85rem !important;
		min-height: 0.85rem !important;
		max-width: 0.85rem !important;
		max-height: 0.85rem !important;
		flex: 0 0 0.85rem !important;
		aspect-ratio: 1 / 1 !important;
		margin: 0 !important;
		padding: 0 !important;
		font-size: 0 !important;
		letter-spacing: 0;
		border: 0 !important;
		border-radius: 999px !important;
		line-height: 1;
		white-space: nowrap;
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		background: #fff !important;
		box-shadow: inset 0 0 0 1px #0099F7;
		color: #0099F7;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__more::before {
		content: "+";
		font-size: 0.55rem;
		font-weight: 700;
		line-height: 1;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__more[aria-expanded="true"]::before {
		content: "−";
	}
	.cfx-ev-app--design-arena .cfx-ev-aside {
		padding: 1.15rem 0.85rem 1.5rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-aside__title {
		font-size: 1.45rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-aside__date {
		font-size: 0.95rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-aside__item-title {
		font-size: 0.95rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-aside__item-meta {
		font-size: 0.85rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-aside__legend li {
		font-size: 0.9rem;
		gap: 0.55rem;
	}
}

@media (max-width: 480px) {
	.cfx-ev-app--design-arena .cfx-ev-cal__cell {
		min-height: 2.85rem;
		padding: 0.28rem 0.12rem 0.25rem;
	}
	.cfx-ev-app--design-arena .cfx-ev-cal__dow {
		font-size: 0.58rem;
	}
}

/* ========== SINGLE EVENT ========== */
.cfx-ev-single-page__main {
	display: block;
	width: 100%;
}

.cfx-ev-single {
	font-family: "Barlow", system-ui, sans-serif;
	color: #081123;
	background: transparent;
}

.cfx-ev-single__wrap {
	box-sizing: border-box;
	width: min(100%, 1400px);
	margin: 0 auto;
	padding: 0 clamp(1rem, calc(24 * 100vw / 1920), 24px);
}

.cfx-ev-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(16rem, 27%);
	gap: clamp(1.5rem, calc(50 * 100vw / 1920), 50px);
	align-items: start;
}

.cfx-ev-single__main {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, calc(35 * 100vw / 1920), 35px);
	padding: clamp(0.85rem, calc(15 * 100vw / 1920), 15px) clamp(1.25rem, calc(34 * 100vw / 1920), 34px);
	border: 1px solid #c0c0c0;
	border-radius: 20px;
	background: #fff;
}

.cfx-ev-single__header {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cfx-ev-single__title {
	margin: 0;
	color: #081123;
	font-family: "Bebas Neue", "Barlow", system-ui, sans-serif;
	font-size: clamp(1.6rem, calc(32 * 100vw / 1920), 32px);
	font-style: normal;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.5px;
}

.cfx-ev-single__when {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.cfx-ev-single__when-icon {
	display: inline-flex;
	flex-shrink: 0;
	width: 29px;
	height: 29px;
}

.cfx-ev-single__when-icon svg {
	width: 29px;
	height: 29px;
	display: block;
}

.cfx-ev-single__when-text {
	color: #081123;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(1rem, calc(20 * 100vw / 1920), 20px);
	font-weight: 400;
	line-height: 1.35;
}

.cfx-ev-single__media {
	margin: 0;
	overflow: hidden;
	border-radius: 12px;
}

.cfx-ev-single__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.cfx-ev-single__about {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.cfx-ev-single__section-title,
.cfx-ev-single__card-title {
	margin: 0;
	color: #081123;
	font-family: "Bebas Neue", "Barlow", system-ui, sans-serif;
	font-size: clamp(1.6rem, calc(32 * 100vw / 1920), 32px);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.cfx-ev-single__content {
	color: #081123;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(1rem, calc(20 * 100vw / 1920), 20px);
	font-weight: 400;
	line-height: 1.45;
}

.cfx-ev-single__content p {
	margin: 0 0 0.9em;
}

.cfx-ev-single__content p:last-child {
	margin-bottom: 0;
}

.cfx-ev-single__facts {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.35rem;
	color: #081123;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(1rem, calc(20 * 100vw / 1920), 20px);
	font-weight: 400;
	line-height: 1.45;
}

.cfx-ev-single__facts strong {
	font-weight: 700;
	text-transform: uppercase;
}

.cfx-ev-single__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	padding: 10px 0 28px;
}

.cfx-ev-single__btn {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15.5px 36px 16.5px;
	border-radius: 999px;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(0.875rem, calc(16 * 100vw / 1920), 16px);
	font-weight: 600;
	line-height: 24px;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cfx-ev-single__btn svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.cfx-ev-single__btn--primary {
	background: #0099F7;
	border: 1px solid #0099F7;
	color: #fff;
}

.cfx-ev-single__btn--primary:hover {
	background: #007acc;
	border-color: #007acc;
	color: #fff;
}

.cfx-ev-single__btn--ghost {
	background: transparent;
	border: 1px solid #081431;
	color: #081431;
}

.cfx-ev-single__btn--ghost:hover {
	background: #091432;
	color: #fff;
}

.cfx-ev-single__btn--block {
	width: 100%;
	margin-top: 1.25rem;
}

.cfx-ev-single__aside {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}

.cfx-ev-single__card {
	box-sizing: border-box;
	padding: clamp(1.25rem, calc(27 * 100vw / 1920), 27px) clamp(1.25rem, calc(28 * 100vw / 1920), 28px) clamp(1.5rem, calc(28 * 100vw / 1920), 28px);
	border: 1px solid #c0c0c0;
	border-radius: 20px;
	background: #fff;
}

.cfx-ev-single__card-title {
	margin-bottom: 1.1rem;
}

.cfx-ev-single__price {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: clamp(1.1rem, calc(22 * 100vw / 1920), 22px) clamp(1.25rem, calc(28 * 100vw / 1920), 28px);
	margin-bottom: 0.35rem;
	border-radius: clamp(1rem, calc(20 * 100vw / 1920), 24px);
	background: linear-gradient(132deg, #091432 49%, #132c56 166%);
	text-align: center;
}

.cfx-ev-single__price-value {
	margin: 0;
	display: inline-flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.15em;
	line-height: 1;
}

.cfx-ev-single__price-amount {
	color: #4fc3ff;
	font-family: "Bebas Neue", "Barlow", system-ui, sans-serif;
	font-size: clamp(1.75rem, calc(34 * 100vw / 1920), 34px);
	font-weight: 400;
	letter-spacing: 0.02em;
}

.cfx-ev-single__price-unit {
	color: #fff;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(1rem, calc(20 * 100vw / 1920), 20px);
	font-weight: 500;
	line-height: 1;
}

.cfx-ev-single__price-note {
	margin: 0;
	color: #fff;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(0.8rem, calc(14 * 100vw / 1920), 14px);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.cfx-ev-single__meta {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.cfx-ev-single__meta-row {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 0;
}

.cfx-ev-single__meta-icon {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	line-height: 0;
}

.cfx-ev-single__meta-icon svg {
	display: block;
	width: 38px;
	height: 38px;
}

.cfx-ev-single__meta-body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.cfx-ev-single__meta-label {
	color: rgba(8, 17, 35, 0.25);
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(0.875rem, calc(16 * 100vw / 1920), 16px);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.cfx-ev-single__meta-value {
	color: #081123;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(0.95rem, calc(18 * 100vw / 1920), 18px);
	font-weight: 400;
	line-height: 1.3;
}

.cfx-ev-single__meta-value a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cfx-ev-single__exports {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin-top: 20px;
}

.cfx-ev-single__export {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 9px 6px;
	border: 1px solid #0199F7;
	border-radius: 10px;
	color: #0199F7;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(0.875rem, calc(16 * 100vw / 1920), 16px);
	font-weight: 500;
	text-decoration: none;
	text-align: center;
}

.cfx-ev-single__export:hover {
	background: rgba(1, 153, 247, 0.08);
}

.cfx-ev-single__map {
	margin: 0 0 0.75rem;
	overflow: hidden;
	border-radius: 12px;
	aspect-ratio: 322 / 120;
	background: #0b1220;
}

.cfx-ev-single__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.cfx-ev-single__venue-name {
	margin: 0.65rem 0 0.15rem;
	color: #091432;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(1rem, calc(20 * 100vw / 1920), 20px);
	font-weight: 700;
}

.cfx-ev-single__venue-address {
	margin: 0;
	color: #081123;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(0.95rem, calc(18 * 100vw / 1920), 18px);
	font-weight: 500;
	line-height: 1.3;
}

.cfx-ev-single__venue-links {
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
	display: grid;
	gap: 17px;
}

.cfx-ev-single__venue-links a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #081123;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(0.95rem, calc(18 * 100vw / 1920), 18px);
	font-weight: 400;
	text-decoration: none;
}

.cfx-ev-single__venue-links a:hover {
	color: #0099F7;
}

.cfx-ev-single__venue-links svg {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
}

.cfx-ev-single__orgs {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.cfx-ev-single__org {
	display: flex;
	align-items: center;
	gap: 14px;
}

.cfx-ev-single__org-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(0, 153, 247, 0.12);
	color: #0099F7;
	font-family: "Bebas Neue", system-ui, sans-serif;
	font-size: 1.5rem;
	flex-shrink: 0;
	object-fit: cover;
}

.cfx-ev-single__org-avatar--img {
	padding: 0;
	background: #eef3f8;
}

.cfx-ev-single__org-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.cfx-ev-single__org-name {
	margin: 0;
	color: #091432;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(1rem, calc(20 * 100vw / 1920), 20px);
	font-weight: 700;
}

.cfx-ev-single__org-email,
.cfx-ev-single__org-phone,
.cfx-ev-single__org-web {
	color: #081123;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(0.95rem, calc(18 * 100vw / 1920), 18px);
	font-weight: 400;
	text-decoration: none;
}

.cfx-ev-single__org-email:hover,
.cfx-ev-single__org-phone:hover,
.cfx-ev-single__org-web:hover {
	color: #0099F7;
}

.cfx-ev-single__related {
	margin-top: clamp(2.5rem, calc(64 * 100vw / 1920), 80px);
	padding: clamp(2.5rem, calc(80 * 100vw / 1920), 80px) clamp(1rem, calc(24 * 100vw / 1920), 24px);
	background: #f3f6fb;
}

.cfx-ev-single__related-inner {
	width: min(100%, 1400px);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(1.5rem, calc(40 * 100vw / 1920), 40px);
}

.cfx-ev-single__related-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: #0099F7;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(0.95rem, calc(18 * 100vw / 1920), 18px);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.cfx-ev-single__related-rule {
	display: block;
	width: 32px;
	height: 2px;
	background: #0099F7;
}

.cfx-ev-single__related-title {
	margin: 0;
	color: #091432;
	font-family: "Bebas Neue", "Barlow", system-ui, sans-serif;
	font-size: clamp(2.5rem, calc(84 * 100vw / 1920), 84px);
	font-weight: 400;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cfx-ev-single__related-title span {
	color: #0099F7;
}

.cfx-ev-related-carousel {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	align-items: stretch;
}

.cfx-ev-related-carousel__viewport {
	width: 100%;
	min-width: 0;
}

.cfx-ev-related-carousel__track {
	--cfx-related-gap: 1rem;
	display: flex;
	gap: var(--cfx-related-gap);
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: 0;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 0.15rem 0 0.35rem;
}

.cfx-ev-related-carousel__track::-webkit-scrollbar {
	display: none;
}

.cfx-ev-related-carousel__slide {
	box-sizing: border-box;
	flex: 0 0 min(100%, 22rem);
	scroll-snap-align: start;
	min-width: 0;
}

.cfx-ev-related-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
}

.cfx-ev-related-carousel__nav {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #0099F7;
	color: #fff;
	cursor: pointer;
	box-shadow: none;
	transition: background 0.15s ease, opacity 0.15s ease;
}

.cfx-ev-related-carousel__nav:hover:not(:disabled) {
	background: #007acc;
}

.cfx-ev-related-carousel__nav:disabled {
	opacity: 0.35;
	cursor: default;
}

.cfx-ev-related-carousel__dots {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-height: 12px;
}

.cfx-ev-related-carousel__dot {
	appearance: none;
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: #c5cedd;
	cursor: pointer;
	transition: width 0.15s ease, background 0.15s ease;
}

.cfx-ev-related-carousel__dot.is-active {
	width: 22px;
	background: #0099F7;
}

.cfx-ev-related-card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid #081431;
	border-radius: 16px;
	background: #fff;
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	height: 100%;
}

.cfx-ev-related-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(9, 20, 50, 0.1);
}

.cfx-ev-related-card__date {
	display: flex;
	align-items: baseline;
	gap: 6px;
	padding: 18px 20px;
	background: #081431;
	color: #fff;
}

.cfx-ev-related-card__day {
	font-family: "Bebas Neue", system-ui, sans-serif;
	font-size: clamp(1.4rem, calc(28 * 100vw / 1920), 28px);
	font-weight: 400;
	line-height: 1;
}

.cfx-ev-related-card__mon {
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(1rem, calc(20 * 100vw / 1920), 20px);
	font-weight: 700;
	text-transform: uppercase;
}

.cfx-ev-related-card__body {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
}

.cfx-ev-related-card__cat {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 20px;
	background: color-mix(in srgb, var(--cfx-event-color, #0099F7) 12%, #fff);
	color: #081123;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(0.95rem, calc(18 * 100vw / 1920), 18px);
	font-weight: 600;
}

.cfx-ev-related-card__cat::before {
	content: "";
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--cfx-event-color, #0099F7);
}

.cfx-ev-related-card__title {
	color: #091432;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(1rem, calc(20 * 100vw / 1920), 20px);
	font-weight: 700;
	line-height: 1.15;
}

.cfx-ev-related-card__meta {
	color: #081123;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(1rem, calc(20 * 100vw / 1920), 20px);
	font-weight: 400;
}

@media (min-width: 721px) {
	.cfx-ev-related-carousel__slide {
		flex-basis: calc((100% - var(--cfx-related-gap)) / 2);
	}
}

@media (min-width: 1001px) {
	.cfx-ev-related-carousel__track {
		--cfx-related-gap: 1.5rem;
	}
	.cfx-ev-related-carousel__slide {
		flex-basis: calc((100% - (2 * var(--cfx-related-gap))) / 3);
	}
}

@media (max-width: 1000px) {
	.cfx-ev-single__layout {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 640px) {
	.cfx-ev-single__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		padding: 6px 0 20px;
	}
	.cfx-ev-single__btn {
		width: 100%;
		padding: 0.7rem 1.15rem;
		font-size: 0.9rem;
		line-height: 1.25;
		gap: 6px;
	}
	.cfx-ev-single__btn svg {
		width: 16px;
		height: 16px;
	}
	.cfx-ev-single__btn--block {
		margin-top: 0.85rem;
	}
	.cfx-ev-single__cta-btn {
		padding: 0.7rem 1.35rem;
		font-size: 0.9rem;
	}
	.cfx-ev-single__exports {
		grid-template-columns: 1fr;
	}
	.cfx-ev-related-carousel__slide {
		flex-basis: min(100%, 18.5rem);
	}
	.cfx-ev-related-carousel__nav {
		width: 40px;
		height: 40px;
	}
}

/* Single — hero + contact CTA */
.cfx-ev-single__hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(240px, calc(380 * 100vw / 1920), 380px);
	padding: clamp(2.5rem, calc(60 * 100vw / 1920), 80px) clamp(1rem, calc(24 * 100vw / 1920), 24px);
	background-color: #04070d;
	background-image:
		linear-gradient(120deg, rgba(4, 7, 13, 0.78) 0%, rgba(9, 20, 50, 0.72) 100%),
		var(--cfx-hero-image, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
	color: #fff;
}

.cfx-ev-single__hero-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(0.85rem, calc(20 * 100vw / 1920), 20px);
	width: min(100%, 1100px);
	margin: 0 auto;
}

.cfx-ev-single__crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(1rem, calc(20 * 100vw / 1920), 20px);
	font-weight: 500;
	line-height: 1.35;
}

.cfx-ev-single__crumbs a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}

.cfx-ev-single__crumbs a:hover {
	color: #fff;
}

.cfx-ev-single__crumbs-current {
	color: rgba(255, 255, 255, 0.7);
}

.cfx-ev-single__hero-title {
	margin: 0;
	color: #fff;
	font-family: "Bebas Neue", "Barlow", system-ui, sans-serif;
	font-size: clamp(2.5rem, calc(84 * 100vw / 1920), 84px);
	font-style: normal;
	font-weight: 400;
	line-height: 0.95;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
}

.cfx-ev-single__wrap {
	margin-top: clamp(2rem, calc(80 * 100vw / 1920), 80px);
	margin-bottom: clamp(2rem, calc(80 * 100vw / 1920), 80px);
}

.cfx-ev-single__slot--banner,
.cfx-ev-single__slot--cta {
	width: 100%;
	max-width: none;
}

.cfx-ev-single__cta {
	margin-top: 0;
	padding: clamp(2.5rem, calc(90 * 100vw / 1920), 90px) clamp(1rem, calc(24 * 100vw / 1920), 24px);
	background-color: #091432;
	background-image:
		linear-gradient(120deg, rgba(9, 20, 50, 0.94) 62%, rgba(19, 44, 86, 0.92) 200%),
		var(--cfx-cta-image, linear-gradient(120deg, #091432 62%, #132c56 200%));
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
	color: #fff;
}

.cfx-ev-single__cta-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(0.75rem, calc(16 * 100vw / 1920), 18px);
	width: min(100%, 900px);
	margin: 0 auto;
}

.cfx-ev-single__cta-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: #0099F7;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(0.95rem, calc(18 * 100vw / 1920), 18px);
	font-weight: 700;
	line-height: 1.15;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.cfx-ev-single__cta-rule {
	display: block;
	width: 32px;
	height: 2px;
	background: #0099F7;
}

.cfx-ev-single__cta-title {
	margin: 0;
	color: #fff;
	font-family: "Bebas Neue", "Barlow", system-ui, sans-serif;
	font-size: clamp(2.25rem, calc(84 * 100vw / 1920), 84px);
	font-weight: 400;
	line-height: 0.95;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
}

.cfx-ev-single__cta-text {
	margin: 0;
	max-width: 752px;
	color: #fff;
	font-family: "Barlow", system-ui, sans-serif;
	font-size: clamp(1rem, calc(20 * 100vw / 1920), 20px);
	font-weight: 400;
	line-height: 1.45;
	text-align: center;
}

.cfx-ev-single__cta-btn {
	margin-top: 0.35rem;
}
