/* ============================================================
   Optivro ISPU — Pull-Quote Band (`.tk-quote-band`)
   Full-width navy band with decorative rings, centered italic quote
   with a gold highlight, and an eyebrow-style attribution. Scoped
   under `.oiw-quote-band`. Reuses the shared full-bleed (.oiw-bleed).
   ============================================================ */
.oiw-quote-band {
	background: var(--navy);
	position: relative;
	overflow: hidden;
	padding: 78px 40px;
}
.oiw-quote-band::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -40px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.06);
}
.oiw-quote-band::after {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -60px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.05);
}
.oiw-quote-band .tk-quote-inner {
	max-width: 960px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	text-align: center;
}
.oiw-quote-band .tk-quote-mark {
	font-family: "OrpheusPro Regular", 'orpheus pro', orpheus, Georgia, serif;
	font-size: 86px;
	line-height: 0.5;
	color: rgba(0, 51, 119, 0.18);
	display: block;
	margin-bottom: 22px;
}
.oiw-quote-band .tk-quote-text {
	font-family: "OrpheusPro Regular", 'orpheus pro', orpheus, Georgia, serif;
	font-style: italic;
	font-size: 26px;
	line-height: 40px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 26px;
}
.oiw-quote-band .tk-quote-text .hl {
	color: var(--gold);
}
.oiw-quote-band .tk-quote-attr {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: Lato, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}
.oiw-quote-band .tk-quote-attr span {
	width: 28px;
	height: 1px;
	background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 900px) {
	.oiw-quote-band {
		padding: 60px 24px;
	}
	.oiw-quote-band .tk-quote-text {
		font-size: 21px;
		line-height: 33px;
	}
}
@media (max-width: 560px) {
	.oiw-quote-band .tk-quote-text {
		font-size: 19px;
		line-height: 30px;
	}
}
