@charset "utf-8";

/* HERO */
.hero {
	border-radius: var(--radius);
	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.8) 0, rgba(var(--background-rgb), 0) 50%);
	content: '';
	inset: 0;
	position: absolute;
	z-index: 2;
	}
.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 {
	background-color: rgba(var(--background-rgb), 0.85);
	border-radius: var(--radius);
	padding: var(--margin-block);
	max-width: 40rem;
	}
.not-home .hero-header-sub,
.hero-header {
	font-size: var(--font-size-lg);
	font-weight: var(--font-weight-bold);
	margin-bottom: var(--margin-small);
	}
.not-home .hero-header,
.hero-header-sub {
	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: var(--gap) auto;
	max-width: 37.5rem;
	}
.hero-buttons.buttons-group {
	justify-content: center;
	margin: var(--gap) 0 0;
	}
@media (min-width: 30em) {
	.hero-pod {
		background-color: rgba(var(--background-rgb), 0.95);
	}
	.hero-media::after {
		background: linear-gradient(to right, rgba(var(--background-rgb), 0.8) 0, rgba(var(--background-rgb), 0) 75%);
		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-light);
	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);
	}