/**
 * Section variants and interactive button treatments.
 */

/* Section treatment aliases
   ========================================================================== */

.lh-section--gradient-neutral {
	background: var(--gradient-section-neutral);
}

.lh-section--gradient-accent {
	background: var(--gradient-section-accent);
}

.lh-section--gradient-surface {
	background: var(--gradient-section-surface);
}

.lh-section--gradient-cta,
.lh-section--cta.lh-section--gradient-cta {
	background: var(--gradient-section-cta);
}

/* Signal cards — compact trust and credential lists
   ========================================================================== */

.lh-signal-card {
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-left: 3px solid var(--color-accent);
	border-radius: var(--radius-block);
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.005em;
	line-height: 1.45;
	padding: 0.8125rem 1rem 0.8125rem 1.75rem;
	position: relative;
}

.lh-signal-card::before {
	color: var(--color-accent-secondary);
	content: "✓";
	font-weight: var(--font-weight-bold);
	left: 0.5rem;
	position: absolute;
	top: 0.8125rem;
}

.lh-signal-card-grid {
	display: grid;
	gap: var(--spacing-sm);
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Flat primary buttons
   ========================================================================== */

.lh-button:not(.lh-button-secondary) {
	background-image: none;
}

@media (hover: hover) and (pointer: fine) {
	.lh-button:not(.lh-button-secondary):hover {
		background-color: var(--color-accent-hover);
		background-image: none;
	}

	.lh-section--cta .lh-button:hover {
		background-color: var(--color-accent-secondary);
		background-image: none;
		color: var(--color-text);
	}
}

@media (prefers-reduced-motion: reduce) {
	.lh-button:not(.lh-button-secondary):hover {
		background-image: none;
	}
}
