.event-cards-container-a74d5b4e {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	padding: 60px 0;
}

.event-card-a74d5b4e {
	border-radius: 24px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.event-card-a74d5b4e:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.event-card-image-a74d5b4e {
	height: 220px;
	position: relative;
	width: 100%;
	/* Background gradient set dynamically per item fallback */
}

.event-card-image-inner-a74d5b4e {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.event-card-image-inner-a74d5b4e img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.event-card-badges-a74d5b4e {
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	display: flex;
	justify-content: space-between;
	z-index: 10;
}

.event-badge-category-a74d5b4e {
	background-color: #FFC107;
	color: #333;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
}

.event-badge-date-a74d5b4e {
	background-color: #ffffff;
	color: #333;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
}

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

.event-location-a74d5b4e {
	color: #757575;
	font-size: 13px;
	margin-bottom: 8px;
}

.event-name-a74d5b4e {
	color: #1a237e;
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 20px 0;
	line-height: 1.4;
}

.event-card-footer-a74d5b4e {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
}

.event-price-a74d5b4e {
	color: #FFC107;
	font-size: 16px;
	font-weight: 600;
}

.event-button-a74d5b4e {
	background-color: #1a237e;
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.event-button-a74d5b4e:hover {
	background-color: #283593;
	color: #ffffff;
}

@media (max-width: 1024px) {
	.event-cards-container-a74d5b4e {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.event-cards-container-a74d5b4e {
		grid-template-columns: 1fr;
		padding: 40px 0;
	}
}