.eec-program-events {
	--eec-program-red: #ef233c;
	--eec-program-border: #dedede;
	--eec-program-muted: #747474;
	--eec-program-text: #151515;
	color: var(--eec-program-text);
	font-family: inherit;
}

.eec-program-group {
	margin: 0 0 64px;
	position: relative;
}

.eec-program-heading {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: center;
	margin: 0 0 28px;
	text-align: center;
}

.eec-program-heading h2 {
	font-size: 34px;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1;
	margin: 0;
	text-transform: uppercase;
}

.eec-program-heading-icon {
	background: var(--eec-program-red);
	border-radius: 4px;
	display: inline-block;
	height: 30px;
	position: relative;
	width: 30px;
}

.eec-program-heading-icon::before {
	background: #ffffff;
	border-radius: 2px;
	content: "";
	height: 7px;
	left: 5px;
	position: absolute;
	right: 5px;
	top: 7px;
}

.eec-program-heading-icon::after {
	background: #ffffff;
	border-radius: 50%;
	box-shadow: 8px 0 0 #ffffff, 16px 0 0 #ffffff;
	content: "";
	height: 4px;
	left: 5px;
	position: absolute;
	top: 18px;
	width: 4px;
}

.eec-program-events-row {
	display: flex;
	flex-wrap: nowrap;
	margin: 0 -10px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.eec-program-events-row::-webkit-scrollbar {
	display: none;
}

.eec-program-card {
	box-sizing: border-box;
	flex: 0 0 25%;
	padding: 0 10px;
	scroll-snap-align: start;
}

.eec-count-1 .eec-program-card {
	flex-basis: 100%;
}

.eec-count-2 .eec-program-card {
	flex-basis: 50%;
}

.eec-count-3 .eec-program-card {
	flex-basis: 33.333%;
}

.eec-count-4 .eec-program-card,
.eec-count-more .eec-program-card {
	flex-basis: 25%;
}

.eec-program-card-link {
	background: #ffffff;
	border: 1px solid var(--eec-program-border);
	border-radius: 8px;
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
	transition: border-color 160ms ease, transform 160ms ease;
}

.eec-program-card-link:hover,
.eec-program-card-link:focus-visible {
	border-color: var(--eec-program-red);
	color: inherit;
	outline: none;
	transform: translateY(-2px);
}

.eec-program-card-image {
	aspect-ratio: 16 / 10;
	background: #f1f1f1;
	overflow: hidden;
	width: 100%;
}

.eec-program-card-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.eec-program-card-content {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	padding: 18px;
}

.eec-program-card-title {
	font-size: 27px !important;
	font-weight: 850;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0;
	text-transform: uppercase;
}

.eec-program-card-excerpt {
	color: #303030;
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
}

.eec-program-card-meta {
	color: var(--eec-program-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	font-weight: 800;
	gap: 8px 14px;
	line-height: 1.25;
	margin-top: auto;
	text-transform: uppercase;
}

.eec-program-card-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.eec-program-card-category {
	border: 1px solid var(--eec-program-border);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	padding: 7px 10px;
	text-transform: uppercase;
}

.eec-program-arrows {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 22px;
}

.eec-program-arrow {
	align-items: center;
	aspect-ratio: 1;
	background: var(--eec-program-red);
	border: 1px solid var(--eec-program-red);
	border-radius: 50%;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-size: 18px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	width: 42px;
}

.eec-program-arrow:hover,
.eec-program-arrow:focus-visible {
	background: #151515;
	border-color: #151515;
	outline: none;
}

.eec-program-view-list .eec-program-events-row {
	flex-direction: column;
	gap: 18px;
	margin: 0;
	overflow: visible;
	scroll-snap-type: none;
}

.eec-program-view-list .eec-count-more .eec-program-events-row {
	flex-direction: row;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
}

.eec-program-view-list .eec-program-card {
	flex-basis: auto;
	padding: 0;
	width: 100%;
}

.eec-program-view-list .eec-count-more .eec-program-card {
	flex: 0 0 100%;
}

.eec-program-view-list .eec-program-card-link {
	display: grid;
	grid-template-columns: minmax(180px, 32%) 1fr;
}

.eec-program-view-list .eec-program-card-image {
	aspect-ratio: auto;
	height: 100%;
	min-height: 190px;
}

.eec-program-empty {
	color: var(--eec-program-muted);
	font-size: 16px;
	margin: 0;
	text-align: center;
}

@media (max-width: 900px) {
	.eec-count-3 .eec-program-card,
	.eec-count-4 .eec-program-card,
	.eec-count-more .eec-program-card {
		flex-basis: 50%;
	}
}

@media (max-width: 640px) {
	.eec-program-group {
		margin-bottom: 46px;
	}

	.eec-program-heading h2 {
		font-size: 26px;
	}

	.eec-program-events-row {
		flex-direction: column;
		gap: 18px;
		margin: 0;
		overflow: visible;
		scroll-snap-type: none;
	}

	.eec-count-more .eec-program-events-row {
		flex-direction: row;
		gap: 0;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
	}

	.eec-program-card,
	.eec-count-1 .eec-program-card,
	.eec-count-2 .eec-program-card,
	.eec-count-3 .eec-program-card,
	.eec-count-4 .eec-program-card,
	.eec-count-more .eec-program-card {
		flex-basis: auto;
		padding: 0;
		width: 100%;
	}

	.eec-count-more .eec-program-card {
		flex: 0 0 100%;
	}

	.eec-program-view-list .eec-program-card-link {
		display: flex;
	}

	.eec-program-view-list .eec-program-card-image {
		aspect-ratio: 16 / 10;
		min-height: 0;
	}
}
