.esa-style-check {
	position: relative;
	color: var(--color-white);
	background: var(--color-offblack);
	padding: clamp(2rem, 5vw, 5rem);
	z-index: 1;
}

.esa-style-check__intro {
	display: grid;
	gap: 1rem;
	max-width: 52rem;
	margin-bottom: clamp(2rem, 4vw, 4rem);
}

.esa-style-check__eyebrow,
.esa-style-check__label {
	font-size: var(--text-pre-header);
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
	color: var(--color-blue);
}

.esa-style-check__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr));
	gap: 1rem;
}

.esa-style-check__panel {
	display: grid;
	gap: 1rem;
	align-content: start;
	padding: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.04);
}

.esa-style-check__panel--wide {
	grid-column: 1 / -1;
}

.esa-style-check__row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
}

.esa-style-check__swatches {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
	gap: 0.75rem;
}

.esa-style-check__swatches span {
	display: grid;
	gap: 0.5rem;
	font-size: var(--text-pre-header);
}

.esa-style-check__swatches span::before {
	content: "";
	display: block;
	aspect-ratio: 4 / 3;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: var(--swatch);
}
