.lthm-hero {
	--lthm-accent: #35b3ff;
	--lthm-accent-rgb: 53, 179, 255;
	--lthm-base-color: #07182e;
	--lthm-badge-size: 0.8rem;
	--lthm-title-size: clamp(3rem, 5vw, 4.75rem);
	--lthm-subtitle-size: 1.05rem;
	--lthm-label-size: 0.85rem;
	--lthm-title-color: #ffffff;
	--lthm-title-accent-color: #35b3ff;
	--lthm-subtitle-color: #e1ebf5;
	--lthm-badge-color: #dbeeff;
	--lthm-label-color: #ffffff;
	--lthm-overlay-rgb: 7, 24, 46;
	--lthm-overlay-strong: 0.78;
	--lthm-overlay-soft: 0.59;
	--lthm-overlay-end: 0.67;
	--lthm-background-opacity: 0.52;
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 19px 0 19px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	background:
		radial-gradient(circle at center, rgba(59, 130, 246, 0.12) 0%, transparent 42%),
		linear-gradient(135deg, var(--lthm-base-color) 0%, #0a2240 52%, #08162a 100%);
	font-family: "Be Vietnam Pro", sans-serif;
}

.lthm-hero.has-background .lthm-hero__background-media {
	opacity: var(--lthm-background-opacity);
	transform: scale(1);
}

.lthm-hero__background,
.lthm-hero__glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.lthm-hero__background {
	z-index: 0;
}

.lthm-hero__background-media {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	filter: saturate(1.02) brightness(0.62);
	transform: scale(1.04);
	transition: opacity 0.52s ease, transform 0.82s cubic-bezier(0.25, 1, 0.5, 1), filter 0.52s ease;
	will-change: opacity, transform, filter;
}

.lthm-hero__background-media.is-transitioning {
	opacity: calc(var(--lthm-background-opacity) * 0.28) !important;
	filter: saturate(0.96) brightness(0.5);
	transform: scale(1.015);
}

.lthm-hero__background::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(var(--lthm-overlay-rgb), var(--lthm-overlay-strong)) 0%, rgba(var(--lthm-overlay-rgb), var(--lthm-overlay-soft)) 38%, rgba(var(--lthm-overlay-rgb), var(--lthm-overlay-end)) 100%),
		radial-gradient(circle at 72% 34%, rgba(var(--lthm-accent-rgb), 0.12), transparent 24%);
}

.lthm-hero__glow {
	top: 10%;
	left: 50%;
	width: 500px;
	height: 500px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(var(--lthm-accent-rgb), 0.16) 0%, transparent 60%);
	filter: blur(50px);
	z-index: 1;
}

.lthm-hero__container {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.lthm-hero__content {
	flex: 1.1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	max-width: 600px;
	gap: 1.5rem;
	text-align: left;
	transition: transform 0.32s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.32s cubic-bezier(0.25, 1, 0.5, 1);
	will-change: transform, opacity;
}

.lthm-hero__content.is-swapping {
	pointer-events: none;
}

.lthm-hero__badge,
.lthm-hero__subtitle,
.lthm-hero__actions {
	transition:
		opacity 0.42s ease,
		transform 0.52s cubic-bezier(0.22, 0.84, 0.18, 1),
		filter 0.42s ease,
		box-shadow 0.46s ease,
		letter-spacing 0.42s ease;
	will-change: opacity, transform, filter;
	transform-origin: left center;
}

.lthm-hero__title span {
	transition:
		opacity 0.46s ease,
		transform 0.58s cubic-bezier(0.22, 0.84, 0.18, 1),
		filter 0.46s ease,
		letter-spacing 0.44s ease;
	will-change: opacity, transform, filter;
	transform-origin: left center;
}

.lthm-hero__title span:nth-child(2) {
	transition-delay: 0.04s;
}

.lthm-hero__content[data-motion="out"] .lthm-hero__badge {
	opacity: 0;
	transform: translate3d(0, -10px, 0) scale(0.9);
	filter: blur(8px);
	letter-spacing: 0.08em;
}

.lthm-hero__content[data-motion="out"] .lthm-hero__title span {
	opacity: 0;
	transform: translate3d(0, 18px, 0) scale(0.92);
	filter: blur(10px);
	letter-spacing: 0.02em;
}

.lthm-hero__content[data-motion="out"] .lthm-hero__subtitle {
	opacity: 0;
	transform: translate3d(0, 14px, 0) scale(0.94);
	filter: blur(8px);
}

.lthm-hero__content[data-motion="out"] .lthm-hero__actions {
	opacity: 0;
	transform: translate3d(0, 12px, 0) scale(0.95);
	filter: blur(8px);
}

.lthm-hero__content[data-motion="in"] .lthm-hero__badge {
	box-shadow:
		0 10px 28px rgba(var(--lthm-accent-rgb), 0.14),
		inset 0 0 0 1px rgba(255, 255, 255, 0.04);
	animation: lthmTextZoomIn 0.52s cubic-bezier(0.2, 0.86, 0.2, 1) both;
}

.lthm-hero__content[data-motion="in"] .lthm-hero__title span {
	animation: lthmTitleZoomIn 0.62s cubic-bezier(0.18, 0.88, 0.2, 1) both;
}

.lthm-hero__content[data-motion="in"] .lthm-hero__title span:nth-child(2) {
	animation-delay: 0.05s;
}

.lthm-hero__content[data-motion="in"] .lthm-hero__subtitle {
	animation: lthmTextZoomIn 0.58s cubic-bezier(0.2, 0.86, 0.2, 1) both;
	animation-delay: 0.04s;
}

.lthm-hero__content[data-motion="in"] .lthm-hero__actions {
	animation: lthmTextZoomIn 0.62s cubic-bezier(0.2, 0.86, 0.2, 1) both;
	animation-delay: 0.08s;
}

.lthm-hero__content[data-motion="in"] .lthm-hero__title-accent {
	text-shadow: 0 0 24px rgba(var(--lthm-accent-rgb), 0.18);
}

@keyframes lthmTextZoomIn {
	0% {
		opacity: 0;
		transform: translate3d(0, 10px, 0) scale(0.92);
		filter: blur(10px);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
		filter: blur(0);
	}
}

@keyframes lthmTitleZoomIn {
	0% {
		opacity: 0;
		transform: translate3d(0, 18px, 0) scale(0.9);
		filter: blur(12px);
	}
	100% {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
		filter: blur(0);
	}
}

.lthm-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0.35rem 0.8rem;
	border: 1px solid rgba(var(--lthm-accent-rgb), 0.35);
	border-radius: 20px;
	background: rgba(var(--lthm-accent-rgb), 0.14);
	color: var(--lthm-badge-color);
	font-size: var(--lthm-badge-size);
	font-weight: 600;
}

.lthm-hero__title {
	margin: 0;
	font-size: var(--lthm-title-size);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.lthm-hero__title span {
	display: block;
	color: var(--lthm-title-color);
}

.lthm-hero__title-accent {
	background: linear-gradient(135deg, var(--lthm-title-color) 0%, var(--lthm-title-accent-color) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.lthm-hero__subtitle {
	margin: 0;
	color: var(--lthm-subtitle-color);
	font-size: var(--lthm-subtitle-size);
	line-height: 1.6;
	font-weight: 400;
}

.lthm-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 0.5rem;
}

.lthm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 2rem;
	border-radius: 12px;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lthm-btn:hover,
.lthm-btn:focus {
	text-decoration: none;
}

.lthm-btn--primary {
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: linear-gradient(180deg, rgba(var(--lthm-accent-rgb), 1) 0%, rgba(21, 111, 232, 1) 100%);
	color: #fff;
	box-shadow: 0 4px 15px rgba(var(--lthm-accent-rgb), 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.lthm-btn--primary:hover,
.lthm-btn--primary:focus {
	transform: translateY(-2px);
	color: #fff;
	box-shadow: 0 8px 20px rgba(var(--lthm-accent-rgb), 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.lthm-btn--secondary {
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(12px);
	color: rgba(240, 246, 252, 0.96);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lthm-btn--secondary:hover,
.lthm-btn--secondary:focus {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.09);
	border-color: rgba(255, 255, 255, 0.24);
	color: #fff;
	box-shadow: 0 8px 24px rgba(255, 255, 255, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.lthm-hero__visual {
	flex: 1.3;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lthm-accordion {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	max-width: 720px;
	padding: 0.5rem 0;
	contain: layout paint;
}

.lthm-hero .lthm-accordion__item {
	position: relative;
	width: 65px !important;
	height: 420px;
	flex-shrink: 0;
	overflow: hidden;
	border: 1px solid rgba(214, 239, 255, 0.18) !important;
	border-radius: 16px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
	cursor: pointer;
	transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1) !important;
	transform: translateZ(0);
	backface-visibility: hidden;
	will-change: width, border-color, box-shadow;
}

.lthm-hero .lthm-accordion__item:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.72);
	outline-offset: 4px;
}

.lthm-hero .lthm-accordion__item.is-active {
	width: 400px !important;
	border-color: rgba(var(--lthm-accent-rgb), 0.5) !important;
	box-shadow: 0 10px 30px rgba(var(--lthm-accent-rgb), 0.12) !important;
}

.lthm-hero .lthm-accordion__hit {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.lthm-hero .lthm-accordion__hit:hover,
.lthm-hero .lthm-accordion__hit:focus,
.lthm-hero .lthm-accordion__hit:active {
	color: inherit;
	text-decoration: none;
}

.lthm-hero .lthm-accordion__media,
.lthm-hero .lthm-accordion__media img {
	display: block;
	width: 100%;
	height: 100%;
}

.lthm-hero .lthm-accordion__media {
	overflow: hidden;
	position: absolute;
	inset: 0;
}

.lthm-hero .lthm-accordion__media img {
	position: absolute;
	inset: 0;
	object-fit: cover;
	transition: transform 0.7s ease !important;
	transform: scale(1) !important;
	backface-visibility: hidden;
	will-change: transform;
}

.lthm-hero .lthm-accordion__item.is-active .lthm-accordion__media img {
	transform: scale(1.05) !important;
}

.lthm-hero .lthm-accordion__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%);
	z-index: 1;
}

.lthm-hero .lthm-accordion__label {
	position: absolute;
	bottom: 6rem;
	left: 50%;
	z-index: 2;
	color: var(--lthm-label-color);
	font-size: var(--lthm-label-size);
	font-weight: 600;
	letter-spacing: 0.5px;
	white-space: nowrap;
	text-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	transform: translateX(-50%) rotate(90deg);
	transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
	pointer-events: none;
}

.lthm-hero .lthm-accordion__item.is-active .lthm-accordion__label {
	bottom: 1.5rem !important;
	font-size: calc(var(--lthm-label-size) + 0.1rem) !important;
	transform: translateX(-50%) rotate(0) !important;
}

@media (max-width: 992px) {
	.lthm-hero {
		padding: 7.5rem 0 4rem;
	}

	.lthm-hero__container {
		flex-direction: column;
		gap: 3rem;
		text-align: center;
	}

	.lthm-hero__content {
		align-items: center;
		max-width: 100%;
		text-align: center;
	}

	.lthm-hero__actions {
		justify-content: center;
	}
}

@media (max-width: 600px) {
	.lthm-hero {
		padding-top: 6.75rem;
	}

	.lthm-hero__glow {
		width: 320px;
		height: 320px;
	}

	.lthm-hero__title {
		font-size: var(--lthm-title-size);
	}

	.lthm-hero__subtitle {
		font-size: var(--lthm-subtitle-size);
	}

	.lthm-hero__actions {
		width: 100%;
		flex-direction: column;
	}

	.lthm-btn {
		width: 100%;
	}

	.lthm-accordion {
		gap: 0.35rem;
	}

	.lthm-hero .lthm-accordion__item {
		width: 45px !important;
		height: 350px;
	}

	.lthm-hero .lthm-accordion__item.is-active {
		width: 170px !important;
	}

	.lthm-hero .lthm-accordion__label {
		bottom: 5rem;
		font-size: var(--lthm-label-size);
	}

	.lthm-hero .lthm-accordion__item.is-active .lthm-accordion__label {
		bottom: 1.2rem !important;
		font-size: calc(var(--lthm-label-size) + 0.1rem) !important;
	}
}

.lthm-showcase {
	font-family: "Be Vietnam Pro", sans-serif;
}

.lthm-showcase__stage {
	--lthm-showcase-card-width: 208px;
	--lthm-showcase-card-height: 356px;
	--lthm-showcase-card-radius: 28px;
	position: relative;
	width: min(100%, 620px);
	height: 500px;
	margin: 0 auto;
	padding: 0;
	perspective: 2200px;
	transform-style: preserve-3d;
	cursor: grab;
	touch-action: pan-y;
	user-select: none;
	transition: transform 0.36s ease, filter 0.36s ease;
	background:
		radial-gradient(circle at 36% 36%, rgba(255, 228, 199, 0.42) 0%, rgba(255, 228, 199, 0.18) 24%, rgba(255, 228, 199, 0) 48%),
		radial-gradient(circle at 67% 72%, rgba(202, 223, 255, 0.28) 0%, rgba(202, 223, 255, 0.08) 22%, rgba(202, 223, 255, 0) 46%);
}

.lthm-showcase__stage.is-dragging {
	cursor: grabbing;
	transition: none;
}

.lthm-showcase__stage::before,
.lthm-showcase__stage::after {
	content: "";
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
}

.lthm-showcase__stage::before {
	left: 98px;
	right: 98px;
	bottom: 28px;
	height: 90px;
	background: radial-gradient(circle at center, rgba(123, 92, 52, 0.24) 0%, rgba(123, 92, 52, 0.12) 34%, rgba(123, 92, 52, 0) 76%);
	filter: blur(24px);
	opacity: 0.8;
}

.lthm-showcase__stage::after {
	left: 130px;
	right: 130px;
	bottom: 70px;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(184, 149, 112, 0.26) 18%, rgba(184, 149, 112, 0.42) 50%, rgba(184, 149, 112, 0.26) 82%, transparent 100%);
	opacity: 0.65;
}

.lthm-showcase-card {
	position: absolute;
	top: 0;
	width: var(--lthm-showcase-card-width);
	height: var(--lthm-showcase-card-height);
	margin: 0;
	padding: 0;
	border-radius: var(--lthm-showcase-card-radius);
	overflow: hidden;
	border: 1px solid rgba(229, 212, 194, 0.84);
	background: #fffaf4;
	box-shadow:
		0 26px 64px rgba(74, 55, 36, 0.16),
		0 10px 24px rgba(74, 55, 36, 0.08);
	transform-origin: center center;
	transform-style: preserve-3d;
	backface-visibility: hidden;
	transition:
		top 0.72s cubic-bezier(0.22, 0.84, 0.18, 1),
		left 0.72s cubic-bezier(0.22, 0.84, 0.18, 1),
		right 0.72s cubic-bezier(0.22, 0.84, 0.18, 1),
		width 0.72s cubic-bezier(0.22, 0.84, 0.18, 1),
		height 0.72s cubic-bezier(0.22, 0.84, 0.18, 1),
		transform 0.72s cubic-bezier(0.22, 0.84, 0.18, 1),
		box-shadow 0.4s ease,
		border-color 0.4s ease,
		filter 0.4s ease,
		opacity 0.4s ease;
	cursor: pointer;
	z-index: 2;
	will-change: top, left, right, transform, opacity;
}

.lthm-showcase-card:hover {
	box-shadow:
		0 34px 72px rgba(74, 55, 36, 0.18),
		0 14px 30px rgba(74, 55, 36, 0.12);
}

.lthm-showcase-card.is-side {
	filter: saturate(0.94) brightness(0.98);
}

.lthm-showcase-card.is-active {
	filter: saturate(1.03) brightness(1.01);
}

.lthm-showcase-card.is-peek {
	filter: saturate(0.88) brightness(0.97);
}

.lthm-showcase-card.is-hidden {
	opacity: 0;
	pointer-events: none;
	z-index: 0;
}

.lthm-showcase-card__hit,
.lthm-showcase-card__media,
.lthm-showcase-card__media img {
	display: block;
	width: 100%;
	height: 100%;
}

.lthm-showcase-card__hit {
	position: relative;
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.lthm-showcase-card__hit:hover,
.lthm-showcase-card__hit:focus,
.lthm-showcase-card__hit:active {
	color: inherit;
	text-decoration: none;
}

.lthm-showcase-card__media {
	position: absolute;
	inset: 0;
}

.lthm-showcase-card__media img {
	object-fit: cover;
}

.lthm-showcase-card__sheen {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 24%);
	pointer-events: none;
	z-index: 1;
}

.lthm-showcase-card__overlay {
	position: absolute;
	inset: auto 0 0;
	height: 48%;
	background: linear-gradient(180deg, rgba(13, 11, 10, 0) 0%, rgba(13, 11, 10, 0.2) 30%, rgba(13, 11, 10, 0.72) 100%);
	pointer-events: none;
	z-index: 1;
}

.lthm-showcase-card__copy {
	position: absolute;
	inset: auto 0 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0 24px 24px;
	pointer-events: none;
}

.lthm-showcase-card__copy strong {
	display: block;
	margin: 0;
	color: #fff;
	font-size: clamp(16px, 1.8vw, 20px);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.lthm-showcase-card__copy span {
	display: block;
	max-width: 16ch;
	margin: 0;
	color: rgba(255, 247, 240, 0.94);
	font-size: 13px;
	line-height: 1.34;
	font-weight: 500;
}

.lthm-showcase-card--far-left {
	top: 34px;
	left: 6px;
	width: var(--lthm-showcase-card-width);
	height: var(--lthm-showcase-card-height);
	transform-origin: left center;
	transform: perspective(1800px) rotateY(84deg) translateZ(-24px);
	z-index: 0;
	opacity: 0.5;
}

.lthm-showcase-card--left {
	top: 18px;
	left: 74px;
	width: var(--lthm-showcase-card-width);
	height: var(--lthm-showcase-card-height);
	transform-origin: center center;
	transform: perspective(1800px) rotateY(15deg) translateZ(8px);
	z-index: 2;
}

.lthm-showcase-card--center {
	top: 0;
	left: 50%;
	width: var(--lthm-showcase-card-width);
	height: var(--lthm-showcase-card-height);
	transform-origin: center center;
	transform: translateX(-50%) perspective(1800px) rotateY(-2deg) translateZ(22px);
	z-index: 3;
}

.lthm-showcase-card--right {
	top: 18px;
	right: 74px;
	width: var(--lthm-showcase-card-width);
	height: var(--lthm-showcase-card-height);
	transform-origin: right center;
	transform: perspective(1800px) rotateY(-84deg) translateZ(-24px);
	z-index: 1;
	opacity: 0.68;
}

.lthm-showcase.is-circular-gallery .lthm-showcase__stage {
	cursor: grab;
}

.lthm-showcase.is-circular-gallery .lthm-showcase__stage.is-dragging {
	cursor: grabbing;
}

.lthm-showcase.is-circular-gallery .lthm-showcase__gallery-wrapper {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transform-style: preserve-3d;
	perspective: 1500px;
	transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
	pointer-events: none;
}

.lthm-showcase.is-circular-gallery .lthm-showcase__gallery-ring {
	position: relative;
	width: var(--lthm-showcase-card-width);
	height: var(--lthm-showcase-card-height);
	transform-style: preserve-3d;
	will-change: transform;
}

.lthm-showcase.is-circular-gallery .lthm-showcase-card,
.lthm-showcase.is-circular-gallery .lthm-showcase-card--far-left,
.lthm-showcase.is-circular-gallery .lthm-showcase-card--left,
.lthm-showcase.is-circular-gallery .lthm-showcase-card--center,
.lthm-showcase.is-circular-gallery .lthm-showcase-card--right {
	top: 0;
	left: 0;
	right: auto;
	width: 100%;
	height: 100%;
	transform-origin: center center;
	transform:
		rotateY(var(--item-angle, 0deg))
		translateZ(var(--lthm-showcase-radius, 184px))
		scale(var(--card-scale, 1));
	filter: brightness(var(--card-brightness, 1)) saturate(1.02);
	opacity: 1;
	pointer-events: auto;
	z-index: 10;
	transition:
		opacity 0.34s ease,
		filter 0.4s ease,
		box-shadow 0.4s ease,
		border-color 0.4s ease;
}

.lthm-showcase.is-circular-gallery .lthm-showcase-card.is-active {
	box-shadow:
		0 36px 84px rgba(74, 55, 36, 0.22),
		0 16px 34px rgba(74, 55, 36, 0.12);
	border-color: rgba(241, 221, 204, 0.96);
}

.lthm-showcase.is-circular-gallery .lthm-showcase-card.is-side {
	box-shadow:
		0 22px 48px rgba(74, 55, 36, 0.14),
		0 10px 22px rgba(74, 55, 36, 0.08);
}

.lthm-showcase.is-circular-gallery .lthm-showcase-card.is-peek {
	box-shadow:
		0 12px 26px rgba(74, 55, 36, 0.1),
		0 6px 14px rgba(74, 55, 36, 0.06);
}

.lthm-showcase.is-circular-gallery .lthm-showcase-card__copy {
	pointer-events: none;
}

@media (max-width: 1180px) {
	.lthm-showcase__stage {
		--lthm-showcase-card-width: 194px;
		--lthm-showcase-card-height: 332px;
		--lthm-showcase-card-radius: 28px;
		width: min(100%, 560px);
		height: 420px;
	}

	.lthm-showcase-card--far-left {
		top: 26px;
		left: 0;
		transform: perspective(1600px) rotateY(84deg) translateZ(-20px);
	}

	.lthm-showcase-card--left {
		top: 18px;
		left: 44px;
		transform: perspective(1600px) rotateY(15deg) translateZ(8px);
	}

	.lthm-showcase-card--center {
		top: 0;
		transform: translateX(-50%) perspective(1600px) rotateY(-3deg) translateZ(18px);
	}

	.lthm-showcase-card--right {
		top: 18px;
		right: 44px;
		transform: perspective(1600px) rotateY(-84deg) translateZ(-20px);
	}
}

@media (max-width: 640px) {
	.lthm-showcase__stage {
		--lthm-showcase-card-width: 160px;
		--lthm-showcase-card-height: 282px;
		--lthm-showcase-card-radius: 24px;
		width: min(100%, 360px);
		height: 360px;
	}

	.lthm-showcase-card {
		border-radius: 24px;
	}

	.lthm-showcase-card--far-left {
		top: 28px;
		left: -8px;
		transform: perspective(1400px) rotateY(84deg) translateZ(-18px);
	}

	.lthm-showcase-card--left {
		top: 24px;
		left: 4px;
		transform: perspective(1400px) rotateY(15deg) translateZ(6px);
	}

	.lthm-showcase-card--center {
		top: 0;
		transform: translateX(-50%) perspective(1400px) rotateY(-2deg) translateZ(16px);
	}

	.lthm-showcase-card--right {
		top: 24px;
		right: 4px;
		transform: perspective(1400px) rotateY(-84deg) translateZ(-18px);
	}

	.lthm-showcase-card__copy {
		padding: 0 12px 12px;
	}

	.lthm-showcase-card__copy strong {
		font-size: 15px;
	}

	.lthm-showcase-card__copy span {
		font-size: 11px;
		line-height: 1.3;
	}
}
