.event-cards-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	width: 100%;
}

.event-card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	overflow: hidden;
	height: 100%;
}

.event-card-image {
	height: 250px;
	position: relative;
	width: 100%;
}

.event-card-image img {
	width: 100%;
	height: 100%;
	object-fit: fill;
	pointer-events: none;
}

.event-card-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 24px;
	flex-grow: 1;
}

.event-card-main {
	display: flex;
	flex-direction: column;
}

.event-card-header {
	display: flex;
	gap: 8px;
	align-items: flex-start;
}

.event-card-date-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 8px;
	color: #3a2e7e;
	min-width: 62px;
	flex-shrink: 0;
}

.event-card-date-badge .day-name {
	font-family: 'Figtree', sans-serif;
	font-weight: 600;
	font-size: 22px;
	line-height: 28px;
	text-transform: uppercase;
	margin: 0;
}

.event-card-date-badge .day-num {
	font-family: 'Figtree', sans-serif;
	font-weight: 400;
	font-size: 22px;
	line-height: 28px;
	margin: 0;
}

.event-card-title-wrap {
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: center;
	flex-grow: 1;
}

.event-card-title {
	font-family: 'Filson Soft', sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 28px;
	color: #000000;
	margin: 0;
}

.event-card-datetime {
	font-family: 'Figtree', sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #000000;
}

.event-card-location {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-top: 8px;
	border-top: 1px solid #efefef;
	margin-top: 8px;
}

.event-card-loc-icon {
	background: #54519e;
	border-radius: 100px;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.event-card-loc-icon svg {
	width: 12px;
	height: 12px;
	stroke: #ffffff;
	fill: none;
}

.event-card-loc-text {
	font-family: 'Figtree', sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #000000;
}

.event-card-desc {
	font-family: 'Figtree', sans-serif;
	font-size: 18px;
	line-height: 1.5;
	color: #000000;
	margin-top: 8px;
}

.event-card-action {
	padding-top: 8px;
	margin-top: auto;
}

.event-card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	font-family: 'Figtree', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 16px;
	color: #3a2e7e;
	text-decoration: none;
	transition: color 0.2s ease;
}

.event-card-btn svg {
	width: 24px;
	height: 24px;
}

.event-card-btn:hover {
	color: #54519e;
}

@media screen and (max-width:1024px) {
	.event-card-image {
		height: 300px;
	}
}

@media screen and (max-width:767px) {
	.event-card-image {
		height: 175px;
	}
}