/* ============================================================
   Pull quote — custom Gutenberg block (tech-edition/pull-quote)
   ============================================================ */

.pull-quote {
	margin: 40px -40px;
	padding: 32px 40px;
	border-top: 2px solid var(--ink);
	border-bottom: 2px solid var(--ink);
	text-align: left;
}
.pull-quote blockquote {
	font-family: var(--font-display);
	font-size: 30px;
	font-weight: 400;
	font-style: italic;
	line-height: 1.25;
	color: var(--ink);
	letter-spacing: -0.5px;
	margin-bottom: 16px;
}
.pull-quote blockquote::before {
	content: "\201C";
	font-size: 1.2em;
	color: var(--brand);
	line-height: 0;
	margin-right: 4px;
	vertical-align: -0.2em;
}
.pull-quote blockquote::after {
	content: "\201D";
	color: var(--brand);
	line-height: 0;
	vertical-align: -0.2em;
}
.pull-quote cite {
	font-family: var(--font-ui);
	font-size: 12px;
	font-style: normal;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
}

@media (max-width: 900px) {
	.pull-quote { margin: 32px 0; padding: 24px 0; }
	.pull-quote blockquote { font-size: 22px; }
}
