.wec-events {
	--wec-accent: #ed7330;
	--wec-accent-dark: #c95719;
	--wec-ink: #1d2327;
	--wec-muted: #646970;
	--wec-line: #dcdcde;
	--wec-soft: #f6f7f7;
	--wec-panel: #ffffff;
	--wec-radius: 8px;
	color: var(--wec-ink);
	font-size: 16px;
}

.wec-events *,
.wec-events *::before,
.wec-events *::after {
	box-sizing: border-box;
}

.wec-events__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--wec-line);
	padding-bottom: 16px;
}

.wec-events__tabs {
	display: inline-flex;
	gap: 4px;
	border: 1px solid var(--theme-palette-color-5);
	border-radius: var(--wec-radius);
	background: var(--theme-palette-color-6);
	padding: 4px;
}

.wec-events__tab {
	appearance: none;
	border: 1px solid var(--theme-palette-color-5);
	border-radius: 6px;
	background: var(--theme-palette-color-6);
	color: var(--theme-palette-color-3);
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	line-height: 1;
	min-height: 40px;
	padding: 0 18px;
	transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.wec-events__tab:hover {
	background: var(--theme-palette-color-6);
	border-color: var(--theme-palette-color-5);
	color: var(--theme-palette-color-3);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.wec-events__tab.is-active,
.wec-events__tab.is-active:hover {
	background: var(--theme-button-background-initial-color);
	border-color: var(--theme-button-background-initial-color);
	color: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.wec-events__tab.is-active {
	color: #fff;
}

.wec-events__bar-note {
	color: var(--wec-muted);
	font-size: 14px;
	font-weight: 600;
}

.wec-events__view[hidden] {
	display: none !important;
}

.wec-empty {
	border: 1px solid var(--wec-line);
	border-radius: var(--wec-radius);
	background: var(--wec-soft);
	color: var(--wec-muted);
	padding: 22px;
}

.wec-list {
	display: grid;
	gap: 14px;
}

.wec-list-card {
	margin: 0;
}

.wec-events .wec-list-card__button {
	appearance: none;
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	width: 100%;
	border: 1px solid var(--wec-line);
	border-radius: var(--wec-radius);
	background: #fff !important;
	background-color: #fff !important;
	color: inherit;
	cursor: pointer;
	padding: 16px;
	text-align: left;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.wec-events .wec-list-card__button:hover,
.wec-events .wec-list-card__button:focus-visible {
	background: #fff !important;
	background-color: #fff !important;
	border-color: rgba(237, 115, 48, 0.55);
	box-shadow: 0 12px 28px rgba(29, 35, 39, 0.08);
	outline: none;
	transform: translateY(-1px);
}

.wec-date-badge {
	display: grid;
	place-items: center;
	min-height: 72px;
	border: 1px solid rgba(237, 115, 48, 0.3);
	border-radius: var(--wec-radius);
	background: #fff8f3;
	color: var(--wec-accent-dark);
}

.wec-date-badge span {
	display: block;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}

.wec-date-badge strong {
	display: block;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
	margin-top: 4px;
	text-transform: uppercase;
}

.wec-list-card__body {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.wec-list-card__meta {
	color: var(--wec-muted);
	font-size: 14px;
	font-weight: 700;
}

.wec-list-card__title {
	color: var(--e-global-color-text);
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
}

.wec-list-card__excerpt {
	color: var(--wec-muted);
	font-size: 15px;
	line-height: 1.45;
}

.wec-list-card__action {
	align-items: center;
	border: 1px solid var(--wec-accent);
	border-radius: 999px;
	color: var(--wec-accent-dark);
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	justify-content: center;
	min-height: 38px;
	padding: 0 16px;
	white-space: nowrap;
}

.wec-calendar {
	border: 1px solid var(--wec-line);
	border-radius: var(--wec-radius);
	background: var(--wec-panel);
	overflow: hidden;
}

.wec-calendar__header {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 44px;
	align-items: center;
	gap: 12px;
	border-bottom: 1px solid var(--wec-line);
	padding: 18px;
	text-align: center;
}

.wec-calendar__eyebrow {
	color: var(--wec-muted);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.wec-calendar__title {
	font-size: clamp(22px, 3vw, 34px);
	line-height: 1.1;
	margin: 4px 0 0;
}

.wec-calendar__nav {
	align-items: center;
	border: 1px solid var(--wec-line);
	border-radius: 50%;
	color: var(--wec-ink);
	display: inline-flex;
	font-size: 28px;
	font-weight: 400;
	height: 44px;
	justify-content: center;
	text-decoration: none;
	transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
	width: 44px;
}

.wec-calendar__nav:hover,
.wec-calendar__nav:focus-visible {
	background: #fff8f3;
	border-color: var(--wec-accent);
	color: var(--wec-accent-dark);
	outline: none;
}

.wec-calendar__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.wec-calendar__weekday {
	background: var(--wec-soft);
	border-bottom: 1px solid var(--wec-line);
	color: var(--wec-muted);
	font-size: 13px;
	font-weight: 800;
	padding: 10px;
	text-align: center;
}

.wec-calendar__day {
	border-bottom: 1px solid var(--wec-line);
	border-right: 1px solid var(--wec-line);
	min-height: 148px;
	padding: 10px;
	position: relative;
}

.wec-calendar__day:nth-child(7n) {
	border-right: 0;
}

.wec-calendar__day.is-other-month {
	background: #fbfbfb;
	color: #9aa0a6;
}

.wec-calendar__day.is-today {
	background: #fff8f3;
}

.wec-calendar__date {
	align-items: center;
	border-radius: 50%;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	height: 28px;
	justify-content: center;
	width: 28px;
}

.wec-calendar__day.is-today .wec-calendar__date {
	background: var(--wec-accent);
	color: #fff;
}

.wec-calendar__events {
	display: grid;
	gap: 6px;
	margin-top: 8px;
}

.wec-events .wec-calendar-event {
	appearance: none;
	background: var(--theme-button-background-initial-color);
	border: 1px solid var(--theme-button-background-initial-color);
	border-left: 3px solid var(--wec-accent);
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	display: grid;
	gap: 2px;
	min-height: 44px;
	padding: 7px 8px;
	text-align: left;
	text-decoration: none;
	width: 100%;
}

.wec-events .wec-calendar-event:hover,
.wec-events .wec-calendar-event:focus-visible {
	background: var(--theme-button-background-initial-color);
	outline: none;
}

.wec-events .wec-calendar-event span {
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}

.wec-events .wec-calendar-event strong {
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.wec-calendar__more {
	color: var(--wec-muted);
	font-size: 12px;
	font-weight: 800;
	padding: 2px 0;
}

.wec-modal[hidden] {
	display: none !important;
}

.wec-modal {
	align-items: center;
	display: flex;
	inset: 0;
	justify-content: center;
	position: fixed;
	z-index: 99999;
}

.wec-modal__overlay {
	background: rgba(20, 20, 20, 0.56);
	inset: 0;
	position: absolute;
}

.wec-modal__dialog {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
	max-height: min(760px, calc(100vh - 40px));
	max-width: min(760px, calc(100vw - 32px));
	overflow: auto;
	position: relative;
	width: 100%;
	z-index: 1;
}

.wec-modal__close {
	align-items: center;
	appearance: none;
	background: #fff;
	border: 1px solid var(--wec-line);
	border-radius: 50%;
	color: var(--wec-ink);
	cursor: pointer;
	display: inline-flex;
	font-size: 28px;
	height: 42px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: 14px;
	top: 14px;
	width: 42px;
	z-index: 2;
}

.wec-modal__close:hover,
.wec-modal__close:focus-visible {
	border-color: var(--wec-accent);
	color: var(--wec-accent-dark);
	outline: none;
}

.wec-modal-event {
	padding: 32px;
}

.wec-modal-event__image {
	aspect-ratio: 16 / 7;
	border-radius: 8px;
	display: block;
	height: auto;
	margin: 0 0 22px;
	object-fit: cover;
	width: 100%;
}

.wec-modal-event__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 52px 12px 0;
}

.wec-modal-event__meta span {
	background: var(--wec-soft);
	border: 1px solid var(--wec-line);
	border-radius: 999px;
	color: var(--wec-muted);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	padding: 7px 10px;
}

.wec-modal-event h2 {
	font-size: clamp(26px, 4vw, 40px);
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0 52px 22px 0;
}

.wec-modal-event__facts {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-bottom: 22px;
}

.wec-modal-event__facts div {
	border: 1px solid var(--wec-line);
	border-radius: var(--wec-radius);
	display: grid;
	gap: 5px;
	padding: 14px;
}

.wec-modal-event__facts strong {
	color: var(--wec-muted);
	font-size: 12px;
	text-transform: uppercase;
}

.wec-modal-event__facts span {
	font-weight: 800;
	line-height: 1.35;
}

.wec-modal-event__facts a {
	color: var(--wec-accent-dark);
	font-weight: 800;
	overflow-wrap: anywhere;
}

.wec-modal-event__description {
	color: var(--wec-ink);
	line-height: 1.65;
}

.wec-modal-event__description > :first-child {
	margin-top: 0;
}

.wec-modal-event__description > :last-child {
	margin-bottom: 0;
}

.wec-modal-event__embed {
	border-top: 1px solid var(--wec-line);
	margin-top: 24px;
	padding-top: 24px;
}

.wec-modal-event__embed h3 {
	font-size: 20px;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 14px;
}

.wec-jotform-frame {
	border: 0;
	border-radius: 8px;
	display: block;
	min-height: 640px;
	width: 100%;
}

body.wec-modal-open {
	overflow: hidden;
}

.wec-single {
	--wec-single-blue: var(--theme-palette-color-3, #004070);
	--wec-single-orange: var(--theme-button-background-initial-color, #ed7330);
	background: var(--theme-palette-color-6, #fafbfc);
	padding: 120px 0 240px;
}

.wec-single *,
.wec-single *::before,
.wec-single *::after {
	box-sizing: border-box;
}

.wec-single__back {
	color: var(--wec-single-orange);
	display: inline-flex;
	font-size: 15px;
	font-weight: 800;
	margin-bottom: 22px;
	text-decoration: none;
}

.wec-single__back:hover {
	text-decoration: underline;
}

.wec-single-hero {
	background: var(--wec-single-blue);
	border-radius: 10px;
	color: #fff;
	display: grid;
	gap: 32px;
	grid-template-columns: minmax(0, 1fr) 280px;
	margin-bottom: 32px;
	overflow: hidden;
	padding: clamp(28px, 5vw, 64px);
	position: relative;
}

.wec-single-hero::after {
	background: var(--wec-single-orange);
	bottom: 0;
	clip-path: polygon(0 0, 100% 100%, 0 100%);
	content: "";
	height: clamp(90px, 12vw, 170px);
	left: 0;
	opacity: 0.95;
	position: absolute;
	width: clamp(180px, 24vw, 360px);
}

.wec-single-hero__content,
.wec-single-hero__aside {
	position: relative;
	z-index: 1;
}

.wec-single-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.wec-single-hero__meta span {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	padding: 8px 10px;
}

.wec-single-hero h1 {
	color: #fff;
	font-size: clamp(38px, 6vw, 76px);
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0;
	max-width: 900px;
}

.wec-single-hero p {
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(18px, 2vw, 24px);
	font-weight: 700;
	line-height: 1.35;
	margin: 18px 0 0;
}

.wec-single-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.wec-single-button {
	align-items: center;
	background: var(--wec-single-orange);
	border: 1px solid var(--wec-single-orange);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	text-decoration: none;
}

.wec-single-button:hover {
	color: #fff;
	transform: translateY(-1px);
}

.wec-single-button--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.34);
}

.wec-single-hero__aside {
	align-self: stretch;
	display: grid;
	gap: 16px;
}

.wec-single-date {
	align-content: center;
	background: #fff8f3;
	border: 1px solid rgba(237, 115, 48, 0.3);
	border-radius: 8px;
	color: var(--wec-single-orange);
	display: grid;
	justify-items: center;
	min-height: 138px;
}

.wec-single-date span {
	font-size: 56px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
}

.wec-single-date strong {
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
	margin-top: 8px;
	text-transform: uppercase;
}

.wec-single-hero__fact {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	display: grid;
	gap: 6px;
	padding: 18px;
}

.wec-single-hero__fact strong {
	color: rgba(255, 255, 255, 0.64);
	font-size: 12px;
	text-transform: uppercase;
}

.wec-single-hero__fact span {
	color: #fff;
	font-weight: 900;
}

.wec-single-hero__fact a {
	color: rgba(255, 255, 255, 0.82);
	font-weight: 700;
	overflow-wrap: anywhere;
}

.wec-single-layout {
	align-items: start;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) 360px;
}

.wec-single-content,
.wec-single-card,
.wec-single-signup {
	background: #fff;
	border: 1px solid var(--theme-palette-color-5, #e4e7eb);
	border-radius: 8px;
	box-shadow: 0 14px 34px rgba(25, 40, 58, 0.06);
}

.wec-single-content {
	overflow: hidden;
}

.wec-single-content__image {
	aspect-ratio: 16 / 7;
	display: block;
	object-fit: cover;
	width: 100%;
}

.wec-single-content__body {
	color: var(--e-global-color-text, var(--theme-text-color, #19283a));
	font-size: 18px;
	line-height: 1.75;
	padding: clamp(24px, 4vw, 42px);
}

.wec-single-content__body > :first-child {
	margin-top: 0;
}

.wec-single-content__body > :last-child {
	margin-bottom: 0;
}

.wec-single-signup {
	margin-top: 28px;
	padding: clamp(24px, 4vw, 42px);
}

.wec-single-signup h2,
.wec-single-card h2 {
	color: var(--e-global-color-text, var(--theme-heading-color, #19283a));
	font-size: clamp(24px, 3vw, 34px);
	letter-spacing: 0;
	line-height: 1.1;
	margin: 0 0 18px;
}

.wec-single-sidebar {
	position: sticky;
	top: 110px;
}

.wec-single-card {
	padding: 24px;
}

.wec-single-card dl {
	display: grid;
	gap: 14px;
	margin: 0;
}

.wec-single-card dl > div {
	border-top: 1px solid var(--theme-palette-color-5, #e4e7eb);
	display: grid;
	gap: 4px;
	padding-top: 14px;
}

.wec-single-card dl > div:first-child {
	border-top: 0;
	padding-top: 0;
}

.wec-single-card dt {
	color: var(--theme-palette-color-3, #004070);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.wec-single-card dd {
	color: var(--e-global-color-text, var(--theme-text-color, #19283a));
	font-weight: 800;
	margin: 0;
}

@media (max-width: 760px) {
	.wec-events__bar {
		align-items: stretch;
		flex-direction: column;
	}

	.wec-events__tabs {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
	}

	.wec-events__tab {
		padding: 0 10px;
	}

	.wec-list-card__button {
		grid-template-columns: 58px minmax(0, 1fr);
		gap: 14px;
	}

	.wec-date-badge {
		min-height: 58px;
	}

	.wec-date-badge span {
		font-size: 24px;
	}

	.wec-list-card__action {
		grid-column: 2;
		justify-self: start;
	}

	.wec-calendar__grid {
		display: block;
	}

	.wec-calendar__weekday {
		display: none;
	}

	.wec-calendar__day {
		border-right: 0;
		min-height: auto;
		padding: 14px;
	}

	.wec-calendar__day.is-other-month:empty {
		display: none;
	}

	.wec-calendar__events {
		margin-top: 10px;
	}

	.wec-modal-event {
		padding: 24px;
	}

	.wec-modal-event h2 {
		margin-right: 42px;
	}

	.wec-modal-event__facts {
		grid-template-columns: 1fr;
	}

	.wec-single {
		padding: 72px 0 140px;
	}

	.wec-single-hero,
	.wec-single-layout {
		grid-template-columns: 1fr;
	}

	.wec-single-hero {
		padding: 28px;
	}

	.wec-single-hero__aside {
		max-width: 280px;
	}

	.wec-single-sidebar {
		position: static;
	}
}
