/* Feature spotlight — two-column row.
   Default: copy on the left, visual on the right.
   `--reverse` modifier flips the order so spotlights alternate down the page. */

.dt-feature-spotlight {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: var(--space-12);
	align-items: center;
}

.dt-feature-spotlight--reverse .dt-feature-spotlight__copy   { order: 2; }
.dt-feature-spotlight--reverse .dt-feature-spotlight__visual { order: 1; }

/* ---------- Copy column ---------- */

.dt-feature-spotlight__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-5);
	max-width: 520px;
}

.dt-feature-spotlight__eyebrow {
	font-size: var(--fs-xs);
	font-weight: var(--fw-bold);
	letter-spacing: var(--ls-eyebrow);
	text-transform: uppercase;
	color: var(--dt-primary);
}

.dt-feature-spotlight__body {
	margin: 0;
	font-size: var(--fs-md);
	line-height: var(--lh-relaxed);
	color: var(--dt-ink-soft);
}

.dt-feature-spotlight__bullets {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

.dt-feature-spotlight__bullets li {
	display: flex;
	align-items: flex-start;
	gap: var(--space-3);
	font-size: var(--fs-sm);
	font-weight: var(--fw-medium);
	color: var(--dt-ink);
	line-height: var(--lh-snug);
}

.dt-feature-spotlight__bullet-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: var(--radius-pill);
	background: var(--dt-primary-soft);
	color: var(--dt-primary);
	flex-shrink: 0;
	margin-top: 2px;
}

/* ---------- Visual column ---------- */

.dt-feature-spotlight__visual {
	min-width: 0;
}

.dt-feature-spotlight__cover {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.dt-feature-spotlight__cover-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.20);
	color: var(--dt-on-primary);
}

/* ---------- Cover tone variants (mirror addon-card tones) ---------- */

/* Quiet single-hue tonal covers — no cross-hue bleed (restrained accent). */
.dt-feature-spotlight__cover--primary {
	background: linear-gradient(135deg,
		var(--dt-primary) 0%,
		var(--dt-primary-700) 100%);
}

.dt-feature-spotlight__cover--warn {
	background: linear-gradient(135deg,
		var(--dt-warn) 0%,
		color-mix(in srgb, var(--dt-warn) 78%, var(--dt-ink)) 100%);
}

.dt-feature-spotlight__cover--success {
	background: linear-gradient(135deg,
		var(--dt-success) 0%,
		color-mix(in srgb, var(--dt-success) 78%, var(--dt-ink)) 100%);
}

.dt-feature-spotlight__cover--instagram {
	background: var(--brand-instagram);
}

.dt-feature-spotlight__cover--google {
	background: linear-gradient(135deg,
		var(--brand-google) 0%,
		color-mix(in srgb, var(--brand-google) 60%, var(--dt-surface-dark)) 100%);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
	.dt-feature-spotlight {
		grid-template-columns: 1fr;
		gap: var(--space-8);
	}

	/* On mobile, always show visual first (above the copy) regardless of reverse,
	   so the page flows visual → copy on every spotlight. */
	.dt-feature-spotlight__copy   { order: 2; max-width: none; }
	.dt-feature-spotlight__visual { order: 1; }

	.dt-feature-spotlight__cover-icon { width: 72px; height: 72px; }
}
