/**
 * Country child page (single-ab_country) — assets/css/country.css  (marker: `ab-cty-`)
 *
 * Loaded only on pages whose content contains an `ab-cty-` marker class
 * (inc/enqueue.php → albasar_enqueue_section_css). Colours use theme.json tokens
 * where they map (ab-blue #0D72BA, ab-navy #053A66, ab-green #0F7060, action-500
 * #F59423 orange, Jost/Fraunces); the page-specific greys from the Figma country
 * frames are literal, matching the other page stylesheets.
 */

/* ---------------------------------------------------------------------------
 * Shared section scaffold
 * ------------------------------------------------------------------------- */
.ab-cty-section {
	padding: 100px 24px;
	border-bottom: 1px solid #e9e9e9;
}

.ab-cty-cream {
	background: #faf8f4;
}

.ab-cty-peach {
	background: #fef3e6;
}

.ab-cty-section__inner {
	max-width: 1200px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.ab-cty-section__head {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 820px;
}

.ab-cty-section__head--center {
	align-items: center;
	text-align: center;
	margin-inline: auto;
}

.ab-cty-eyebrow {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--wp--preset--color--ab-blue);
}

.ab-cty-title {
	margin: 0;
	font-family: var(--wp--preset--font-family--serif);
	font-weight: 600;
	font-size: 40px;
	line-height: 1.15;
	text-transform: capitalize;
	color: var(--wp--preset--color--ab-navy);
}

.ab-cty-lede {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
	color: #555;
}

.ab-cty-empty {
	margin: 0;
	color: #94a3b8;
	font-style: italic;
}

/* ---------------------------------------------------------------------------
 * Buttons
 * ------------------------------------------------------------------------- */
.ab-cty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 12px 30px;
	border-radius: 4px;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0.0125em;
	text-decoration: none;
	text-transform: capitalize;
}

.ab-cty-btn--primary {
	background: var(--wp--custom--action--500);
	color: #fff;
}

.ab-cty-btn--primary:hover {
	background: var(--wp--preset--color--ab-orange-600);
	color: #fff;
}

.ab-cty-btn--ghost {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.ab-cty-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.ab-cty-btn--white {
	background: #fff;
	color: var(--wp--preset--color--ab-green);
}

.ab-cty-btn--white:hover {
	background: rgba(255, 255, 255, 0.9);
	color: var(--wp--preset--color--ab-green);
}

.ab-cty-btn--outline {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.ab-cty-btn--outline:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

/* ---------------------------------------------------------------------------
 * 1. Hero — split dark text / photo
 * ------------------------------------------------------------------------- */
.ab-cty-hero__row.wp-block-columns {
	gap: 0;
	margin-bottom: 0;
	align-items: stretch;
}

.ab-cty-hero__left.wp-block-column {
	background: #2c2c33;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 100px 24px;
}

.ab-cty-hero__text {
	max-width: 600px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 22px;
}

.ab-cty-hero__eyebrow {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 1.4px;
	line-height: 1.2;
	text-transform: uppercase;
	color: #fff;
}

.ab-cty-hero__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--serif);
	font-weight: 700;
	font-size: 60px;
	line-height: 1.05;
	text-transform: capitalize;
	color: #fff;
}

.ab-cty-hero__body {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 20px;
	line-height: 1.45;
	color: #fff;
}

.ab-cty-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 8px;
}

.ab-cty-hero__right.wp-block-column {
	display: flex;
	flex: 1;
}

.ab-cty-hero__photo.wp-block-cover {
	width: 100%;
	min-height: 100%;
	border-radius: 0;
}

/* ---------------------------------------------------------------------------
 * 2. Impact — five-cell stat strip
 * ------------------------------------------------------------------------- */
.ab-cty-impact {
	padding-top: 50px;
	padding-bottom: 50px;
}

.ab-cty-stats {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}

.ab-cty-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 50px 8px;
	border: 1px solid #d4d4d8;
	text-align: center;
}

.ab-cty-stat__num {
	font-family: var(--wp--preset--font-family--serif);
	font-weight: 400;
	font-size: 70px;
	line-height: 1;
	color: #52525b;
}

.ab-cty-stat__suffix {
	color: var(--wp--custom--action--500);
}

.ab-cty-stat__label {
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 17px;
	line-height: 1.3;
	text-transform: capitalize;
	color: #52525b;
}

/* ---------------------------------------------------------------------------
 * 3. The Hospitals — dynamic card grid
 * ------------------------------------------------------------------------- */
.ab-cty-hosp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.ab-cty-hosp {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding: 35px 25px;
	background: #fff;
	border: 1px solid #d4d4d8;
	border-radius: 8px;
}

.ab-cty-hosp--accent {
	border-color: var(--wp--custom--action--500);
}

.ab-cty-hosp__badge {
	align-self: flex-start;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wp--custom--action--500);
}

.ab-cty-hosp__name {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 20px;
	line-height: 1.25;
	color: #2c2c33;
}

.ab-cty-hosp__city {
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 15px;
	color: var(--wp--preset--color--ab-blue);
}

.ab-cty-hosp__stats {
	display: flex;
	gap: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #d4d4d8;
}

.ab-cty-hosp__stat {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.ab-cty-hosp__num {
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 24px;
	line-height: 1.1;
	color: #000;
}

.ab-cty-hosp__cap {
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1167em;
	text-transform: uppercase;
	color: #52525b;
}

.ab-cty-hosp__note {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.5;
	color: #a1a1aa;
}

.ab-cty-hosp--cta {
	justify-content: space-between;
	background: #faf8f4;
}

.ab-cty-hosp__ctatext {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.55;
	color: #52525b;
}

.ab-cty-hosp__ctalink {
	align-self: flex-start;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 15px;
	text-decoration: underline;
	text-underline-offset: 2px;
	color: var(--wp--preset--color--ab-blue);
}

/* ---------------------------------------------------------------------------
 * 4. Growth — grouped bar chart
 * ------------------------------------------------------------------------- */
/* Grouped, stacked bar chart: year groups spread across the width, each group a
   row of service channels, each channel a stacked bar. */
.ab-cty-growth {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

/* Plot: the year groups, bottom-aligned so shorter columns sit on the baseline. */
.ab-cty-growth__plot {
	display: flex;
	align-items: flex-end;
	justify-content: space-around;
	gap: 24px;
}

.ab-cty-growth__group {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	flex: 1;
}

/* The service channels (Eye Hospitals / Mobile Clinics / School Program) within
   one year sit side by side. */
.ab-cty-growth__bars {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 18px;
}

.ab-cty-growth__col {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

/* One vertical stacked bar. Segments butt together (no gap, per the Figma) and
   grow from the base; height comes from the segments' inline px heights, and the
   plot bottom-aligns the columns so a shorter total sits lower. */
.ab-cty-growth__stack {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: stretch;
	width: 64px;
	max-width: 100%;
}

.ab-cty-growth__seg {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	overflow: hidden;
}

.ab-cty-growth__segval {
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 13px;
	line-height: 1;
	white-space: nowrap;
	color: #f5f2ed;
}

.ab-cty-growth__seg--patients {
	background: var(--wp--preset--color--ab-blue);
}

.ab-cty-growth__seg--glasses {
	background: #7fb5dc;
}

/* Light-blue segment: navy text keeps AA contrast (white would fail on #7fb5dc). */
.ab-cty-growth__seg--glasses .ab-cty-growth__segval {
	color: var(--wp--preset--color--ab-navy);
}

.ab-cty-growth__seg--surgery {
	background: var(--wp--custom--action--500);
}

/* Channel name under each bar. A fixed two-line min-height reserves the same
   label space whether the name wraps to one line (Eye Hospitals) or two (School
   Program), so every bar shares one baseline instead of the longer label lifting
   its column. */
.ab-cty-growth__chan {
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 13px;
	line-height: 1.2;
	min-height: 2.4em;
	color: #71717a;
	text-align: center;
	max-width: 84px;
}

/* Year label under each group; the latest year is accented (orange). */
.ab-cty-growth__year {
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 17px;
	color: #a1a1aa;
	margin-top: 2px;
}

.ab-cty-growth__year.is-current {
	color: var(--wp--custom--action--500);
}

/* Legend: a horizontal row beneath the plot. */
.ab-cty-growth__legend {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 28px;
}

.ab-cty-growth__key {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 16px;
	color: #52525b;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	text-align: left;
}

.ab-cty-growth__chip {
	width: 18px;
	height: 18px;
	border-radius: 4px;
	flex: none;
}

.ab-cty-growth__chip--patients {
	background: var(--wp--preset--color--ab-blue);
}

.ab-cty-growth__chip--glasses {
	background: #7fb5dc;
}

.ab-cty-growth__chip--surgery {
	background: var(--wp--custom--action--500);
}

.ab-cty-growth__cap {
	margin: 0;
	text-align: center;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 13px;
	line-height: 1.4;
	color: #71717a;
}

/* --- Growth chart interactivity (progressive enhancement) --------------- */
.ab-cty-growth--js .ab-cty-growth__bar {
	cursor: pointer;
}

.ab-cty-growth__bar:focus-visible {
	outline: 2px solid var(--wp--preset--color--ab-navy);
	outline-offset: 2px;
}

.ab-cty-growth__tip {
	position: absolute;
	transform: translate(-50%, -125%);
	background: var(--wp--preset--color--ab-navy);
	color: #fff;
	font-family: var(--wp--preset--font-family--sans);
	font-size: 12px;
	line-height: 1;
	padding: 7px 10px;
	border-radius: 6px;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.12s ease;
	z-index: 6;
}

.ab-cty-growth__tip.is-on {
	opacity: 1;
}

/* Legend keys are <button>s so a click toggles a series (styled above). */
.ab-cty-growth__key.is-off {
	opacity: 0.4;
}

/* Toggle a series off — drop the segment so the stack recomputes its height. */
.ab-cty-growth.is-hide-patients .ab-cty-growth__seg--patients,
.ab-cty-growth.is-hide-glasses .ab-cty-growth__seg--glasses,
.ab-cty-growth.is-hide-surgery .ab-cty-growth__seg--surgery {
	display: none;
}

/* Grow-in animation — JS-gated, so no-JS users still see the full stacks.
   The whole column scales up from its base. */
.ab-cty-growth--anim .ab-cty-growth__stack {
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ab-cty-growth--anim.is-visible .ab-cty-growth__stack {
	transform: scaleY(1);
}

@media (prefers-reduced-motion: reduce) {
	.ab-cty-growth--anim .ab-cty-growth__stack {
		transition: none;
		transform: none;
	}
}

/* ---------------------------------------------------------------------------
 * 5. Human Story — image + testimonial
 * ------------------------------------------------------------------------- */
.ab-cty-story__grid {
	display: flex;
	gap: 40px;
	align-items: center;
}

.ab-cty-story__photo.wp-block-cover {
	flex: 1 1 0;
	min-height: 460px;
	border-radius: 8px;
	overflow: hidden;
}

.ab-cty-story__col {
	flex: 0 0 600px;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.ab-cty-story__eyebrow {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.1077em;
	text-transform: uppercase;
	color: var(--wp--preset--color--ab-blue);
}

.ab-cty-story__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--serif);
	font-weight: 600;
	font-size: 40px;
	line-height: 1.15;
	letter-spacing: -0.0125em;
	color: var(--wp--preset--color--ab-navy);
}

.ab-cty-story__body {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	color: #6b6b6b;
}

.ab-cty-story__quote {
	margin: 0;
	padding: 20px 30px;
	border-left: 4px solid var(--wp--custom--action--500);
}

.ab-cty-story__quote p {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-style: italic;
	font-size: 24px;
	line-height: 1.35;
	color: #2c2c33;
}

.ab-cty-story__attrib {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 17px;
	color: #2c2c33;
}

.ab-cty-story__attrib-meta {
	color: #a1a1aa;
	text-transform: capitalize;
}

.ab-cty-story__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 16px;
	text-transform: capitalize;
	text-decoration: none;
	color: var(--wp--preset--color--ab-blue);
}

.ab-cty-story__link:hover {
	text-decoration: underline;
}

/* ---------------------------------------------------------------------------
 * 6. Beyond the Hospitals — service cards
 * ------------------------------------------------------------------------- */
.ab-cty-svc-grid {
	display: flex;
	gap: 20px;
	align-items: stretch;
}

.ab-cty-svc {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding: 35px 25px;
	background: #fff;
	border: 1px solid #d4d4d8;
	border-radius: 8px;
}

.ab-cty-svc--featured {
	background: #faf8f4;
}

.ab-cty-svc__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 20px;
	line-height: 1.25;
	color: #2c2c33;
}

.ab-cty-svc__body {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.55;
	color: #52525b;
}

.ab-cty-svc__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.ab-cty-svc__stat {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.ab-cty-svc__num {
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 24px;
	line-height: 1.1;
	color: #000;
}

.ab-cty-svc__cap {
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1167em;
	text-transform: uppercase;
	color: #52525b;
}

.ab-cty-svc__link {
	margin-top: auto;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 16px;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 2px;
	color: var(--wp--preset--color--ab-blue);
}

.ab-cty-svc__foot {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 15px;
	line-height: 1.5;
	color: #52525b;
}

/* ---------------------------------------------------------------------------
 * 7. Give — copy + GiveLively placeholder
 * ------------------------------------------------------------------------- */
.ab-cty-give__grid {
	display: flex;
	gap: 40px;
	align-items: center;
	justify-content: space-between;
}

.ab-cty-give__col {
	flex: 1 1 0;
	max-width: 671px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ab-cty-give__widget {
	flex: 0 0 400px;
	max-width: 400px;
}

.ab-cty-give__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 420px;
	padding: 30px;
	background: #fff;
	border: 1px dashed #d4d4d8;
	border-radius: 8px;
	text-align: center;
}

.ab-cty-give__note {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 16px;
	color: #52525b;
}

.ab-cty-give__trust {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 13px;
	color: #a1a1aa;
}

/* ---------------------------------------------------------------------------
 * 8. Zakat — centred green band
 * ------------------------------------------------------------------------- */
.ab-cty-zakat {
	padding-top: 50px;
	padding-bottom: 50px;
	border-bottom: 0;
	background: var(--wp--preset--color--ab-green);
}

.ab-cty-zakat__inner {
	max-width: 900px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 20px;
	padding: 40px 0;
}

.ab-cty-zakat__eyebrow {
	margin: 0;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
}

.ab-cty-zakat__title {
	margin: 0;
	font-family: var(--wp--preset--font-family--serif);
	font-weight: 400;
	font-size: 40px;
	line-height: 1.15;
	text-transform: capitalize;
	color: #fff;
}

.ab-cty-zakat__body {
	margin: 0;
	max-width: 760px;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 18px;
	line-height: 30px;
	color: #fff;
}

.ab-cty-zakat__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 8px;
}

/* ---------------------------------------------------------------------------
 * 9. Where else we work — country pills
 * ------------------------------------------------------------------------- */
.ab-cty-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.ab-cty-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 24px;
	border: 1px solid #d4d4d8;
	border-radius: 99px;
	font-family: var(--wp--preset--font-family--sans);
	font-weight: 400;
	font-size: 18px;
	text-decoration: none;
	color: var(--wp--preset--color--ab-blue);
}

.ab-cty-pill:hover {
	border-color: var(--wp--preset--color--ab-blue);
}

.ab-cty-pill__sep {
	color: #d4d4d8;
}

.ab-cty-pill--all {
	background: var(--wp--preset--color--ab-blue);
	border-color: var(--wp--preset--color--ab-navy);
	color: #fff;
	font-weight: 500;
}

.ab-cty-pill--all:hover {
	border-color: var(--wp--preset--color--ab-navy);
	color: #fff;
}

/* ---------------------------------------------------------------------------
 * Responsive
 * ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.ab-cty-hosp-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ab-cty-stats {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Nine bars get tight on a tablet — let the plot scroll horizontally in its
	   own container so nothing overflows the page. */
	.ab-cty-growth__plot {
		justify-content: flex-start;
		gap: 20px;
		overflow-x: auto;
		padding-bottom: 8px;
	}

	.ab-cty-growth__group {
		flex: 0 0 auto;
	}

	.ab-cty-growth__bars {
		gap: 12px;
	}

	.ab-cty-growth__stack {
		width: 52px;
	}

	.ab-cty-story__grid,
	.ab-cty-give__grid {
		flex-direction: column;
		align-items: stretch;
	}

	.ab-cty-story__col,
	.ab-cty-give__col,
	.ab-cty-give__widget {
		flex-basis: auto;
		max-width: none;
	}

	.ab-cty-svc-grid {
		flex-wrap: wrap;
	}

	.ab-cty-svc {
		flex-basis: calc(50% - 10px);
	}
}

@media (max-width: 782px) {
	.ab-cty-section {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.ab-cty-title,
	.ab-cty-story__title,
	.ab-cty-zakat__title {
		font-size: 30px;
	}

	.ab-cty-hero__title {
		font-size: 40px;
	}

	.ab-cty-stat__num {
		font-size: 52px;
	}

	.ab-cty-hero__left.wp-block-column {
		padding: 64px 24px;
	}
}

@media (max-width: 600px) {
	.ab-cty-hosp-grid {
		grid-template-columns: 1fr;
	}

	.ab-cty-stats {
		grid-template-columns: 1fr 1fr;
	}

	.ab-cty-svc {
		flex-basis: 100%;
	}

	.ab-cty-growth__bars {
		gap: 8px;
	}

	.ab-cty-growth__stack {
		width: 40px;
	}

	.ab-cty-growth__segval {
		font-size: 10px;
	}

	.ab-cty-growth__chan {
		font-size: 11px;
		max-width: 56px;
	}
}
