@charset "utf-8";

/* HERO */
.hero {
	display: grid;
	overflow: hidden;
	position: relative;
	z-index: 1;
	}
.hero-holder,
.hero-media {
	grid-area: 1 / 1;
	position: relative;
	}
.hero-media {
	z-index: 2;
	}
.hero-media::after {
	background: linear-gradient(to right, rgba(var(--background-rgb), 0.9) 20%, rgba(var(--background-rgb), 0.65) 70%);
	content: '';
	inset: 0;
	position: absolute;
	z-index: 2;
	}
.hero-media::before {
	background-color: var(--hue-light);
	bottom: 0;
	content: '';
	height: 9px;
	left: 0;
	mask-image: url('../../assets/images/arch.webp');
	mask-position: bottom center;
	mask-repeat: repeat-x;
	position: absolute;
	width: 100%;
	z-index: 4;
	}
.hero-picture,
.hero-picture > *,
.hero-video,
.hero-video > video {
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	width: 100%;
	z-index: 1;
	}
.hero-holder {
	align-items: center;
	display: flex;
	padding-inline: var(--margin-pad);
	z-index: 6;
	}
.hero-content {
	margin-block: var(--margin-normal);
	margin-inline: auto;
	max-width: 80rem;
	width: 100%;
	z-index: 4;
	}
.hero-pod {
	max-width: 40rem;
	}
.not-home .hero-header-sub,
.hero-header {
	color: var(--color-stress);
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-bold);
	margin-bottom: var(--margin-small);
	}
.not-home .hero-header,
.hero-header-sub {
	color: var(--color-header);
	font-size: var(--font-size-8xl);
	font-weight: var(--font-weight-heavy);
	line-height: var(--line-height-none);
	}
.hero-intro {
	font-size: var(--font-size-sm);
	line-height: var(--line-height-normal);
	margin-block: var(--gap);
	}
.hero-buttons.buttons-group {
	justify-content: center;
	margin: var(--gap) 0 0;
	}
@media (min-width: 30em) {
	.hero-media::after {
		background: linear-gradient(to right, rgba(var(--background-rgb), 0.9) 20%, rgba(var(--background-rgb), 0.25) 70%);
		content: '';
		inset: 0;
		position: absolute;
		z-index: 2;
		}
}

/* LISTS EVENTS */
.hero-events-list {
	--width: 4rem;
	display: grid;
	gap: var(--gap);
	margin-top: var(--margin-gap);
	}
.hero-events-list-item {
	align-items: flex-start;
	display: grid;
	gap: var(--gap);
	grid-template-columns: var(--width) 1fr;
	}
.hero-events-list-date {
	border: 1px solid var(--background-trim);
	border-radius: var(--radius);
	color: var(--color);
	line-height: var(--line-height-none);
	padding: var(--space-5) 0;
	text-align: center;
	text-transform: uppercase;
	width: var(--width);
	}
.hero-events-list-date-month {
	color: var(--color-important);
	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-medium);
	padding: var(--space-5) var(--space-5) 0;
	}
.hero-events-list-date-day {
	font-size: var(--font-size-md);
	font-weight: var(--font-weight-heavy);
	padding: var(--space-5);
	}
.hero-events-list-title {
	font-size: var(--text-body);
	font-weight: var(--font-weight-heavy);
	line-height: var(--line-height-normal);
	padding-top: var(--space-5);
	}
.hero-events-list-details {
	color: var(--color-dimmed);
	font-size: var(--font-size-xs);
	line-height: var(--line-height-snug);
	}
@media (max-width: 39.99em) {
	.hero-events-list {
		margin-bottom: var(--margin-gap);
		}
}
