/**
 * Full-width pull-quote band — generic, reusable editorial-quote callout.
 * Values confirmed directly from Design Refrance's `.ab-quote` in
 * TSI About.html. The 64px/48px gap above this band (margin-top in the
 * reference) is kept as a fixed structural value, not tied to the
 * 'about_quote' spacing setting — only the band's own internal padding
 * (side/top/bottom) is admin-adjustable, matching the documented mapping
 * in inc/customizer/spacing-config.php.
 */

.quote-band {
	margin-top: 64px;
	padding: var(--spacing-about_quote-top) var(--spacing-about_quote-side) var(--spacing-about_quote-bottom);
	background: var(--color-primary-wash);
	border-top: 1px solid var(--color-line);
	border-bottom: 1px solid var(--color-line);
	text-align: center;
}

.quote-band .qm {
	font-family: var(--font-secondary);
	font-weight: 900;
	font-size: 60px;
	line-height: 0;
	color: var(--color-primary);
	height: 24px;
	display: block;
}

.quote-band blockquote {
	font-family: var(--font-secondary);
	font-style: italic;
	font-weight: 700;
	font-size: 32px;
	line-height: 1.35;
	color: var(--color-ink);
	max-width: 900px;
	margin: 0 auto;
	letter-spacing: -.3px;
}

.quote-band cite {
	display: block;
	font-family: var(--font-primary);
	font-style: normal;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--color-ink-soft);
	margin-top: 26px;
}

@media (max-width: 768px) {
	.quote-band {
		margin-top: 48px;
		padding-top: var(--spacing-about_quote-top);
		padding-bottom: var(--spacing-about_quote-bottom);
		padding-inline: 16px;
	}

	.quote-band blockquote {
		font-size: 24px;
	}
}
