/**
 * Specular Steps - feature/step boxes for overlay on images
 */

/* Image and gallery grid need position context for overlay */
.column-content[data-module="image"]:has(.specular-steps),
.column-content[data-module="gallerygrid"]:has(.specular-steps),
.column-content:has(.specular-steps) {
	position: relative !important;
}

/* Masonry grid container - steps overlay at bottom */
.masonry:has(.specular-steps) {
	position: relative !important;
}

.specular-steps {
	display: flex;
	flex-wrap: nowrap;
	gap: 66px;
	align-items: stretch;
	justify-content: flex-start;
	overflow-x: auto;
	overflow-y: visible;
}

.specular-steps--overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1.5rem 2rem;
	z-index: 10;
}

.specular-step {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-width: 457px;
	min-height: 157px;
	flex-shrink: 0;
	padding: 1.5rem 2rem;
	border-radius: 12px;
	border: 1px solid #FFF;
	background: linear-gradient(0deg, #111015 0%, #111015 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 59.16%, #000 100%);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.specular-step__text {
	color: #FFF;
	font-family: "Roc Grotesk", system-ui, sans-serif;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 28.01px;
	letter-spacing: -0.396px;
	text-align: left;
	flex: 1;
}

.specular-step__chevron {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	line-height: 0;
}

.specular-step__chevron svg {
	width: 27px;
	height: 49px;
}
