/* ============================================================
   Parkwellness — Reviews Section
   Light panel (matches Studio's light variant), centered header +
   divider graphic, then a full-width reviews widget rendered from
   whatever shortcode is dropped into the reviews_shortcode ACF field.
   ============================================================ */

/* padding-block comes from the global `section` default in main.css
   now (64px desktop / 40px mobile) — not repeated here. */
.pw-reviews {
	background-color: var(--color-cream-200);
}

/* -------------------------------------------------------
   Header — eyebrow + heading, centered
   ------------------------------------------------------- */
.pw-reviews-header {
	max-width: 640px;
	margin-inline: auto;
	text-align: center;
}

.pw-reviews-eyebrow {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--color-gold-300);
	margin-bottom: 14px;
}

.pw-reviews-heading {
	font-family: var(--font-heading);
	font-weight: 400;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.25;
}

.pw-reviews-heading-line1,
.pw-reviews-heading-line2 {
	display: block;
}

.pw-reviews-heading-line1 {
	color: var(--color-dark-700);
}

.pw-reviews-heading-line2 {
	color: var(--color-gold-300);
}

/* -------------------------------------------------------
   Divider graphic
   img. prefix + clamp() width — see .pw-hero-divider in main.css for
   why: reset.css's ".pw-landing img" beats a single-class max-width,
   so this rendered at its full ~758px width (the content column's own
   cap) the whole time it was reviewed, not the 180px below. Same
   clamp() ceiling as the Hero divider (379px) — same graphic reused
   everywhere, one consistent designed size sitewide instead of each
   section's own accidental bug-driven width.
   ------------------------------------------------------- */
img.pw-reviews-divider {
	display: block;
	width: clamp(180px, 27vw, 379px);
	height: auto;
	margin: 32px auto;
}

/* -------------------------------------------------------
   Reviews widget — whatever shortcode/plugin renders here keeps its
   own internal styling; this just gives it room to breathe inside
   the section.
   ------------------------------------------------------- */
.pw-reviews-widget {
	max-width: 1180px;
	margin-inline: auto;
}
