.tsk-events-archive {
	max-width: 820px;
	margin: 0 auto;
	padding: 40px 20px 60px;
}
.tsk-events-archive-header {
	margin: 0 0 32px;
}
.tsk-events-archive-title {
	font-size: 34px;
	font-weight: 800;
	margin: 0 0 8px;
	color: #1a2333;
}
.tsk-events-archive-intro {
	margin: 0;
	font-size: 16px;
	color: #6b7280;
	max-width: 620px;
}

/* Single event page — native Gutenberg wrapper (entry-header + entry-content), full
   width, centered content; body + appended CTA/calendar live in .entry-content. */
.tsk-single-event {
	text-align: center;
}
/* Promo banners injected into the content (e.g. the Cigna .custom_banner) keep their own
   default left alignment instead of inheriting the centered event layout. */
.tsk-single-event .custom_banner { text-align: left; }
.tsk-single-back { margin: 0 0 6px; }
.tsk-single-back a {
	font-size: 14px;
	font-weight: 600;
	color: #6b7280;
	text-decoration: none;
}
.tsk-single-back a:hover { color: #f96e5b; }
.tsk-single-thumb {
	text-align: center;
	margin: 0 0 24px;
}
.tsk-single-thumb img {
	max-width: 100%;
	height: auto;
	border-radius: 14px;
	display: inline-block;
}
.tsk-single-facts {
	list-style: none;
	margin: 0 auto 28px;
	padding: 18px 24px;
	max-width: 560px;
	border: 1px solid #ececec;
	border-radius: 14px;
	background: #fafafa;
}
.tsk-single-facts li {
	padding: 9px 0;
	border-bottom: 1px solid #f0f0f0;
	font-size: 16px;
	line-height: 1.5;
}
.tsk-single-facts li:last-child { border-bottom: 0; }
.tsk-fact-label {
	font-weight: 800;
	color: #1a2333;
	margin-right: 4px;
}
.tsk-fact-value {
	color: #1f2430;
}
.tsk-fact-value a {
	color: #f96e5b;
	text-decoration: none;
}
.tsk-fact-value a:hover { text-decoration: underline; }
.tsk-single-details {
	font-size: 16.5px;
	line-height: 1.7;
	margin: 0 auto 32px;
	max-width: 620px;
}
.tsk-single-details img { border-radius: 10px; }
/* Native gallery blocks added to an event body render as a tidy grid here. */
.tsk-single-details .wp-block-gallery { gap: 10px; }
.tsk-single-details figcaption { font-size: 13px; color: #6b7280; }
.tsk-single-event .tsk-single-cta-wrap { margin: 24px 0 0; }
.tsk-single-event .tsk-single-cta {
	display: inline-block;
	background: #f96e5b;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 999px;
	transition: background .15s ease, transform .15s ease;
}
.tsk-single-event .tsk-single-cta:hover {
	background: #e85742;
	transform: translateY(-1px);
	color: #fff;
}
.tsk-single-event .tsk-single-cal {
	margin: 16px 0 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	text-align: center;
}
.tsk-single-event .tsk-single-cal-label { color: #6b7280; font-weight: 600; }
.tsk-single-event .tsk-single-cal-btn {
	display: inline-block;
	border: 1px solid #ececec;
	color: #1f2430;
	text-decoration: none;
	font-weight: 600;
	padding: 7px 14px;
	border-radius: 999px;
	transition: border-color .15s ease, color .15s ease;
}
.tsk-single-event .tsk-single-cal-btn:hover { border-color: #f96e5b; color: #f96e5b; }

.tsk-events {
	--tsk-coral: #f96e5b;
	--tsk-ink: #1f2430;
	--tsk-muted: #6b7280;
	--tsk-line: #ececec;
	max-width: 760px;
	margin: 0 auto;
}

/* Filter pills */
.tsk-events-filters {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 28px;
}
.tsk-events-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
}
.tsk-events-pill {
	border: 1px solid var(--tsk-line);
	background: #fff;
	color: var(--tsk-ink);
	border-radius: 999px;
	padding: 7px 16px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all .15s ease;
}
.tsk-events-pill:hover {
	border-color: var(--tsk-coral);
	color: var(--tsk-coral);
}
.tsk-events-pill.is-active {
	background: var(--tsk-coral);
	border-color: var(--tsk-coral);
	color: #fff;
}

/* Bucket headings */
.tsk-events-bucket {
	margin: 0 0 36px;
}
.tsk-events-heading {
	font-size: 15px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--tsk-muted);
	margin: 0 0 14px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--tsk-line);
}

/* Cards */
.tsk-events-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.tsk-event-card {
	border: 1px solid var(--tsk-line);
	border-radius: 14px;
	overflow: hidden;
	transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}
.tsk-event-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
	border-color: #dfe3e8;
	transform: translateY(-1px);
}
.tsk-event-link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.tsk-event-thumb img {
	display: block;
	width: 100%;
	height: 160px;
	object-fit: cover;
}
.tsk-event-body {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 18px;
}

/* Date badge */
.tsk-event-datebadge {
	flex: 0 0 auto;
	width: 58px;
	text-align: center;
	border-radius: 10px;
	background: #fff5f3;
	padding: 8px 0;
	line-height: 1.1;
}
.tsk-event-weekday {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--tsk-coral);
	letter-spacing: .04em;
}
.tsk-event-day {
	display: block;
	font-size: 24px;
	font-weight: 800;
	color: var(--tsk-ink);
}
.tsk-event-month {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--tsk-muted);
}

/* Main text */
.tsk-event-main {
	flex: 1 1 auto;
	min-width: 0;
}
.tsk-event-type {
	display: inline-block;
	margin: 0 0 5px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--tsk-coral);
	background: #fff5f3;
	border-radius: 5px;
	padding: 2px 8px;
}
.tsk-event-title {
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 4px;
	color: var(--tsk-ink);
	line-height: 1.3;
}
.tsk-event-when,
.tsk-event-meta {
	margin: 0;
	font-size: 13.5px;
	color: var(--tsk-muted);
}
.tsk-event-when { color: var(--tsk-ink); }
.tsk-event-price {
	display: inline-block;
	margin-top: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--tsk-coral);
	background: #fff5f3;
	border-radius: 6px;
	padding: 2px 8px;
}

/* CTA */
.tsk-event-cta {
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 700;
	color: var(--tsk-coral);
	white-space: nowrap;
}

.tsk-events-empty {
	text-align: center;
	color: var(--tsk-muted);
	padding: 40px 0;
}

/* Phone */
@media (max-width: 540px) {
	.tsk-event-cta { display: none; }
	.tsk-event-body { gap: 12px; padding: 14px; }
	.tsk-event-datebadge { width: 50px; }
	.tsk-event-day { font-size: 21px; }
	.tsk-event-title { font-size: 16px; }
	.tsk-event-thumb img { height: 140px; }
}

/* Events map (Leaflet + OpenStreetMap) */
.tsk-events-mapwrap {
	margin: 0 0 28px;
	border: 1px solid #ececec;
	border-radius: 14px;
	overflow: hidden;
}
.tsk-events-mapsummary {
	cursor: pointer;
	padding: 14px 18px;
	font-weight: 700;
	color: #1a2333;
	list-style: none;
	user-select: none;
}
.tsk-events-mapsummary::-webkit-details-marker { display: none; }
.tsk-events-mapwrap[open] .tsk-events-mapsummary { border-bottom: 1px solid #ececec; }
.tsk-events-map { height: 420px; width: 100%; }
.tsk-events-map a { color: #f96e5b; text-decoration: none; }
.tsk-events-map a:hover { text-decoration: underline; }

/* Search box (events listing filter bar) */
.tsk-events-search {
	width: 100%;
	max-width: 360px;
	padding: 8px 14px;
	border: 1px solid #ececec;
	border-radius: 999px;
	font-size: 14px;
	margin: 0 0 4px;
}
.tsk-events-search:focus { outline: none; border-color: #f96e5b; }

/* Related events (single event page) */
.tsk-events-related { text-align: left; margin: 40px auto 0; }
.tsk-events-related .tsk-events-heading { margin-bottom: 14px; }
