.recurring-events {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(1, 1fr);
	grid-auto-flow: row;
	gap: 60px;
}
.event-item {
	background: var(--Linear, linear-gradient(56deg, rgba(159, 196, 242, 0.28) -6.68%, rgba(214, 231, 252, 0.44) 6.77%, rgba(255, 253, 253, 0.70) 93.19%));
	border: 1px solid #B9B9B9;
	border-radius: 11px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 15px;
	min-height: 460px;
}
.event-item .event-title {
	font-size: 28px;
    font-weight: 600;
    line-height: 130%;
    color: #112a52;
}
.event-dates {
	display: grid;
	gap: 5px;
}
.event-date {
	font-size: 23px;
	font-weight: 400;
	line-height: 130%;
	color: #112a52;
}

.event-button a {
	font-size: 24px;
	font-weight: 400;
	line-height: 100%;
	color: #cc4e0b;
	background-color: #ffffff;
	border: 1px solid #C8C8C8;
	padding: 15px 60px;
	max-width: 100%;
	transition: all 0.3s ease;
	display: inline-block;
}
.event-button a:hover {
	color: #fff;
	background-color: #cc4e0b;
}

@media (max-width: 1024px) {
	html .recurring-events {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.event-item {
		min-height: 340px;
	}
	.event-button a {
		padding: 15px 30px;
	}
}