/* about page: layout and styling aligned with impact-page.css. */
/* hero: desaturated background image (abouthero.jpg), gradient, centered content. */
/* body styles omitted (layout provides). */

.group {
	width: 100%;
	max-width: 1919px;
	display: flex;
	flex-direction: column;
	background-color: #f9f9f7;
	margin-top: 48px;
}

/* hero strip: white background; hero has its own image + gradient fading to white at bottom */
.group-group {
	container: group-group / inline-size;
	position: relative;
	background-color: var(--color-bg-page);
	padding: 100px 24px 120px 24px;
	min-height: 709px;
	box-sizing: border-box;
}

.group-group > * {
	position: relative;
	z-index: 1;
}

/* hero section only: full-bleed image + gradient (breaks out of group-group padding) */
.group-section1 {
	position: relative;
	width: calc(100% + 2 * 24px);
	margin-inline: -24px;
	box-sizing: border-box;
	overflow: hidden;
}

.group-section1::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background-position: left top;
	background-size: cover;
	background-repeat: no-repeat;
	background-image: url(/assets/abouthero-960w.webp);
	background-image: image-set(
		url(/assets/abouthero-960w.webp) 1x,
		url(/assets/abouthero-1920w.webp) 2x
	);
	filter: saturate(0) opacity(0.3);
	pointer-events: none;
}

.group-section1::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0) 35%,
		rgba(255, 255, 255, 0.6) 65%,
		rgba(255, 255, 255, 0.95) 85%,
		#fff 100%
	);
	pointer-events: none;
}

/*
 * desktop only: vertical nudge for hero photo (same idea as reporting hero).
 * use background-position, not translateY — parent has overflow: hidden and transform clips the image.
 * gradient (::after) stays full-bleed; it already matches the section fade.
 */
@media screen and (min-width: 768px) {
	.layout-figma-about .group-section1::before {
		background-position: center calc(50% + var(--hero-about-bg-shift-y, 0px));
	}
}

/* same vertical offset as contact (100px pad + 100px margin) and impact (170px pad + 30px margin): ~200px to headline */
.group-section1--tight-hero .group-container3 {
	margin-top: 100px;
	margin-bottom: 110px;
}

.group-container3 {
	position: relative;
	z-index: 1;
	margin: 100px auto 100px;
	max-width: min(896px, var(--container-max));
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: calc(var(--hero-title-subtitle-gap) + 20px);
	text-align: center;
	padding-inline: 24px;
}

.group-title {
	align-self: stretch;
}

/* matches impact-page hero: same as styles/components/hero.css .hero__title */
#about-hero-heading,
.group-container3 .group-title {
	margin: 0 auto;
	max-width: min(20ch, 100%);
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 4.8vw, var(--text-hero));
	font-weight: 900;
	line-height: var(--leading-none);
	letter-spacing: var(--tracking-hero);
	color: var(--color-hero-headline);
	text-align: center;
	text-wrap: balance;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.group-text-container1 {
	margin: 0 auto;
	width: 100%;
	max-width: var(--hero-subtitle-max-width);
	text-align: center;
	font-family: var(--font-sans);
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-hero-body);
}

/*
 * hero blurb only (.about-hero-lede): literal white fog — no var() (public css loads before token bundles).
 * large-radius text-shadow + drop-shadow so it reads on both the photo and pale gradient (white-on-white was hiding subtle stacks).
 */
.layout-figma-about .group-section1 .about-hero-lede {
	text-shadow:
		0 0 1px rgb(255, 255, 255),
		0 0 2px rgba(255, 255, 255, 1),
		0 0 8px rgba(255, 255, 255, 0.98),
		0 0 18px rgba(255, 255, 255, 0.95),
		0 0 32px rgba(255, 255, 255, 0.88),
		0 0 52px rgba(255, 255, 255, 0.72),
		0 0 76px rgba(255, 255, 255, 0.48),
		0 6px 28px rgba(255, 255, 255, 0.55),
		0 -4px 20px rgba(255, 255, 255, 0.35);
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 26px rgba(255, 255, 255, 0.65))
		drop-shadow(0 0 48px rgba(255, 255, 255, 0.4));
}

/* desktop hero support copy: lock to same sizing as contact hero support text */
.layout-figma-about .group-section1 .group-text-container1 {
	font-family: var(--font-sans);
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: 1.6;
}

/* matches reporting hero title accent (slow down operations.) */
.sub-text-green { color: #375948; }
.sub-text-blue { color: rgba(97, 137, 107, 1); }
.about-hero-mobile-break { display: none; }

/* built from the field: white section, image coming in from the side */
.about-built-section {
	width: 100%;
	background-color: var(--color-bg-page);
	margin-top: 0;
	margin-bottom: 0;
	padding: var(--space-16) var(--container-padding-lg);
	box-sizing: border-box;
}

.about-built-inner {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
	align-items: end;
	gap: var(--space-16);
}

.about-built-figure {
	margin: 0;
	margin-left: calc(-1 * var(--container-padding-lg));
	width: calc(100% + var(--container-padding-lg));
	max-width: min(500px, 100%);
	justify-self: end;
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

/* carousel + portrait pair: composite corners (carousel top only, thumbs bottom only) */
.about-field-visual {
	--about-field-image-gap: 10px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: var(--about-field-image-gap);
	background-color: #fff;
	border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
	overflow: hidden;
}

/* field photo carousel: landscape frame, chevrons on sides only */
.about-field-carousel {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.about-field-carousel__viewport {
	position: relative;
	width: 100%;
	border-radius: var(--radius-xl) var(--radius-xl) 0 0;
	overflow: hidden;
}

.about-field-carousel__track {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #e2e8f0;
}

.about-field-carousel__slide {
	display: none;
	width: 100%;
	height: 100%;
}

.about-field-carousel__slide[data-active="true"] {
	display: block;
}

.about-field-carousel__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.about-field-carousel__btn {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid rgba(61, 102, 82, 0.35);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: #375948;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background 0.2s, border-color 0.2s;
}

.about-field-carousel__btn--prev {
	left: 0.5rem;
}

.about-field-carousel__btn--next {
	right: 0.5rem;
}

.about-field-carousel__btn:hover {
	background: #fff;
	border-color: rgba(61, 102, 82, 0.55);
}

.about-field-carousel__btn:focus-visible {
	outline: 2px solid #375948;
	outline-offset: 2px;
}

.about-field-thumbs {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: var(--about-field-image-gap);
	width: 100%;
	height: min(410px, calc(20vw + 300px));
	min-height: 0;
	background-color: #fff;
}

/* wrappers clip overflow so scale() can zoom one shot to match apparent subject scale */
.about-field-thumb-wrap {
	flex: 1 1 0;
	min-width: 0;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.about-field-thumb-wrap--left {
	border-radius: 0 0 0 var(--radius-xl);
}

.about-field-thumb-wrap--right {
	border-radius: 0 0 var(--radius-xl) 0;
}

.about-field-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* 2.png is framed wider (more sky); 3.png fills the frame more tightly — zoom + crop to align figure scale */
.about-field-thumb-wrap--left .about-field-thumb {
	object-position: center 58%;
	/* vertical nudge: shift crop up 27px (was -20px, +7px) */
	transform: scale(1.22) translateY(-27px);
	transform-origin: center center;
}

.about-field-thumb-wrap--right .about-field-thumb {
	object-position: center 50%;
}

.about-built-content {
	display: flex;
	flex-direction: column;
	gap: var(--space-8);
	text-align: left;
	min-width: 0;
}

.about-built-heading {
	margin: 0;
	color: var(--color-hero-headline);
	font-family: var(--font-display);
	font-size: clamp(var(--text-3xl), 4vw + 1rem, var(--text-5xl));
	font-weight: 800;
	line-height: var(--leading-tight);
	letter-spacing: var(--tracking-heading);
}

.about-built-card {
	width: 100%;
	max-width: 32rem;
	background: var(--color-bg-page);
	border-radius: var(--radius-lg);
	padding: var(--space-8);
	box-shadow: var(--shadow-soft);
	border: var(--border-width) solid var(--color-border);
	box-sizing: border-box;
}

.about-built-body {
	margin: 0;
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: var(--text-lg);
	font-weight: 400;
	line-height: var(--leading-loose);
	text-shadow:
		0 0 1px rgba(255, 255, 255, 1),
		0 0 18px rgba(255, 255, 255, 0.98),
		0 0 36px rgba(255, 255, 255, 0.92),
		0 2px 14px rgba(255, 255, 255, 0.9),
		0 6px 28px rgba(255, 255, 255, 0.55);
}

.about-built-divider {
	margin: var(--space-5) 0;
	border: 0;
	border-top: 1px solid rgba(41, 41, 41, 0.16);
}

.about-built-body--signature {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-5);
}

.about-built-logo-mark {
	width: clamp(5.5rem, 24vw, 6rem);
	height: auto;
	aspect-ratio: 1;
	opacity: 0.95;
	flex-shrink: 0;
}

.about-built-body + .about-built-body {
	margin-top: var(--space-4);
}

/* leadership section: on white background (same as built from the field) */
.group-section3 {
	container: group-section3 / inline-size;
	width: 100%;
	max-width: 1280px;
	margin: 160px auto 180px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 64px;
	font-family: var(--font-display);
	padding: 0 var(--margin-md) 0;
	background-color: var(--color-bg-page);
}

.group-subtitle2.subtitle {
	align-self: stretch;
	color: var(--color-hero-headline, #292929);
	text-align: center;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2;
}

.card-back {
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
	display: grid;
	grid-template-columns: minmax(260px, 400px) minmax(0, 1fr);
	gap: 0 clamp(1.5rem, 4vw, 3.5rem);
	align-items: stretch;
	background-color: var(--white);
	padding: 0 clamp(1.25rem, 3vw, 2.75rem) 2.5rem 0;
	border: 1px solid #f1f5f9;
	border-radius: 24px;
	overflow: hidden;
	width: 100%;
	max-width: 1280px;
}

.card-back-container1 {
	width: 100%;
	max-width: 400px;
	min-height: 320px;
	aspect-ratio: 358 / 443;
	height: auto;
	flex-shrink: 0;
	background-color: #e2e8f0;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	border-radius: 24px 0 0 24px;
}

.card-back-container1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	display: block;
}

.card-back-container2 {
	margin-top: 0;
	padding: clamp(2rem, 4vw, 3rem) 0 clamp(2rem, 4vw, 3rem) 0.25rem;
	width: auto;
	max-width: none;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex-shrink: 1;
	text-align: left;
	align-self: center;
	background: linear-gradient(90deg, rgba(248, 250, 252, 0.65) 0%, rgba(255, 255, 255, 0) 55%);
}

.card-back-subtitle {
	color: var(--color-hero-headline, #292929);
	font-size: 30px;
	font-weight: 800;
	line-height: 1.2;
}

.card-back-text-container1 {
	color: #547363;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}

.card-back-text-container2 {
	margin-top: 20px;
	color: #475569;
	font-size: 16px;
	font-family: var(--font-sans);
	font-weight: 400;
	line-height: 1.625;
}

.card-back-horizontal {
	margin-top: 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 32px;
	border-top: 1px solid #f1f5f9;
}

.card-back-text-container3 {
	color: #94a3b8;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.333;
	letter-spacing: 1.2px;
}

.card-back-container3 {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 24px;
	color: #0f172a;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.429;
}

/* component-a (media links) */
.component-a {
	display: flex;
	align-items: center;
	gap: 8px;
}

.component-bg1 {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	background-color: #f1f5f9;
	padding: 6px 7px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.component-bg1 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.component-text {
	text-align: left;
}

/* processing and research partners (dark green section) */
.group-section4 {
	container: group-section4 / inline-size;
	position: relative;
	z-index: 4;
	display: flex;
	flex-direction: column;
	gap: 16px;
	background-color: #435a4f;
	margin-top: -210px;
	padding: 58px var(--margin-md) 96px var(--margin-md);
}

.group-subtitle3.subtitle {
	color: var(--white);
	text-align: center;
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
	font-family: var(--font-display);
}

.group-text-container3 {
	width: 100%;
	max-width: 672px;
	align-self: center;
	color: rgba(255, 255, 255, 0.7);
	--min-font-size: 15; --max-font-size: 16; font-size: var(--interpolate);
	font-family: var(--font-sans);
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	margin-left: 0;
	margin-right: 0;
}

.group-container6 {
	container: group-container6 / inline-size;
	margin-top: 48px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: flex-start;
	gap: 32px;
	max-width: 1280px;
	width: 100%;
}

/* component-b (partner cards) */
.component-b {
	backdrop-filter: blur(2px);
	width: 100%;
	min-height: 180px;
	display: flex;
	align-items: flex-start;
	gap: 24px;
	flex-grow: 1;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 24px;
}

.component-bg2 {
	margin-top: 0;
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	background-color: var(--white);
	padding: 14px 12px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.component-bg2 img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.component-container {
	margin-top: 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex-grow: 1;
	text-align: left;
}

.component-text-heading {
	color: var(--white);
	font-size: 20px;
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.4;
}

.component-text-container {
	color: var(--white-80);
	font-size: 16px;
	font-family: var(--font-sans);
	font-weight: 400;
	line-height: 1.625;
}

.component3 { padding-right: 12px; }
.component4 { padding-right: 13px; }

/* utility classes shared with global */
.inter-regular1, .inter-regular2, .inter-regular3, .inter-regular4 { font-family: var(--font-sans); }
.inter-bold1, .inter-bold2, .inter-bold3, .inter-bold4 { font-family: var(--font-sans); font-weight: 700; }
.inter-medium { font-family: var(--font-sans); font-weight: 500; }

/** breakpoints (align with impact-page) **/
@media screen and (max-width: 1280px) {
	.group-group { padding-inline: var(--margin-md); }
	.group-section1 {
		width: calc(100% + 2 * var(--margin-md));
		margin-inline: calc(-1 * var(--margin-md));
	}
	.group-container3 { padding-inline: 0; margin-inline: 0; }
	.about-built-section { padding-inline: var(--margin-md); }
	.group-section3 { padding-inline: var(--margin-md); }
	.group-section4 { padding-inline: var(--margin-md); }
	.group-text-container3 { margin-inline: 0; }
	.group-container6 { margin-inline: 0; }
}

@media screen and (max-width: 767px) {
	.about-hero-mobile-break { display: inline; }
	/* hero band top inset: matches home mobile hero headline offset (nav to h1) */
	.layout-figma-about .group-group {
		padding: calc(clamp(72px, 20vw, 110px) + var(--hero-m-headline-nudge-y)) var(--margin-sm) 48px;
	}
	.group-section1 {
		width: calc(100% + 2 * var(--margin-sm));
		margin-inline: calc(-1 * var(--margin-sm));
		padding-bottom: var(--hero-about-mobile-sections-offset-y, 0px);
		box-sizing: border-box;
	}
	/* mobile hero: bottom-anchored photo + same token gradients as home/react heroes */
	.layout-figma-about .group-section1::before {
		inset: auto;
		top: var(--hero-about-mobile-bg-container-shift-y, 0px);
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		box-sizing: border-box;
		background-image: url(/assets/abouthero-640w.webp);
		background-image: image-set(
			url(/assets/abouthero-640w.webp) 1x,
			url(/assets/abouthero-1280w.webp) 2x
		);
		background-size: auto calc(100% * var(--hero-m-bg-height-scale, 1));
		background-position: center calc(100% + var(--hero-m-bg-bottom-nudge-y, 0px));
		background-repeat: no-repeat;
		filter: saturate(0) opacity(var(--hero-about-bg-opacity-mobile, 0.3));
	}
	.layout-figma-about .group-section1::after {
		top: calc(
			var(--hero-m-gradient-bleed-y, -28px)
			+ var(--hero-about-mobile-gradient-container-shift-y, 0px)
		);
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1;
		background-image:
			var(--hero-about-mobile-gradient-top-edge),
			var(--hero-m-gradient-top),
			var(--hero-m-gradient-bottom-edge),
			var(--hero-m-gradient-bottom);
		background-size:
			100% var(--hero-about-mobile-gradient-top-edge-height, 72px),
			100% 100%,
			100% var(--hero-m-gradient-bottom-edge-height),
			100% 100%;
		background-position: center top, center top, center bottom, center bottom;
		background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
	}
	.layout-figma-about .group-section1 .group-container3 {
		position: relative;
		z-index: 2;
	}
	.group-container3 {
		margin: 0 auto 0;
		padding-inline: 0;
		gap: calc(var(--space-4) + 20px);
	}
	.group-container3 .group-title,
	#about-hero-heading {
		margin-top: 0;
		max-width: min(var(--hero-mobile-heading-max-width), 100%);
		text-align: left;
		letter-spacing: -1px;
		font-size: var(--hero-m-title-font-size);
		transform: translateX(
			var(--hero-about-mobile-header-shift-x, var(--hero-about-mobile-shift-x, 0px))
		);
	}
	.group-container3 .group-text-container1 {
		text-align: left;
		max-width: var(--hero-subtitle-max-width-mobile);
		font-size: var(--text-base);
		padding-inline: var(--hero-m-trust-padding-inline, 0px);
		box-sizing: border-box;
		transform: translate(
			var(--hero-about-mobile-support-shift-x, var(--hero-about-mobile-shift-x, 0px)),
			var(--hero-m-lower-nudge-y, 0px)
		);
	}
	.group-text-container1 { max-width: 100%; }
	.group-text-container1 br { display: none; }

	.about-built-section {
		margin-top: var(--space-10);
		padding: var(--space-10) var(--margin-sm);
	}
	.about-built-inner {
		grid-template-columns: 1fr;
		gap: var(--space-8);
		align-items: center;
	}
	.about-built-figure {
		margin-left: 0;
		width: 100%;
		max-width: 100%;
		justify-self: center;
	}
	.about-field-visual {
		border-radius: var(--radius-xl);
	}
	.about-built-content {
		align-items: center;
		text-align: center;
	}
	.about-built-heading { text-align: center; }
	.about-built-card { max-width: 100%; }
	.about-built-body { text-align: left; }

	.group-section3 {
		padding: var(--space-10) var(--margin-sm);
	}
	.card-back {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 32px;
		padding: 22px 12px;
	}
	.card-back-container1 {
		width: 100%;
		max-width: 358px;
		height: 320px;
		min-height: 0;
		aspect-ratio: auto;
		border-radius: 16px;
	}
	.card-back-container2 {
		width: 100%;
		max-width: 440px;
		margin-top: 0;
		padding: 0 0.5rem;
		text-align: center;
		background: none;
	}
	.card-back-container2 > * { text-align: center; }
	.card-back-container3 { justify-content: center; }

	.group-section4 {
		padding: var(--space-12) var(--margin-sm);
	}
	.group-section4 .group-subtitle3 { font-size: clamp(28px, 6vw, 48px); }
	.group-container6 {
		flex-direction: column;
		align-items: stretch;
		gap: var(--space-6);
	}
	.component-b {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 24px;
	}
	.component-b .component-container { min-width: 0; }
}

@media screen and (max-width: 576px) {
	.layout-figma-about .group-group {
		padding: calc(clamp(72px, 20vw, 110px) + var(--hero-m-headline-nudge-y)) var(--margin-sm) 40px;
	}
	.about-built-section { padding: var(--space-8) var(--margin-sm); }
	.group-section3 { padding: var(--space-8) var(--margin-sm); }
	.group-section4 { padding: var(--space-10) var(--margin-sm); }
}

@container group-group (width < 1066px) {
	.about-built-inner {
		grid-template-columns: 1fr;
		gap: var(--space-12);
		align-items: center;
	}
	.about-built-figure {
		margin-left: 0;
		width: 100%;
		max-width: 100%;
		justify-self: center;
	}
	.about-field-visual {
		border-radius: var(--radius-xl);
	}
	.about-built-content { align-items: center; text-align: center; }
	.about-built-heading { text-align: center; }
	.about-built-card { max-width: 100%; }
}

@container group-section3 (width < 895px) {
	.card-back {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 32px;
		padding: 22px 12px;
	}
	.card-back-container1 {
		width: 100%;
		max-width: 358px;
		min-height: 280px;
		height: 320px;
		aspect-ratio: auto;
		border-radius: 16px;
	}
	.card-back-container2 {
		width: 100%;
		max-width: 440px;
		margin-top: 0;
		padding: 0 0.5rem;
		text-align: center;
		background: none;
	}
}

@container group-section4 (width < 1255px) {
	.group-container6 {
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
	}
	.group-container6 > .component3,
	.group-container6 > .component4 { width: 100%; }
}

@container group-container6 (width < 603px) {
	.component-b {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 20px;
	}
	.component-b > .component-container { width: 100%; min-width: 0; }
}
