/* Agenda algemeen */

.eyec-agenda,
.eyec-agenda * {
	box-sizing: border-box;
}

.eyec-agenda-card {
	display: flex;
	width: 100%;
	flex-direction: column;
	color: inherit;
}

.eyec-agenda-card-image-link,
.eyec-agenda-card-title-link {
	display: block;
	width: 100%;
	color: inherit;
	text-decoration: none !important;
}

.eyec-agenda-card-image-link:hover,
.eyec-agenda-card-image-link:focus,
.eyec-agenda-card-image-link:active,
.eyec-agenda-card-title-link:hover,
.eyec-agenda-card-title-link:focus,
.eyec-agenda-card-title-link:active {
	color: inherit;
	text-decoration: none !important;
}


/* Afbeelding */

.eyec-agenda-card-image {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 20px;
}

.eyec-agenda-card-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.eyec-agenda-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.4) 100%
	);
	pointer-events: none;
}


/* Content */

.eyec-agenda-card-content {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.eyec-agenda-card-title,
.eyec-agenda-card-title-link:hover .eyec-agenda-card-title,
.eyec-agenda-card-title-link:focus .eyec-agenda-card-title {
	text-decoration: none !important;
}


/* Highlighted events */

.eyec-agenda-highlighted {
	display: flex;
	width: 100%;
	gap: 32px;
	align-items: flex-start;
}

.eyec-agenda-card-highlighted {
	flex: 0 0 calc((100% - 64px) / 3);
	width: calc((100% - 64px) / 3);
	max-width: 741px;
	gap: 32px;
}

.eyec-agenda-card-highlighted .eyec-agenda-card-image {
	width: 100%;
	aspect-ratio: 741 / 1316;
}

.eyec-agenda-card-highlighted .eyec-agenda-card-content {
	gap: 16px;
}

.eyec-agenda-card-highlighted .eyec-agenda-card-title {
	margin: 0;
	color: #E2D6E9;
	text-align: center;
	font-family: "Neuething Sans";
	font-size: 42px;
	font-style: normal;
	font-weight: 600;
	line-height: 125%;
	text-transform: uppercase;
}

.eyec-agenda-card-highlighted .eyec-agenda-card-subtitle {
	margin: 0;
	color: var(--Oranje, #FF5F31);
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 175%;
	text-transform: uppercase;
}

.eyec-agenda-card-highlighted .btn {
	display: flex;
	width: fit-content;
	padding: 12px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border: 1px solid #E2D6E9;
	background: transparent;
	color: #E2D6E9;
	text-decoration: none !important;
}

.eyec-agenda-card-highlighted .btn:hover {
	background-color: #E2D6E9;
	color: #FF5F31;
}


/* Highlighted hover */

.eyec-agenda-card-highlighted .eyec-agenda-card-img {
	transition: transform 0.3s ease;
}

.eyec-agenda-card-highlighted .eyec-agenda-card-image-link:hover .eyec-agenda-card-img {
	transform: scale(1.02);
}


/* Recurring events */

.eyec-agenda-recurring {
	display: flex;
	width: 100%;
	gap: 32px;
	align-items: flex-start;
}

.eyec-agenda-card-recurring {
	flex: 0 0 calc((100% - 96px) / 4);
	width: calc((100% - 96px) / 4);
	max-width: 541px;
	gap: 32px;
}

.eyec-agenda-card-recurring .eyec-agenda-card-image {
	width: 100%;
	aspect-ratio: 541 / 768;
}

.eyec-agenda-card-recurring .eyec-agenda-card-content {
	gap: 16px;
}

.eyec-agenda-card-recurring .eyec-agenda-card-title {
	margin: 0;
	color: #E2D6E9;
	text-align: center;
	font-family: "Neuething Sans";
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: 125%;
	text-transform: uppercase;
}

.eyec-agenda-card-recurring .eyec-agenda-card-subtitle,
.eyec-agenda-card-recurring .eyec-agenda-card-undertext {
	margin: 0;
	color: var(--Oranje, #FF5F31);
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	text-transform: uppercase;
	line-height: 175%;
}


/* Recurring hover */

.eyec-agenda-card-recurring .eyec-agenda-card-img {
	transition: transform 0.3s ease;
}

.eyec-agenda-card-recurring .eyec-agenda-card-image-link:hover .eyec-agenda-card-img {
	transform: scale(1.02);
}


/* Tablet */

@media only screen and (max-width: 1024px) {

	.eyec-agenda-highlighted,
	.eyec-agenda-recurring {
		gap: 20px;
	}

	/* Highlighted blijft 3 kolommen */
	.eyec-agenda-card-highlighted {
		flex: 0 0 calc((100% - 40px) / 3);
		width: calc((100% - 40px) / 3);
		gap: 24px;
	}

	/* Recurring blijft 4 kolommen */
	.eyec-agenda-card-recurring {
		flex: 0 0 calc((100% - 60px) / 4);
		width: calc((100% - 60px) / 4);
		gap: 24px;
	}

	.eyec-agenda-card-highlighted .eyec-agenda-card-content {
		gap: 20px;
	}

	.eyec-agenda-card-highlighted .eyec-agenda-card-title {
		font-size: 36px;
	}

	.eyec-agenda-card-highlighted .eyec-agenda-card-subtitle {
		font-size: 20px;
		line-height: 150%;
	}

	.eyec-agenda-card-highlighted .btn {
		padding: 18px;
	}

	.eyec-agenda-card-recurring .eyec-agenda-card-title {
		font-size: 26px;
	}

	.eyec-agenda-card-recurring .eyec-agenda-card-subtitle,
	.eyec-agenda-card-recurring .eyec-agenda-card-undertext {
		font-size: 18px;
		line-height: 150%;
	}
}


/* Mobiel */

@media only screen and (max-width: 767px) {

	.eyec-agenda-highlighted,
	.eyec-agenda-recurring {
		flex-direction: column;
		gap: 32px;
	}

	.eyec-agenda-card-highlighted,
	.eyec-agenda-card-recurring {
		flex: 0 0 100%;
		width: 100%;
		max-width: 100%;
		gap: 20px;
	}

	.eyec-agenda-card-highlighted .eyec-agenda-card-content {
		gap: 16px;
	}

	.eyec-agenda-card-highlighted .eyec-agenda-card-title {
		font-size: 32px;
	}

	.eyec-agenda-card-highlighted .eyec-agenda-card-subtitle {
		font-size: 18px;
		line-height: 150%;
	}

	.eyec-agenda-card-highlighted .btn {
		padding: 16px 20px;
	}

	.eyec-agenda-card-recurring .eyec-agenda-card-title {
		font-size: 28px;
	}

	.eyec-agenda-card-recurring .eyec-agenda-card-subtitle,
	.eyec-agenda-card-recurring .eyec-agenda-card-undertext {
		font-size: 18px;
		line-height: 150%;
	}
}