/* ============================================================
   Questions Archive + `kind` taxonomy archive
   Wraps stacked .display-questions sections (same block markup/
   CSS as the Display Questions block — see displayQuestions.css)
   in a readable single-column width, with a small kind-nav strip.
   ============================================================ */

.questions-archive {
	max-width: 860px;
	margin:    0 auto;
	padding:   clamp(1rem, 3vw, 2rem) 0 clamp(2rem, 5vw, 4rem);
}

.questions-archive .page-header {
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.qa-kind-nav {
	display:    flex;
	flex-wrap:  wrap;
	gap:        0.5rem 1rem;
	margin-top: 0.75rem;
}

.qa-kind-nav a {
	font-size:      0.875rem;
	font-weight:    600;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.questions-archive .display-questions {
	padding-top:    0;
	padding-bottom: clamp(24px, 4vw, 48px);
}

.questions-archive .display-questions:last-of-type {
	padding-bottom: 0;
}
