.core-home {
	--core-home-gap: 10px;
	--core-home-radius: 10px;
	--core-home-soft: #f1f1f1;
	--core-home-ink: #111;
	--core-home-accent: #e83d37;
	box-sizing: border-box;
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw !important;
	margin-left: -50vw;
	margin-right: -50vw;
	padding: 0 10px;
	background: var(--core-home-soft);
	font-family: "Inter Tight", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	color: var(--core-home-ink);
}
.core-home *, .core-home *::before, .core-home *::after { box-sizing: inherit; }

@media (min-width: 901px) {
	body.core-home-page {
		overflow-y: hidden !important;
	}
	body.core-home-page #main,
	html.avada-is-100-percent-template body.core-home-page #main.width-100 {
		min-height: 0 !important;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	body.core-home-page #main > .fusion-row {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
	}
}
.core-home-stage {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(390px, 470px);
	gap: var(--core-home-gap);
	height: var(--core-home-stage-height, calc(100dvh - 180px));
	min-height: 0;
}
.core-home-hero,
.core-home-side,
.core-home-panel { min-width: 0; }
.core-home-hero {
	position: relative;
	min-height: 0;
	border-radius: var(--core-home-radius);
	overflow: hidden;
	background: #111;
	isolation: isolate;
}
.core-home-hero-media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: #111 var(--core-home-poster, none) center / cover no-repeat;
}
.core-home-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
	user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
}
.core-home-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0,0,0,.025) 0%, rgba(0,0,0,.075) 50%, rgba(0,0,0,.46) 100%),
		linear-gradient(118deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.018) 30%, rgba(255,255,255,0) 52%);
	box-shadow: inset 0 0 130px rgba(0,0,0,.055);
	pointer-events: none;
}
.core-home-video-guard {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: transparent;
	pointer-events: auto;
	user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
}
.core-home-claim {
	position: absolute;
	left: clamp(30px, 3.8vw, 74px);
	right: clamp(30px, 20vw, 300px);
	bottom: clamp(30px, 5vh, 72px);
	z-index: 2;
}
.core-home-claim h1 {
	max-width: 980px;
	margin: 0;
	color: #fff;
	font-size: clamp(38px, 3.05vw, 62px);
	font-weight: 400 !important;
	font-style: normal;
	font-variant: normal;
	letter-spacing: -.025em;
	line-height: 1.03;
	text-transform: none !important;
	text-wrap: balance;
	text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.core-home-side {
	display: flex;
	min-height: 0;
	flex-direction: column;
	gap: var(--core-home-gap);
}
.core-home-panel {
	display: flex;
	min-height: 0;
	flex-direction: column;
	padding: 18px 18px 18px 20px;
	border-radius: var(--core-home-radius);
	background: #fff;
	overflow: hidden;
}
.core-home-news-panel { flex: 1 1 auto; }
.core-home-events-panel { flex: 0 0 auto; max-height: 48%; }
.core-home-panel-header {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 24px;
	margin-bottom: 16px;
}
.core-home-panel-header h2 {
	margin: 0;
	font-family: "Roboto Mono", monospace;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: rgba(0,0,0,.64);
}
.core-home-panel-header > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 22px;
	padding: 2px 10px;
	border: 1px solid rgba(0,0,0,.16);
	border-radius: 999px;
	color: #111 !important;
	font-family: "Roboto Mono", monospace;
	font-size: 10.5px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: .1em;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: color .16s ease, background .16s ease, border-color .16s ease;
}
.core-home-panel-header > a:hover,
.core-home-panel-header > a:focus-visible {
	border-color: var(--core-home-accent);
	background: var(--core-home-accent);
	color: #fff !important;
	outline: none;
}
.core-home-news-list,
.core-home-events-list {
	display: flex;
	min-height: 0;
	flex-direction: column;
	gap: 10px;
}
.core-home-news-list { flex: 1 1 auto; overflow: hidden; }
.core-home-events-list { overflow: auto; scrollbar-width: thin; }
.core-home-news-item {
	flex: 1 1 0;
	min-height: 72px;
	max-height: 108px;
	overflow: hidden;
}
.core-home-news-item[hidden] { display: none !important; }
.core-home-news-item > a,
.core-home-event-item > a {
	display: grid;
	align-items: center;
	width: 100%;
	height: 100%;
	color: inherit !important;
	text-decoration: none !important;
}
.core-home-news-item > a {
	grid-template-columns: clamp(100px, 25%, 132px) minmax(0,1fr);
	gap: 14px;
}
.core-home-news-image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 72px;
	border-radius: 8px;
	background: #ececec;
	overflow: hidden;
}
.core-home-news-image img,
.core-home-image-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.core-home-image-placeholder { background: linear-gradient(135deg,#ddd,#f2f2f2); }
.core-home-item-copy { min-width: 0; }
.core-home-item-copy > strong {
	display: -webkit-box;
	margin: 0;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	font-size: 15.5px;
	font-weight: 600;
	line-height: 1.22;
	letter-spacing: -.005em;
	transition: color .18s ease;
}
.core-home-news-item time,
.core-home-event-place {
	display: block;
	margin-top: 7px;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.15;
	color: rgba(0,0,0,.72);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.core-home-news-item a:hover strong,
.core-home-news-item a:focus-visible strong,
.core-home-event-item a:hover .core-home-item-copy > strong,
.core-home-event-item a:focus-visible .core-home-item-copy > strong { color: var(--core-home-accent); }
.core-home-event-item { flex: 0 0 52px; min-height: 52px; }
.core-home-event-item > a {
	grid-template-columns: 48px minmax(0,1fr);
	gap: 13px;
}
.core-home-calendar {
	display: flex;
	width: 48px;
	height: 52px;
	flex-direction: column;
	border: 1px solid rgba(0,0,0,.12);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	text-align: center;
}
.core-home-calendar strong {
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}
.core-home-calendar span {
	display: flex;
	height: 19px;
	align-items: center;
	justify-content: center;
	background: color-mix(in srgb, var(--core-home-accent) 13%, #fff);
	color: var(--core-home-accent);
	font-family: "Roboto Mono", monospace;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .08em;
}
.core-home-event-item .core-home-item-copy > strong {
	display: block;
	-webkit-line-clamp: unset;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.core-home-event-group { font-weight: 400; }
.core-home-program-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-left: 6px;
	border-radius: 50%;
	background: var(--core-home-program-color, transparent);
	vertical-align: .08em;
}
.core-home-event-place b { font-weight: 400; color: rgba(0,0,0,.4); }
.core-home-program-legend {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 14px;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(0,0,0,.08);
	overflow-x: auto;
	font-size: 11px;
	font-weight: 500;
	white-space: nowrap;
	scrollbar-width: none;
}
.core-home-program-legend::-webkit-scrollbar { display:none; }
.core-home-program-legend span { display: inline-flex; align-items: center; gap: 6px; }
.core-home-program-legend i {
	display: block;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--core-home-program-color, #999);
}
.core-home-empty { margin: 0; font-size: 14px; color: rgba(0,0,0,.65); }

@media (max-width: 1180px) {
	.core-home-stage { grid-template-columns: minmax(0, 1fr) minmax(350px, 405px); }
	.core-home-panel { padding-right: 16px; padding-left: 16px; }
	.core-home-panel-header h2 { font-size: 16px; }
	.core-home-item-copy > strong { font-size: 14.5px; }
}

@media (max-width: 900px) {
	.core-home { padding: 0 10px; }
	.core-home-stage {
		display: flex;
		height: auto !important;
		min-height: 0;
		flex-direction: column;
	}
	.core-home-hero { min-height: 56svh; aspect-ratio: 16 / 10; }
	.core-home-claim { left: 24px; right: 24px; bottom: 24px; }
	.core-home-claim h1 { font-size: clamp(32px, 7.8vw, 48px); }
	.core-home-side { gap: 10px; }
	.core-home-news-panel,
	.core-home-events-panel { flex: none; max-height: none; }
	.core-home-news-list,
	.core-home-events-list { overflow: visible; }
	.core-home-news-item { flex: none; height: 82px; max-height: 82px; }
	.core-home-news-item:nth-child(n+6) { display: none; }
	.core-home-event-item { height: 56px; flex-basis: 56px; }
}

@media (prefers-reduced-motion: reduce) {
	.core-home-video { display: none; }
	.core-home-panel-header > a,
	.core-home-item-copy > strong { transition: none; }
}
