.aura-tour-widget {
	width: 100%;
	font-family: var(--arb-font, inherit);
}

.aura-tour-widget__copy {
	max-width: 780px;
	margin: 0 auto 1.5rem;
	text-align: center;
}

.aura-tour-widget__title {
	font-size: clamp(2.5rem, 6.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--arb-bg);
    margin: 0 auto 1.5rem;
    will-change: transform, opacity;
}

.aura-tour-widget__description {
    max-width: 100%;
    margin: 0 auto;
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    line-height: 1.7;
    color: 
color-mix(in srgb, var(--arb-bg) 85%, var(--arb-muted));
    will-change: transform, opacity;
}

.aura-tour-widget__description p {
	margin: 0 0 0.75rem;
}

.aura-tour-widget__description p:last-child {
	margin-bottom: 0;
}

.aura-tour-widget__frame {
	position: relative;
	width: 100%;
	height: 80vh;
	overflow: hidden;
	border-radius: 10px;
	background: var(--arb-bg, #0b1956);
	line-height: 0;
}

.aura-tour-widget__media {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: #000;
}

.aura-tour-widget__poster {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	cursor: pointer;
	background: #000;
}

.aura-tour-widget__cover {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.aura-tour-widget__play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 68px;
	height: 48px;
	transform: translate(-50%, -50%);
	transition: transform 0.15s ease;
	pointer-events: none;
}

.aura-tour-widget__play svg {
	display: block;
	width: 100%;
	height: 100%;
}

.aura-tour-widget__play-bg {
	fill: #212121;
	fill-opacity: 0.8;
	transition: fill 0.15s ease, fill-opacity 0.15s ease;
}

.aura-tour-widget__play-icon {
	fill: #fff;
}

.aura-tour-widget__poster:hover .aura-tour-widget__play,
.aura-tour-widget__poster:focus-visible .aura-tour-widget__play {
	transform: translate(-50%, -50%) scale(1.08);
}

.aura-tour-widget__poster:hover .aura-tour-widget__play-bg,
.aura-tour-widget__poster:focus-visible .aura-tour-widget__play-bg {
	fill: #ff0000;
	fill-opacity: 1;
}

.aura-tour-widget-placeholder {
	padding: 24px;
	border: 1px dashed #c3c4c7;
	color: #50575e;
	text-align: center;
	background: #f6f7f7;
}

@media (max-width: 768px) {
	.aura-tour-widget__title {
		font-size: 2rem;
	}

	.aura-tour-widget__frame {
		height: 70vh;
	}
}
