/* --------------------------------------------------------------------------
   The pricing guide. Same square, line bordered family as the catalogue:
   one table that answers at a glance, then the questions in prose. The
   figures are the content, so they carry the weight and everything else
   stays quiet.
   -------------------------------------------------------------------------- */
.prices-band__title {
	font-size: var(--type-section-md);
	font-weight: 500;
	letter-spacing: -0.01em;
	margin-bottom: clamp(1.4rem, 2.5vw, 2rem);
}

.prices-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--color-line);
}

.prices-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
}

.prices-table th {
	font-family: var(--font-mono);
	font-size: 0.62rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--color-muted);
	text-align: left;
}

.prices-table th,
.prices-table td {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid var(--color-line);
	white-space: nowrap;
}

.prices-table tbody tr:last-child td {
	border-bottom: 0;
}

.prices-table__figure {
	font-family: var(--font-heading);
	font-weight: 500;
	color: var(--color-ink);
}

.prices-table a {
	color: var(--color-accent-deep);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
}

.prices-table a:hover,
.prices-table a:focus-visible {
	color: var(--color-ink);
}

.prices-note {
	margin-top: 1rem;
	max-width: 44rem;
	font-size: 0.88rem;
	color: var(--color-muted);
}

.prices-questions__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2.2rem, 4vw, 3.6rem) clamp(2rem, 4vw, 4rem);
	max-width: 72rem;
}

.prices-question__q {
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: -0.01em;
}

.prices-question__a {
	color: var(--color-muted);
	line-height: 1.65;
}

@media (max-width: 780px) {
	.prices-questions__grid {
		grid-template-columns: minmax(0, 1fr);
	}
}
