/* ==========================================================================
   Bonaventure Portfolio — bv-testimonial-callout.css
   BV Testimonial Callout widget. Flush Nexcess Edge CDN after updating.
   Full-band quote: gold serif mark, italic serif quote, uppercase attribution.
   ========================================================================== */

.bvtc-wrap {
	position: relative;
	overflow: hidden;
	padding:  84px 24px;
}

.bvtc--charcoal { background: #26262D; }
.bvtc--teal     { background: #2c4142; }
.bvtc--none     { background: transparent; }

/* Faint diagonal gold texture, as on the Care Plans dark bands */
.bvtc--texture::before {
	content:        '';
	position:       absolute;
	inset:          0;
	background:     repeating-linear-gradient(
		-45deg,
		transparent,
		transparent 70px,
		rgba(220, 176, 100, 0.025) 70px,
		rgba(220, 176, 100, 0.025) 71px
	);
	pointer-events: none;
}

.bvtc-in {
	max-width:  720px;
	margin:     0 auto;
	position:   relative;
	z-index:    1;
	text-align: center;
}

.bvtc-mark {
	font-family: "scotch-text", Georgia, serif;
	font-size:   80px;
	color:       #DCB064;
	line-height: 0.4;
	display:     block;
	height:      40px;
}

.bvtc-quote {
	font-family: "scotch-text", Georgia, serif;
	font-size:   clamp(20px, 2.7vw, 30px);
	font-style:  italic;
	font-weight: 400;
	color:       #ffffff;
	line-height: 1.5;
	margin:      30px 0 24px;
}

.bvtc-attr {
	font-size:      12px;
	color:          rgba(255, 255, 255, 0.5);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin:         0;
}

.bvtc-detail {
	font-size:      12px;
	color:          rgba(255, 255, 255, 0.35);
	letter-spacing: 1px;
	margin:         6px 0 0;
}

/* Transparent band on a light section — flip text to charcoal defaults */
.bvtc--none .bvtc-quote  { color: #26262D; }
.bvtc--none .bvtc-attr   { color: rgba(38, 38, 45, 0.55); }
.bvtc--none .bvtc-detail { color: rgba(38, 38, 45, 0.4); }
