.elr-applications,
.elr-applications * {
	box-sizing: border-box;
}

.elr-applications {
	--elr-accent: #a88722;
	--elr-card-background: #f1f1ef;
	--elr-text: #1d1d1b;
	display: grid;
	gap: clamp(24px, 4vw, 56px);
	width: 100%;
}

.elr-application-group {
	display: grid;
	grid-template-columns: minmax(0, 1.8fr) minmax(280px, 1fr);
	gap: 12px;
	min-height: clamp(390px, 45vw, 590px);
}

.elr-application-feature {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 100%;
	overflow: hidden;
	border-radius: 5px;
	background-color: #34342f;
	background-image: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .78) 100%), var(--elr-application-image, linear-gradient(135deg, #595950, #262622));
	background-position: center;
	background-size: cover;
	color: #fff;
	text-decoration: none;
	isolation: isolate;
}

.elr-application-feature::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(0, 0, 0, 0);
	content: "";
	transition: background-color .3s ease;
}

.elr-application-feature:hover::before,
.elr-application-feature:focus-visible::before {
	background: rgba(0, 0, 0, .16);
}

.elr-application-feature-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: min(620px, 92%);
	padding: clamp(24px, 4vw, 52px);
}

.elr-application-eyebrow {
	margin-bottom: 7px;
	color: #d6b94c;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.elr-application-title {
	font-size: clamp(28px, 4vw, 52px);
	font-weight: 600;
	line-height: 1.05;
}

.elr-application-description {
	margin-top: 12px;
	font-size: clamp(14px, 1.4vw, 17px);
	line-height: 1.55;
}

.elr-application-explore {
	margin-top: 18px;
	border-bottom: 1px solid currentColor;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.8;
}

.elr-application-children {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 0;
	max-height: clamp(390px, 45vw, 590px);
	overflow-y: auto;
	overscroll-behavior: contain;
	padding-right: 5px;
	scrollbar-color: var(--elr-accent) #e0e0dc;
	scrollbar-width: thin;
}

.elr-application-child {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: flex-start;
	min-height: 118px;
	padding: 22px 24px;
	border-left: 3px solid transparent;
	border-radius: 5px;
	background: var(--elr-card-background);
	color: var(--elr-text);
	text-decoration: none;
	transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.elr-application-child:hover,
.elr-application-child:focus-visible {
	border-left-color: var(--elr-accent);
	background: #e8e8e4;
	transform: translateX(-2px);
}

.elr-application-child-title {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.elr-application-child-description {
	display: -webkit-box;
	overflow: hidden;
	margin-top: 7px;
	font-size: 13px;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.elr-application-child-link {
	margin-top: auto;
	padding-top: 10px;
	color: var(--elr-accent);
	font-size: 12px;
	font-weight: 700;
}

.elr-application-child--single {
	justify-content: center;
}

.elr-applications-empty {
	padding: 18px;
	border: 1px dashed #c3c4c7;
	background: #f6f7f7;
}

.elr-application-filters,
.elr-application-scenes {
	box-sizing: border-box;
	width: 100%;
	max-width: 1440px;
	margin-right: auto;
	margin-left: auto;
}

.elr-application-filters,
.elr-application-filters *,
.elr-application-scenes,
.elr-application-scenes * {
	box-sizing: border-box;
}

.elr-application-filters {
	display: flex;
	align-items: center;
	gap: 7px;
	overflow-x: auto;
	padding: 5px 0 12px;
	scrollbar-width: thin;
}

.elr-application-filter {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 7px 14px;
	border: 1px solid #deded9;
	background: #fff;
	color: #252522;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}

.elr-application-filter:hover,
.elr-application-filter:focus-visible {
	border-color: #a88722;
	color: #806815;
}

.elr-application-filter.is-active {
	border-color: #a88722;
	background: #a88722;
	color: #fff;
}

.elr-application-scenes {
	display: grid;
	gap: clamp(18px, 2.5vw, 36px);
}

.elr-scene {
	position: relative;
	width: 100%;
	margin: 0;
}

.elr-scene-image-wrap {
	position: relative;
	width: 100%;
	min-height: 260px;
	background: #282823;
	line-height: 1.4;
}

.elr-scene-image-wrap::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	height: 45%;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .72));
	content: "";
	pointer-events: none;
}

.elr-scene-image {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}

.elr-scene-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 360px;
	padding: 30px;
	color: #fff;
	text-align: center;
}

.elr-scene-caption {
	position: absolute;
	right: clamp(22px, 4vw, 55px);
	bottom: clamp(22px, 4vw, 48px);
	left: clamp(22px, 4vw, 55px);
	z-index: 2;
	max-width: 620px;
	color: #fff;
	pointer-events: none;
}

.elr-scene-eyebrow {
	display: block;
	margin-bottom: 5px;
	color: #d6b94c;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.elr-scene-title {
	margin: 0;
	color: inherit;
	font-size: clamp(26px, 3.5vw, 48px);
	font-weight: 600;
	line-height: 1.08;
}

.elr-scene-subtitle {
	margin: 8px 0 0;
	color: inherit;
	font-size: clamp(13px, 1.3vw, 17px);
	line-height: 1.45;
}

.elr-hotspot {
	position: absolute;
	z-index: 4;
	width: 32px;
	height: 32px;
	transform: translate(-50%, -50%);
}

.elr-hotspot.is-open {
	z-index: 30;
}

.elr-hotspot-marker {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .95);
	border-radius: 50%;
	background: rgba(23, 23, 20, .64);
	box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
	cursor: pointer;
	transition: background-color .2s ease, transform .2s ease;
}

.elr-hotspot-marker::after {
	position: absolute;
	inset: -7px;
	border: 1px solid rgba(255, 255, 255, .38);
	border-radius: inherit;
	content: "";
	animation: elr-hotspot-pulse 2.3s ease-out infinite;
}

.elr-hotspot-marker:hover,
.elr-hotspot-marker:focus-visible,
.elr-hotspot.is-open .elr-hotspot-marker {
	background: #a88722;
	transform: scale(1.08);
}

.elr-hotspot-dot {
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #d8b92e;
}

.elr-hotspot.is-open .elr-hotspot-dot {
	background: #fff;
}

.elr-hotspot-tooltip {
	position: absolute;
	z-index: 31;
	width: min(310px, calc(100vw - 28px));
	padding: 21px 22px 20px;
	border: 1px solid rgba(168, 135, 34, .28);
	background: #fff;
	box-shadow: 0 14px 42px rgba(0, 0, 0, .22);
	color: #252522;
	font-size: 14px;
	line-height: 1.45;
	text-align: left;
}

.elr-hotspot-tooltip[hidden] {
	display: none;
}

.elr-hotspot-close {
	position: absolute;
	top: 7px;
	right: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #777;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.elr-hotspot-type {
	padding-right: 25px;
	color: #a88722;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.elr-hotspot-name {
	margin-top: 4px;
	padding-right: 20px;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
}

.elr-hotspot-description {
	margin-top: 9px;
	color: #5e5e59;
	font-size: 13px;
}

.elr-hotspot-link {
	display: inline-block;
	margin-top: 14px;
	border-bottom: 1px solid currentColor;
	color: #8f741d;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.8;
	text-decoration: none;
}

.elr-scenes-empty {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 24px;
	background: #f3f3f0;
	text-align: center;
}

@keyframes elr-hotspot-pulse {
	0% {
		opacity: .8;
		transform: scale(.82);
	}
	75%, 100% {
		opacity: 0;
		transform: scale(1.42);
	}
}

@media (max-width: 767px) {
	.elr-application-group {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.elr-application-feature {
		min-height: 430px;
	}

	.elr-application-children {
		flex-direction: row;
		max-height: none;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 0 0 9px;
		scroll-snap-type: x proximity;
	}

	.elr-application-child {
		flex-basis: min(82vw, 330px);
		scroll-snap-align: start;
	}

	.elr-scene-caption {
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.elr-hotspot-marker,
	.elr-hotspot {
		width: 36px;
		height: 36px;
	}
}

@media (max-width: 480px) {
	.elr-application-feature {
		min-height: 380px;
	}

	.elr-application-feature-content {
		padding: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.elr-application-feature::before,
	.elr-application-child,
	.elr-hotspot-marker {
		transition: none;
	}

	.elr-hotspot-marker::after {
		animation: none;
	}
}
