/*
 * am-proof — the "seen" evidence block. Proof over claim is the iron rule: this
 * component shows a concrete moment (sight in action, targeted value, a chosen
 * no) and its outcome — it never asserts "we care".
 *
 * Deliberately distinct from am-card: an accent spine on the leading edge marks
 * it as evidence, not decoration.
 *
 * Structure:
 *   am-proof
 *     am-proof__label     small tag ("I praktiken" / "Så gick det till")
 *     am-proof__story     what was seen / done (the concrete moment)
 *     am-proof__outcome   the result for the client
 *     am-proof__cite      attribution (client type, context) — optional
 */

.am-proof {
	padding: var(--am-space-500) var(--am-space-600);
	background-color: var(--am-color-surface);
	border: 1px solid var(--am-color-border);
	border-inline-start: 3px solid var(--am-color-accent);
	border-radius: var(--am-radius-md);
}

.am-proof__label {
	display: block;
	margin-block-end: var(--am-space-300);
	color: var(--am-color-accent);
	font-size: var(--am-font-size-200);
	font-weight: var(--am-weight-semibold);
	letter-spacing: var(--am-tracking-wide);
	text-transform: uppercase;
}

.am-proof__story {
	margin-block: 0;
	color: var(--am-color-text);
	font-size: var(--am-font-size-400);
	line-height: var(--am-leading-snug);
}

.am-proof__outcome {
	margin-block-start: var(--am-space-400);
	margin-block-end: 0;
	color: var(--am-color-text-muted);
}

.am-proof__cite {
	display: block;
	margin-block-start: var(--am-space-400);
	color: var(--am-color-text-muted);
	font-size: var(--am-font-size-200);
	font-style: normal;
}

/* A set of proofs side by side. */
.am-proof-grid {
	display: grid;
	gap: var(--am-space-500);
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.am-proof-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
