.unfurling-gallery-widget {
	position: relative;
	width: 100%;
}

.ug-scroll-driver {
	position: relative;
	width: 100%;
	background: #050505;
	color: #fff;
}

.ug-sticky {
	position: sticky;
	top: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.ug-banner {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1920px;
	margin: 0 auto;
	will-change: width, height, border-radius;
	box-sizing: border-box;
}

.ug-stage {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.ug-vignette-v {
	position: absolute;
	inset: 0;
	z-index: 20;
	box-shadow:
		inset 0 100px 150px -50px var( --ug-vignette, #000 ),
		inset 0 -100px 150px -50px var( --ug-vignette, #000 );
}

.ug-vignette-h {
	position: absolute;
	inset: 0;
	z-index: 20;
	box-shadow:
		inset 150px 0 150px -50px var( --ug-vignette, #000 ),
		inset -150px 0 150px -50px var( --ug-vignette, #000 );
}

.ug-grid {
	display: flex;
	gap: 24px;
	justify-content: center;
	align-items: center;
	width: 120vw;
	height: 150vh;
	transform-style: preserve-3d;
	will-change: transform;
}

.ug-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 22vw;
	min-width: 200px;
	pointer-events: auto;
	will-change: transform;
}

.ug-card {
	width: 100%;
	height: 400px;
	flex-shrink: 0;
	background: #111;
	position: relative;
	overflow: hidden;
	will-change: transform;
}

.ug-card img,
.ug-card video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.8;
	display: block;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.ug-card:hover img,
.ug-card:hover video {
	opacity: 1;
	transform: scale( 1.02 );
}

.ug-empty-notice {
	padding: 3em 2em;
	text-align: center;
	color: #6d7882;
	background: rgba( 0, 0, 0, 0.03 );
}
