/* ===========================================================================
   About — /about/
   =========================================================================== */

/* --- Numbers band --------------------------------------------------------- */

/* The craft floor's objection to a big-number band is to vanity metrics dressed
   as substance. These four are load-bearing: "1 of 1" is the entire competitive
   claim, and the other three are the syllabus, the credit and the age range. The
   figures earn the size. */
.fts-numbers {
	padding-block: clamp(2.5rem, 6vw, 3.75rem);
	background: var(--fts-navy);
}

.fts-numbers__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 2.25rem);
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
}

.fts-numbers__fig {
	margin: 0;
	font-family: var(--fts-font-cond);
	font-weight: 800;
	font-size: clamp(2.1rem, 4.6vw, 3.1rem);
	line-height: 1;
	letter-spacing: -0.01em;
	color: #fff;
	/* "1 of 1" and "15 hrs" must not break across lines — the figure is the unit. */
	white-space: nowrap;
}

.fts-numbers__cap {
	max-width: 26ch;
	margin: 0.55rem auto 0;
	font-size: 0.87rem;
	line-height: 1.5;
	/* --fts-blue-soft measures 6.9:1 on --fts-navy; --fts-mist would be brighter
	   than the caption needs and would compete with the figure above it. */
	color: var(--fts-blue-soft);
	text-wrap: pretty;
}

/* --- Team ----------------------------------------------------------------- */

/* Renders only once real instructors exist. Until then the section falls back to
   .fts-plain — see the template. */
.fts-team {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2.2vw, 1.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.fts-team__card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--fts-line);
	border-radius: 0.9rem;
	overflow: hidden;
	background: #fff;
}

.fts-team__shot {
	display: block;
	width: 100%;
	aspect-ratio: 8 / 9;
	object-fit: cover;
	object-position: center 30%;
}

.fts-team__body { padding: clamp(1.1rem, 2.4vw, 1.5rem); }

.fts-team__name {
	margin: 0 0 0.2rem;
	font-family: var(--fts-font-cond);
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.1;
	color: var(--fts-navy);
}

.fts-team__role {
	margin: 0 0 0.1rem;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--fts-navy);
}

.fts-team__certs {
	margin: 0 0 0.7rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--fts-blue);
}

.fts-team__bio {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--fts-slate);
	text-wrap: pretty;
}

/* --- Place chips ---------------------------------------------------------- */

.fts-places {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 1.35rem 0 0;
	padding: 0;
	list-style: none;
}

.fts-places li {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.5rem 1rem;
	border: 1px solid #dbe3f0;
	border-radius: 100px;
	background: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--fts-navy);
}

/* The aeroplane is ornament and stays out of the accessibility tree — read
   aloud, "airplane Seletar Aerospace Park" is noise. */
.fts-places li::before {
	content: "✈";
	color: var(--fts-blue);
	font-size: 0.9em;
	line-height: 1;
}

.fts-split__body strong { color: var(--fts-navy); font-weight: 700; }

/* --- Breakpoints ---------------------------------------------------------- */

/* Four figures go two by two — no orphan. */
@media (max-width: 64rem) {
	.fts-numbers__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* The team skips two columns entirely: the draft specifies three instructors,
   and three over two columns strands one. Three, then one. */
@media (max-width: 48rem) {
	.fts-team { grid-template-columns: 1fr; }
}

@media (max-width: 40rem) {
	.fts-numbers__list { grid-template-columns: 1fr; }
}
