/* projects.css — New Youth Pastor Kit page overrides only. The system
   lives in components.css; keep this file thin. */

/* ---- Two-column hero: copy left, the portrait photo right so it
   actually shows. (A portrait crammed into a wide banner was near
   invisible.) ---- */
.akf-projects .akf-projects-hero { background: var(--field); }
.akf-projects .akf-projects-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: center;
}
.akf-projects .akf-projects-hero .akf-hero__title { max-width: 14ch; }
.akf-projects .akf-projects-hero .akf-hero__lede { max-width: 44ch; margin: 1.2rem 0 0; }
.akf-projects-hero__shot {
	aspect-ratio: 1 / 1;
	height: clamp(280px, 42vh, 430px);
	width: auto;
	margin-left: auto;
	overflow: hidden;
	border-radius: 3px;
	box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
}
.akf-projects-hero__shot img {
	width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
}

/* ---- "What's in the kit" on a light surface, legible. The kit-card
   component defaults to dark (ink) styling; recolor it for bone here. ---- */
.akf-projects-kit .akf-kit { margin-top: clamp(1.5rem, 3vw, 2.5rem); }
.akf-projects-kit .akf-kit + .akf-kit__group { margin-top: clamp(2.2rem, 5vw, 3.4rem); }
.akf-kit__group {
	font-family: var(--font-disp);
	font-weight: 900;
	font-stretch: 62%;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.82rem;
	color: var(--gold-d);
	margin: 0;
	padding-bottom: 0.7rem;
	border-bottom: 1px solid rgba(27, 42, 33, 0.22);
}
.akf-projects-kit .akf-kit__head h2 { color: var(--text-on-bone); }
.akf-projects-kit .akf-kit__head p  { color: var(--muted-on-bone); }
.akf-projects-kit .akf-kit__item {
	background: #fff;
	box-shadow: 0 10px 30px rgba(15, 23, 18, 0.06);
	border: 1px solid rgba(27, 42, 33, 0.08);
}
.akf-projects-kit .akf-kit__item .tx { padding: 1.6rem 1.5rem; }
.akf-projects-kit .akf-kit__num { color: var(--gold-d); }
.akf-projects-kit .akf-kit__item h3 { color: var(--text-on-bone); }
.akf-projects-kit .akf-kit__item p { color: var(--muted-on-bone); }

/* ---- Who it's for + apply CTA, centered. ---- */
.akf-projects-who { text-align: center; }
.akf-projects-who .akf-prose { max-width: 60ch; margin: 0 auto 1.8rem; }
.akf-projects-who .akf-prose p { font-size: var(--step-0); line-height: 1.7; color: var(--text-on-bone); }

/* ---- Mobile: stack the hero, cap the photo height. ---- */
@media (max-width: 780px) {
	.akf-projects .akf-projects-hero__grid { grid-template-columns: 1fr; }
	.akf-projects .akf-projects-hero .akf-hero__title { max-width: none; }
	.akf-projects-hero__shot { margin-inline: auto; height: clamp(260px, 60vw, 380px); }
}
