.festival {
	min-height: calc(var(--window-height) - var(--header-opened));
	margin: 0 calc(-1 * var(--three-units)) calc(-1 * var(--two-units));
	position: relative;
}

.event + .festival {
	min-height: 0;
	margin-top: calc(var(--two-units));
	border-top: 1px solid;
}

.festival > .content {
	margin: 0;
	padding: var(--two-units);
}

.festival > .content > .content_full {
	padding-top: var(--two-units);
}

.festival > .content > .content_full > .content_summary {
	max-width: none;
	font-size: 2rem;
}

.festival_events {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: var(--two-units) var(--unit) 0;
}

.festival_events:empty {
	display: none;
}

.festival_events::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: var(--color);
}

.festival_date {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 100%;
	border-top: 1px solid;
}

.festival_day {
	width: 33.333%;
	margin-bottom: calc(var(--unit) * -1);
	padding: calc(var(--unit) - 0.1em) 16.666% var(--unit) 0;
	/* position: sticky; */
	/* top: var(--header-opened); */
	font-size: 2rem;
	line-height: 1;
	text-transform: uppercase;
}

.festival_day:empty {
	display: none;
}

.festival_event {
	width: 66.666%;
	padding: var(--unit) 0;
	position: relative;
}

.festival_event:hover {
	color: var(--accent);
}

.festival_event .event {
	margin: 0;
}

.festival_time {
	max-width: 4.4ch;
	overflow: hidden;
	position: absolute;
	right: calc(100% + var(--unit));
	top: calc(var(--unit) - 0.1em);
	font-size: 2rem;
	line-height: 1;
	pointer-events: none;
}

.festival_event + .festival_event {
	border-top: 1px solid var(--color);
}

.festival_event .event_illustration {
	width: 50%;
	height: calc(2rem * 1.15 * 3 + 1rem * 1.125 - 0.2rem);
	padding-right: var(--unit);
}

.festival_event .event_image,
.festival_event .event_image img {
	height: 100%;
}

.festival_event .event_image--empty {
	background-color: black;
}

.festival_event .event_informations {
	flex-wrap: wrap;
	justify-content: space-between;
	width: 50%;
	margin-top: -0.4rem;
	overflow: hidden;
}

.festival_event .event_title,
.festival_event .event_subtitle {
	width: 100%;
	height: calc(2rem * 1.15);
	overflow: hidden;
	font-feature-settings: "case" 1;
	font-size: 2rem;
	line-height: 1.125;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.festival_event .event_address {
	display: block;
	max-width: 33.333%;
	position: absolute;
	bottom: -0.2rem;
	right: 0;
	text-align: right;
	text-transform: uppercase;
}

.festival_event .category {
	padding: 0;
	position: absolute;
	bottom: -0.2rem;
	border: none;
	font-size: inherit;
	line-height: 1.125;
}

.festival_event .category:hover {
	background-color: transparent;
	color: var(--accent);
}

.festival_event .event_illustration > .categories,
.festival_event .event_date,
.festival_event .event_year {
	display: none;
}

.festival_events > .accordion {
	width: 100%;
	margin-bottom: -1px;
}

@media (max-width: 1023px) {
	.festival {
		margin: 0 calc(-1 * var(--unit)) calc(-1 * var(--unit));
	}

	.festival > .content {
		padding: var(--two-units) var(--half-unit) var(--unit);
	}

	.festival_events {
		padding: var(--two-units) var(--half-unit) 0;
	}

	.festival_day {
		width: 100%;
		padding-right: 0;
		position: static;
	}

	.festival_event {
		width: 100%;
	}

	.festival_time {
		max-width: none;
		right: auto;
		left: 50%;
	}

	.festival_event--time .event_illustration {
		height: calc(2rem * 1.15 * 4 + 1rem * 1.125 - 0.2rem);
	}

	.festival_event--time .event_informations {
		padding-top: calc(2rem * 1.15);
	}
}

@media (max-width: 768px) {
	.festival > .content > .content_full > .content_summary {
		font-size: 1.5rem;
	}
}
