/* Unique World Holidays — About Us page, Section 3 (heading + description).
   Same structural pattern as Section 1 (about-hero-section.css): full-
   width background (Image/Color), dark overlay only on the Image
   variant, colors piped in via ACF-driven CSS custom properties so
   about-hero-section.css's white-on-white lesson doesn't repeat here —
   see partials/about-text-section.php for the full context. Unlike
   Section 1, height is content-driven (padding, not vh) since the
   description is a variable-length repeater, not a fixed title. */

.uwh-about-text {
	position: relative;
	width: 100%;
	padding: 80px 20px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	overflow: hidden;
	box-sizing: border-box;
}

.uwh-about-text-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.4);
}

.uwh-about-text-inner {
	position: relative;
	z-index: 1;
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

/* font-family intentionally omitted — the site-wide h1-h6 rule
   (functions.php) already forces Cinzel on every heading tag. */
.uwh-about-text-heading {
	margin: 0 0 28px;
	font-weight: 700;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	line-height: 1.3;
	color: var(--uwh-about-text-heading-color, #ffffff);
}

.uwh-about-text-description p {
	margin: 0 0 20px;
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--uwh-about-text-description-color, #f4f6ef);
}
.uwh-about-text-description p:last-child {
	margin-bottom: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.uwh-about-text {
		padding: 60px 20px;
	}
}

@media (max-width: 782px) {
	.uwh-about-text {
		padding: 40px 20px;
	}
	.uwh-about-text-description p {
		font-size: 16px;
	}
}
