/* =============================================================
   CHILD SAFETY & INTEGRITY — page styles
   Accent: WBA Red (default). Dark moment: EOI section.
   Hero / anchor nav / buttons follow the HEADER/HERO CONSISTENCY
   RULE — copied from page-wheelchair-hoops.css lineage, accent
   colour + content changed only.
   ============================================================= */

.cs-page { --cs-accent: var(--wba-red); }

.cs-wrap {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--gutter-d);
}

/* =============================================================
   HERO — 58vh (consistency rule, verbatim spec)
   ============================================================= */
.cs-hero {
	position: relative;
	height: 58vh;
	min-height: 480px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	color: var(--wba-white);
}
.cs-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 78% 50%, rgba(193, 39, 45, 0.28), transparent 55%),
		linear-gradient(105deg, rgba(12, 12, 12, 0.92) 0%, rgba(12, 12, 12, 0.72) 48%, rgba(12, 12, 12, 0.40) 100%);
}
.cs-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--gutter-d); /* NO vertical padding — flex-centred */
}
.cs-hero__eyebrow {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 9px 18px;
	border: 1px solid rgba(193, 39, 45, 0.55);
	background: rgba(193, 39, 45, 0.16);
	border-radius: 100px;
	margin-bottom: 22px;
}
.cs-hero__title {
	font-size: clamp(2.3rem, 5vw, 3.9rem);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.015em;
	margin: 0 0 20px;
	max-width: 780px;
}
.cs-hero__title em {
	font-style: italic;
	font-weight: 300;
}
.cs-hero__lede {
	max-width: 600px;
	margin: 0 0 36px;
	font-size: 1.02rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}
.cs-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}
.cs-hero__badge {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	padding: 7px 14px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 100px;
	color: rgba(255, 255, 255, 0.85);
}
.cs-hero__ctas {
	display: flex;
	gap: 14px;
}

/* =============================================================
   BUTTONS — exact .ah-btn spec (consistency rule)
   ============================================================= */
.cs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 15px 28px;
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	text-decoration: none;
	border-radius: 4px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.cs-btn--primary {
	background: var(--cs-accent);
	color: var(--wba-white);
}
.cs-btn--primary:hover,
.cs-btn--primary:focus-visible {
	background: var(--wba-dark);
	color: var(--wba-white);
	transform: translateY(-2px);
}
.cs-btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.55);
	color: var(--wba-white);
}
.cs-btn--ghost:hover,
.cs-btn--ghost:focus-visible {
	background: var(--wba-white);
	color: var(--wba-dark);
	transform: translateY(-2px);
}
.cs-btn--ghost-dark {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--wba-white);
}
.cs-btn--ghost-dark:hover,
.cs-btn--ghost-dark:focus-visible {
	background: var(--wba-white);
	color: var(--wba-dark);
	transform: translateY(-2px);
}
.cs-btn .wba-icon,
.cs-btn svg { width: 15px; height: 15px; }

/* =============================================================
   STICKY ANCHOR NAV — 3px red top border (consistency rule)
   ============================================================= */
.cs-anchors {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--wba-white);
	border-top: 3px solid var(--cs-accent);
	border-bottom: 1px solid var(--wba-border);
}
.cs-anchors__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 var(--gutter-d);
	display: flex;
	align-items: center;
	gap: 26px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.cs-anchors__inner > a {
	position: relative;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: lowercase;
	color: var(--wba-dark);
	text-decoration: none;
	padding: 18px 2px;
	white-space: nowrap;
}
.cs-anchors__inner > a:not(.cs-anchors__cta)::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 12px;
	height: 2px;
	background: var(--cs-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}
.cs-anchors__inner > a:not(.cs-anchors__cta):hover::after,
.cs-anchors__inner > a:not(.cs-anchors__cta):focus-visible::after {
	transform: scaleX(1);
}
.cs-anchors__cta {
	margin-left: auto;
	background: var(--cs-accent);
	color: var(--wba-white) !important;
	border-radius: 4px;
	padding: 10px 20px !important;
	margin-top: 8px;
	margin-bottom: 8px;
	transition: background 0.2s;
}
.cs-anchors__cta:hover,
.cs-anchors__cta:focus-visible { background: var(--wba-dark); }

/* =============================================================
   SHARED HEADINGS / EYEBROWS
   ============================================================= */
.cs-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wba-muted);
	margin-bottom: 16px;
}
.cs-eyebrow svg { width: 14px; height: 14px; color: var(--cs-accent); }
.cs-eyebrow--light { color: rgba(255, 255, 255, 0.6); }

.cs-h2 {
	font-size: clamp(1.8rem, 3.4vw, 2.6rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.01em;
	color: var(--wba-dark);
	margin: 0 0 20px;
}
.cs-h2 em { font-style: italic; font-weight: 300; }
.cs-h2--light { color: var(--wba-white); }

.cs-lead {
	font-size: 1rem;
	line-height: 1.75;
	color: #444;
	max-width: 720px;
	margin: 0;
}
.cs-lead em { font-style: italic; }
.cs-lead--light { color: rgba(255, 255, 255, 0.78); }

/* =============================================================
   3. OUR COMMITMENT — 4 standards cards
   ============================================================= */
.cs-commit { padding: 100px 0 92px; background: var(--wba-white); }
.cs-commit__head { margin-bottom: 52px; }
.cs-commit__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.cs-commit__card {
	border: 1px solid var(--wba-border);
	border-radius: 14px;
	padding: 30px 26px 32px;
	background: var(--wba-white);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cs-commit__card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 34px rgba(26, 26, 26, 0.07);
}
.cs-commit__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: var(--wba-cream, #F8F8F6);
	margin-bottom: 18px;
	transition: background 0.25s ease, color 0.25s ease;
	color: var(--wba-dark);
}
.cs-commit__icon svg { width: 20px; height: 20px; }
.cs-commit__card:hover .cs-commit__icon {
	background: var(--cs-accent);
	color: var(--wba-white);
}
.cs-commit__card h3 {
	font-size: 0.98rem;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--wba-dark);
}
.cs-commit__card p {
	font-size: 0.86rem;
	line-height: 1.7;
	color: #555;
	margin: 0;
}
.cs-commit__card p em { font-style: italic; }

/* =============================================================
   4. CSIO — editorial portrait + copy
   ============================================================= */
.cs-officer { padding: 92px 0; background: var(--wba-cream, #F8F8F6); }
.cs-officer__head { margin-bottom: 46px; }
.cs-officer__grid {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: 54px;
	align-items: start;
}
.cs-officer__portrait {
	margin: 0;
	border-radius: 14px;
	overflow: hidden;
	background: var(--wba-dark);
	position: relative;
}
.cs-officer__portrait img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: top center;
}
.cs-officer__portrait figcaption {
	padding: 22px 24px 26px;
	color: var(--wba-white);
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.cs-officer__pill {
	align-self: flex-start;
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 6px 12px;
	border-radius: 100px;
	background: var(--cs-accent);
	color: var(--wba-white);
	margin-bottom: 6px;
}
.cs-officer__name {
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.01em;
}
.cs-officer__name em { font-style: italic; font-weight: 300; }
.cs-officer__role {
	font-size: 0.74rem;
	color: rgba(255, 255, 255, 0.65);
	letter-spacing: 0.04em;
}
.cs-officer__copy p {
	font-size: 0.95rem;
	line-height: 1.8;
	color: #444;
	margin: 0 0 20px;
}
.cs-officer__copy p em { font-style: italic; }
.cs-officer__note {
	border-left: 3px solid var(--cs-accent);
	padding: 4px 0 4px 18px;
	color: var(--wba-dark) !important;
	font-size: 0.9rem !important;
}
.cs-officer__contact {
	list-style: none;
	margin: 26px 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.cs-officer__contact li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
}
.cs-officer__contact svg { width: 16px; height: 16px; color: var(--cs-accent); flex-shrink: 0; }
.cs-officer__contact a {
	color: var(--wba-dark);
	text-decoration: none;
	font-weight: 600;
	border-bottom: 1px solid var(--wba-border);
	transition: color 0.2s, border-color 0.2s;
}
.cs-officer__contact a:hover { color: var(--cs-accent); border-color: var(--cs-accent); }

/* =============================================================
   5. ROLE OVERVIEW — 8-item responsibilities grid
   ============================================================= */
.cs-role { padding: 100px 0; background: var(--wba-white); }
.cs-role__head { margin-bottom: 52px; }
.cs-role__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}
.cs-role__item {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	border: 1px solid var(--wba-border);
	border-radius: 13px;
	padding: 22px 24px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cs-role__item:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(26, 26, 26, 0.06);
}
.cs-role__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--wba-cream, #F8F8F6);
	color: var(--wba-dark);
	flex-shrink: 0;
}
.cs-role__icon svg { width: 17px; height: 17px; }
.cs-role__item p {
	margin: 0;
	font-size: 0.87rem;
	line-height: 1.7;
	color: #4a4a4a;
}
.cs-role__item p em { font-style: italic; color: var(--wba-dark); }

/* =============================================================
   6. REPORT A CONCERN — emergency banner + numbered steps
   ============================================================= */
.cs-report { padding: 100px 0; background: var(--wba-cream, #F8F8F6); }
.cs-report__head { margin-bottom: 40px; }

.cs-report__emergency {
	display: flex;
	align-items: center;
	gap: 18px;
	background: var(--cs-accent);
	color: var(--wba-white);
	border-radius: 13px;
	padding: 22px 28px;
	margin-bottom: 48px;
}
.cs-report__emergency-icon {
	display: inline-flex;
	flex-shrink: 0;
}
.cs-report__emergency-icon svg { width: 26px; height: 26px; }
.cs-report__emergency p {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.6;
}
.cs-report__emergency a {
	color: var(--wba-white);
	font-weight: 800;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.cs-report__steps {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	counter-reset: cs-step;
}
.cs-report__step {
	position: relative;
	background: var(--wba-white);
	border: 1px solid var(--wba-border);
	border-radius: 14px;
	padding: 30px 28px 32px;
	overflow: hidden;
}
.cs-report__num {
	display: block;
	font-size: 64px;
	font-weight: 800;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px var(--wba-border);
	margin-bottom: 16px;
}
.cs-report__step h3 {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--wba-dark);
}
.cs-report__step p {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.7;
	color: #555;
}
.cs-report__confidential {
	font-size: 0.85rem;
	line-height: 1.7;
	color: #555;
	background: var(--wba-white);
	border: 1px solid var(--wba-border);
	border-left: 3px solid var(--cs-accent);
	border-radius: 8px;
	padding: 18px 24px;
	margin: 0;
	max-width: 860px;
}

/* =============================================================
   7. EOI — DARK SECTION (the page's one dark moment)
   ============================================================= */
.cs-eoi {
	position: relative;
	padding: 110px 0;
	background: var(--wba-dark);
	color: var(--wba-white);
	overflow: hidden;
}
.cs-eoi::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 82% 12%, rgba(193, 39, 45, 0.22), transparent 46%);
	pointer-events: none;
}
.cs-eoi .cs-wrap { position: relative; z-index: 1; }
.cs-eoi__head { margin-bottom: 54px; }
.cs-eoi__head .cs-btn { margin-top: 28px; }

.cs-eoi__cols {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
	margin-bottom: 54px;
}
.cs-eoi__col {
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	padding: 30px 30px 32px;
	background: rgba(255, 255, 255, 0.03);
}
.cs-eoi__col h3 {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 0 20px;
}
.cs-eoi__col ul { list-style: none; margin: 0; padding: 0; }
.cs-eoi__col li {
	position: relative;
	padding: 10px 0 10px 26px;
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cs-eoi__col li:last-child { border-bottom: 0; }
.cs-eoi__col li::before {
	content: "—";
	position: absolute;
	left: 0;
	color: var(--cs-accent);
	font-weight: 700;
}

/* ---------- Form panel (dark glass) ---------- */
.cs-eoi__panel {
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.045);
	backdrop-filter: blur(6px);
	padding: 44px 46px 48px;
	max-width: 860px;
}
.cs-eoi__panel-title {
	font-size: 1.3rem;
	font-weight: 800;
	margin: 0 0 8px;
	letter-spacing: -0.01em;
}
.cs-eoi__panel-sub {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.62);
	margin: 0 0 32px;
}

.cs-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}
.cs-form__field { margin-bottom: 18px; display: flex; flex-direction: column; }
.cs-form__field label {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 8px;
}
.cs-form__field label span { color: var(--wba-orange); }
.cs-form__field input,
.cs-form__field select,
.cs-form__field textarea {
	font-family: inherit;
	font-size: 0.9rem;
	color: var(--wba-white);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 6px;
	padding: 13px 16px;
	transition: border-color 0.2s, background 0.2s;
}
.cs-form__field input::placeholder,
.cs-form__field textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.cs-form__field input:focus,
.cs-form__field select:focus,
.cs-form__field textarea:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.09);
}
.cs-form__field select option { color: var(--wba-dark); background: var(--wba-white); }
.cs-form__field textarea { resize: vertical; min-height: 110px; }

.cs-form__fieldset {
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	padding: 20px 22px 22px;
	margin: 0 0 28px;
}
.cs-form__fieldset legend {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	padding: 0 8px;
}
.cs-form__radio {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.85);
	padding: 7px 0;
	cursor: pointer;
}
.cs-form__radio input { accent-color: var(--cs-accent); margin-top: 3px; }

.cs-form .form__submit { width: 100%; border: 0; }
.cs-form__privacy {
	margin: 20px 0 0;
	font-size: 0.76rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.5);
}
.cs-form__privacy a { color: rgba(255, 255, 255, 0.8); }

/* ---------- Form states ---------- */
.form__success,
.form__error {
	border-radius: 8px;
	padding: 16px 20px;
	margin-bottom: 24px;
	font-size: 0.88rem;
	line-height: 1.6;
}
.form__success {
	background: rgba(46, 125, 50, 0.18);
	border: 1px solid rgba(102, 187, 106, 0.5);
	color: #C8E6C9;
}
.form__error {
	background: rgba(193, 39, 45, 0.16);
	border: 1px solid rgba(193, 39, 45, 0.55);
	color: #FFCDD2;
}

/* ---------- Honeypot (Brief v4 §10.3 — off-screen, not display:none) ---------- */
.form__honeypot {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

/* =============================================================
   8. RESOURCES
   ============================================================= */
.cs-resources { padding: 100px 0; background: var(--wba-white); }
.cs-resources__head { margin-bottom: 48px; }
.cs-resources__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.cs-resources__group {
	border: 1px solid var(--wba-border);
	border-radius: 14px;
	padding: 28px 26px 30px;
}
.cs-resources__group h3 {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--wba-muted);
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--wba-border);
}
.cs-resources__group ul { list-style: none; margin: 0; padding: 0; }
.cs-resources__group li { border-bottom: 1px solid var(--wba-border); }
.cs-resources__group li:last-child { border-bottom: 0; }
.cs-resources__group a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 2px;
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.45;
	color: var(--wba-dark);
	text-decoration: none;
	transition: color 0.2s, padding-left 0.2s;
}
.cs-resources__group a svg { width: 12px; height: 12px; flex-shrink: 0; color: var(--wba-muted); transition: color 0.2s, transform 0.2s; }
.cs-resources__group a:hover { color: var(--cs-accent); padding-left: 6px; }
.cs-resources__group a:hover svg { color: var(--cs-accent); transform: translate(2px, -2px); }

.cs-resources__group--support { background: var(--wba-cream, #F8F8F6); }
.cs-resources__support li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 2px;
}
.cs-resources__support span { font-size: 0.8rem; color: #555; }
.cs-resources__support a {
	display: inline;
	padding: 0;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: var(--wba-dark);
	white-space: nowrap;
}
.cs-resources__support a:hover { color: var(--cs-accent); padding-left: 0; }

/* =============================================================
   9. CONTACT BAND
   ============================================================= */
.cs-band {
	padding: 64px 0;
	background: var(--wba-cream, #F8F8F6);
	border-top: 1px solid var(--wba-border);
}
.cs-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
}
.cs-band__line {
	margin: 0;
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -0.005em;
	color: var(--wba-dark);
}
.cs-band__line em { font-style: italic; font-weight: 300; }

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
	.cs-btn,
	.cs-commit__card,
	.cs-role__item,
	.cs-anchors__inner > a::after { transition: none !important; }
	.cs-commit__card:hover,
	.cs-role__item:hover,
	.cs-btn:hover { transform: none !important; }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1080px) {
	.cs-commit__grid { grid-template-columns: repeat(2, 1fr); }
	.cs-resources__grid { grid-template-columns: repeat(2, 1fr); }
	.cs-officer__grid { grid-template-columns: 1fr; gap: 40px; }
	.cs-officer__portrait { max-width: 440px; }
}

@media (max-width: 860px) {
	.cs-report__steps { grid-template-columns: 1fr; }
	.cs-role__grid { grid-template-columns: 1fr; }
	.cs-eoi__cols { grid-template-columns: 1fr; }
	.cs-eoi__panel { padding: 34px 26px 38px; }
	.cs-form__row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 700px) {
	.cs-hero { min-height: 440px; }
	.cs-hero__ctas { flex-direction: column; }
	.cs-hero__ctas .cs-btn { width: 100%; }
	.cs-anchors__cta { margin-left: 0; }
	.cs-commit,
	.cs-role,
	.cs-report,
	.cs-resources { padding: 64px 0; }
	.cs-officer { padding: 60px 0; }
	.cs-eoi { padding: 70px 0; }
	.cs-commit__grid,
	.cs-resources__grid { grid-template-columns: 1fr; }
	.cs-wrap,
	.cs-hero__inner,
	.cs-anchors__inner { padding-left: var(--gutter-m); padding-right: var(--gutter-m); }
	.cs-band__inner { flex-direction: column; align-items: flex-start; }
	.cs-band .cs-btn { width: 100%; }
}
