.rds-building-for-future {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 100svh;
	padding: clamp(3rem, 8vh, 6rem) clamp(1.5rem, 6vw, 6rem);
	box-sizing: border-box;
	background: #ffffff;
	overflow: hidden;
}

/* White clip-art wedge (2026-08-14, "now can we do the same in add white
   clip for this section") — same technique as `.rds-ignite-2028-beyond__
   clip-art`: the user-supplied Figma path (fill:white here, matching this
   section's own inside color) revealing this section's white background
   through a diagonal-into-rounded-corner shape, with everything the path
   DOESN'T cover showing the previous section's own color instead. Unlike
   the ignite-2028-beyond case, this section's own background is already
   white (matching the path's fill), so the "previous section's color"
   needs its own explicit backdrop layer here — `__clip-backdrop`, sized and
   positioned identically to the SVG so the two align exactly, filled with
   whatever color the shared `.rds-ignite-2028-sequence` gradient actually
   ends on by "Or Not!" (the section directly before this one) — see that
   gradient's own color-stop comment for why it's blue, not the pink this
   was originally matched to. */
.rds-building-for-future__clip-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 48.6111vw;
	/* 2026-08-14: the shared gradient's color stops were retuned so "Or Not!"
	   (the section directly before this one) resolves back to blue by the
	   time it ends, not pink — this backdrop has to track that same color
	   or the seam between the two sections would mismatch again. */
	background: #0578ff;
	z-index: 0;
	pointer-events: none;
}

.rds-building-for-future__clip-art {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	z-index: 0;
	pointer-events: none;
}

.rds-building-for-future__accent {
	position: absolute;
	top: 0;
	right: 0;
	width: clamp(2.5rem, 5vw, 4rem);
	height: clamp(3rem, 8vw, 6rem);
	background: #0578ff;
	clip-path: polygon(100% 0, 100% 100%, 0 0);
	z-index: 1;
	pointer-events: none;
}

.rds-building-for-future__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: clamp(1.25rem, 2.5vw, 2rem);
	width: 100%;
	max-width: 71rem;
	margin-inline: auto;
	margin-top: 21%;
}

h2.rds-building-for-future__heading {
	margin: 0;
	color: #0578ff;
	font-family: "Ember Modern Display", sans-serif;
	font-weight: 700;
	font-size: 140px;
	line-height: 0.9;
	    text-align: center;

}

.rds-building-for-future__body-group {
	display: flex;
	flex-direction: column;
	gap: clamp(1.75rem, 3vw, 3rem);
}

.rds-building-for-future .rds-building-for-future__body.body-copy {
	margin: 0;
	color: #111419;
	font-family: "Ember Modern Text", sans-serif;
	font-weight: 400;
	font-size: 50px;
	line-height: 1.45;
}

@media (max-width: 767px) {
	.rds-building-for-future {
		min-height: 0;
		padding: 3rem 1.5rem;
	}

	.rds-building-for-future .rds-building-for-future__body.body-copy {
		font-size: 0.95rem;
	}
}
