.enigma-quote__container {
	display: grid;
	gap: clamp(24px, 5vw, 80px);
	align-items: center;
}

.enigma-quote__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
	gap: clamp(24px, 5vw, 64px);
	align-items: center;
}

.enigma-quote__text {
	font-size: clamp(24px, 5.2vw, 36px);
	font-weight: 400;
	font-style: italic;
	line-height: 1.55;
	color: var(--e-on-accent);
	text-wrap: pretty;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.enigma-quote__meta {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.enigma-eyebrow {
	display: flex;
	align-items: center;
	gap: 8px;
}

.enigma-eyebrow__rule {
	flex: 0 0 auto;
	width: 1px;
	height: 32px;
	background: var(--e-on-accent);
	opacity: 0.5;
}

.enigma-eyebrow__text {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--e-on-accent);
	opacity: 0.7;
}

.enigma-quote__description {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.68;
	color: var(--e-on-accent);
	opacity: 0.85;
	text-wrap: pretty;
	margin: 0;
	padding: 0;
}

/* Surface variants */
.enigma-section--base .enigma-quote__text,
.enigma-section--raised .enigma-quote__text,
.enigma-section--base .enigma-eyebrow__text,
.enigma-section--raised .enigma-eyebrow__text,
.enigma-section--base .enigma-eyebrow__rule,
.enigma-section--raised .enigma-eyebrow__rule,
.enigma-section--base .enigma-quote__description,
.enigma-section--raised .enigma-quote__description {
	color: var(--e-ink-solid);
	opacity: 1;
}

.enigma-section--inverted .enigma-quote__text,
.enigma-section--inverted .enigma-eyebrow__text,
.enigma-section--inverted .enigma-eyebrow__rule,
.enigma-section--inverted .enigma-quote__description {
	color: var(--e-ink);
}

@media (max-width: 600px) {
	.enigma-quote__grid {
		grid-template-columns: 1fr;
	}

	.enigma-quote__text {
		font-size: clamp(20px, 4vw, 28px);
		order: 2;
	}

	.enigma-quote__meta {
		order: 1;
	}
}
