/* ===========================================================================
   TESTIMONIAL-LARGE-TONE-ACCENT — sibling of testimonial-large with a
   terracotta + AODC pattern bg instead of primary teal. Same glyph
   pseudo-element technique. Quote scaled up to 40/52 (per BOD Figma
   slice), wider content rail (920 vs 800), 705 px section height.
   Source: docs/figma/board-of-directors/_slices/05-testimonial-large-tone-accent.png
   =========================================================================== */

.wp-block-group.hodc-testimonial-large-tone-accent {
	position: relative;
	background-color: var(--wp--preset--color--accent);
	background-image: url('../../images/figma-placeholders/aodc-pattern.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 197px 24px 81px;
	overflow: hidden;
	text-align: center;
	color: var(--wp--preset--color--white);
	min-height: 705px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Decorative open-quote glyph — matches homepage testimonial's 128 px
 * Source Serif Pro Bold +6% letter rendering for cross-section consistency. */
.wp-block-group.hodc-testimonial-large-tone-accent::before {
	content: '\201C';
	position: absolute;
	top: 63px;
	left: 50%;
	transform: translateX(-50%);
	font-family: "source-serif-pro", Georgia, serif;
	font-weight: 700;
	font-size: 128px;
	letter-spacing: 0.06em;
	line-height: 1;
	color: var(--wp--preset--color--white);
	pointer-events: none;
}

.hodc-testimonial-large-tone-accent__inner {
	max-width: 920px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* Quote text — Source Serif Pro 40/52 weight 400 white centered.
 * Larger than the teal testimonial-large's 28/38; matches the BOD frame's
 * pull-quote scale. */
.hodc-testimonial-large-tone-accent__quote {
	margin: 0 0 67px;
	font-family: "source-serif-pro", Georgia, serif;
	font-weight: 400;
	font-size: 40px;
	line-height: 52px;
	color: var(--wp--preset--color--white);
}

/* Attribution — Mr Eaves XL Modern 700 / 24 / 24 / +11% letter UPPER center.
 * Matches the homepage testimonial __attr typography for cross-section
 * visual consistency, with the size bump to 24 px per BOD Figma. */
.hodc-testimonial-large-tone-accent__attribution {
	margin: 0;
	font-family: "mreavesxlmodotheavy", system-ui, sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 24px;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--wp--preset--color--white);
}

/* Mobile — NOT IN FIGMA. Tighten paddings + scale glyph + clamp quote size. */
@media (max-width: 1024px) {
	.wp-block-group.hodc-testimonial-large-tone-accent {
		min-height: 0;
		padding: clamp(140px, 18vw, 197px) 24px clamp(56px, 8vw, 81px);
	}
	.wp-block-group.hodc-testimonial-large-tone-accent::before {
		font-size: clamp(80px, 12vw, 128px);
		top: clamp(40px, 5vw, 63px);
	}
	.hodc-testimonial-large-tone-accent__quote {
		font-size: clamp(22px, 3.6vw, 40px);
		line-height: 1.3;
		margin-bottom: clamp(40px, 6vw, 67px);
	}
	.hodc-testimonial-large-tone-accent__attribution {
		font-size: clamp(1rem, 2.4vw, 24px);
	}
}
