.event-cards {
	font-family: "Avenir Next", Sans-serif;
	display: flex;
	gap: 20px;
	justify-content: center;
}

.event-cards .event-card {
	background: #FFFFFF;
	border: 1px solid #CCCECF;
	box-shadow: 0px 10px 20px rgba(83, 84, 84, 0.11);
	border-radius: 10px;
	overflow: hidden;
	width: 25%;
}

.event-cards .event-card-img {
	width: 100%;
	height: 198px;
}

.event-cards .event-card-img a {
	width: 100%;
	height: 100%;
	display: block;
}

.event-cards .event-card-img a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.event-cards .event-card-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: calc(100% - 198px);
	padding: 16px;
}

.event-cards .event-card-content p {
	font-family: "Avenir Next", sans-serif;
	font-style: normal;
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
	color: #141414;
	margin: 0;
}

.event-cards .event-card-title {
	margin: 0 0 16px 0;
	padding: 0;
}

.event-cards .event-card-title a {
	font-family: "Avenir Next", sans-serif;
	font-weight: 600;
	font-size: 24px;
	line-height: 30px;
	letter-spacing: -0.5px;
	color: #005F66;
}

.event-cards .event-card .read_more-btn {
	display: block;
	margin: 10px 0 8px 0;
}

.event-cards .event-card .read_more-btn span {
	font-family: "Avenir Next", sans-serif;
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	line-height: 22px;
	color: #005F66;
	margin-right: 5px;
}

.event-cards .event-card .read_more-btn span:hover {
	color: #00A7A7;
}

.event-cards .event-card .read_more-btn span:hover svg path {
	fill: #00A7A7;
}

@media screen and (max-width: 1024px) {
	.event-cards .event-card {
		display: grid !important;
		grid-template-rows: 100px 1fr;
	}
	.event-cards .event-card-img {
		height: 100px !important;
	}
	.event-cards .event-card-content {
		display: grid !important;
		height: inherit !important;
	}
	.event-cards .event-card-content p {
		font-size: 14px !important;
		line-height: 24px !important;
	}
	.event-cards .event-card .read_more-btn {
		display: flex !important;
		align-items: center;
		gap: 10px;
		margin-bottom: 0 !important;
	}
	.event-cards .event-card .read_more-btn span {
		font-size: 14px !important;
		line-height: 24px !important;
	}
	.event-cards .event-card-title {
		font-size: 14px;
		line-height: 24px;
	}
	.event-cards .event-card-title a {
		font-size: 14px !important;
		line-height: 24px !important;
	}
	.event-cards .event-card-meta {
		display: grid !important;
		grid-template-rows: auto 1fr 1fr;
	}
}

@media screen and (max-width: 767px) {
	.event-cards {
		flex-wrap: wrap !important;
	}
	.event-cards .event-card {
		width: 100% !important;
		grid-template-rows: 200px 1fr;
	}
	.event-cards .event-card-img {
		height: 200px !important;
	}
}
