/**
 * Our People page (page-our-people.php).
 *
 * Hero + alternating group sections + portrait-card grid + Get Help CTA.
 * Design-system tokens throughout. Self-contained (buttons and CTA included)
 * so it does not depend on the service stylesheet.
 */

.hos-people h1, .hos-people h2, .hos-people strong { color: var(--ds-color-heading); }

/* Hero */
.hos-people-hero { background: var(--ds-color-surface); padding: clamp(40px, 6vw, 72px) 0; }
.hos-people-hero__inner {
	max-width: var(--ds-width-container);
	margin: 0 auto;
	padding: 0 var(--ds-space-gutter);
	display: flex;
	flex-direction: column;
	gap: var(--ds-space-lg);
}
.hos-people-hero h1 {
	margin: 0;
	font-family: var(--ds-font-heading);
	font-weight: var(--ds-weight-bold);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.12;
	letter-spacing: var(--ds-letter-display);
}
.hos-people-hero__lead { margin: 0; font-size: var(--ds-text-intro); line-height: var(--ds-line-lead); max-width: 56ch; color: var(--ds-color-body); }

/* Group section */
.hos-people-group { background: var(--ds-color-white); padding: clamp(48px, 7vw, 88px) 0; }
.hos-people-group--alt { background: var(--ds-color-surface); }
.hos-people-group__inner { max-width: var(--ds-width-container); margin: 0 auto; padding: 0 var(--ds-space-gutter); }
.hos-people-group__head { max-width: 62ch; display: flex; flex-direction: column; gap: var(--ds-space-sm); margin-bottom: clamp(28px, 4vw, 40px); }
.hos-people-group__head h2 {
	margin: 0;
	font-family: var(--ds-font-heading);
	font-weight: var(--ds-weight-bold);
	font-size: var(--ds-text-h2);
	line-height: 1.15;
}
.hos-people-group__head p { margin: 0; }

/* Grid + cards */
.hos-people-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--ds-space-lg); }
.hos-person-card { display: flex; flex-direction: column; gap: var(--ds-space-sm); }
.hos-person-card__photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; border-radius: var(--ds-radius-lg); display: block; background: var(--ds-color-surface); }
.hos-person-card__ph {
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: var(--ds-radius-lg);
	background: var(--ds-color-surface);
	border: 2px dashed var(--ds-color-border-hover);
	color: var(--ds-color-border-hover);
	display: flex;
	align-items: center;
	justify-content: center;
}
.hos-person-card__meta { display: flex; flex-direction: column; gap: 2px; }
.hos-person-card__meta strong { font-family: var(--ds-font-heading); font-weight: var(--ds-weight-semibold); font-size: var(--ds-text-sm); line-height: 1.3; }
.hos-person-card__meta span { font-size: var(--ds-text-xs); line-height: 1.5; color: var(--ds-color-body); }

/* Bottom CTA */
.hos-people-cta { background: var(--ds-color-blue-dark); padding: clamp(48px, 7vw, 88px) 0; }
.hos-people-cta__inner {
	max-width: var(--ds-width-container);
	margin: 0 auto;
	padding: 0 var(--ds-space-gutter);
	display: flex;
	flex-wrap: wrap;
	gap: var(--ds-space-xl);
	align-items: center;
	justify-content: space-between;
}
.hos-people-cta__text { flex: 1 1 440px; display: flex; flex-direction: column; gap: var(--ds-space-lg); }
.hos-people-cta__text h2 { margin: 0; font-family: var(--ds-font-heading); font-weight: var(--ds-weight-bold); font-size: var(--ds-text-h2); line-height: 1.15; color: var(--ds-color-white); }
.hos-people-cta__text p { margin: 0; color: var(--ds-color-blue-on-dark); font-size: var(--ds-text-intro); line-height: 1.6; max-width: 48ch; }
.hos-people-cta__actions { display: flex; flex-wrap: wrap; gap: var(--ds-space-md); align-items: center; }

.hos-people-btn {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	padding: 18px 34px;
	border-radius: var(--ds-radius-pill);
	border: 2px solid transparent;
	font-family: var(--ds-font-heading);
	font-weight: var(--ds-weight-semibold);
	font-size: var(--ds-text-intro);
	line-height: 1;
	transition: background .15s ease, color .15s ease;
}
.hos-people a.hos-people-btn { text-decoration: none; }
.hos-people a.hos-people-btn--white { background: var(--ds-color-white); color: var(--ds-color-blue-dark); }
.hos-people a.hos-people-btn--white:hover { background: var(--ds-color-blue-tint); color: var(--ds-color-blue-dark); }
.hos-people a.hos-people-btn--ghost { background: transparent; border-color: var(--ds-color-white); color: var(--ds-color-white); }
.hos-people a.hos-people-btn--ghost:hover { background: rgba(255, 255, 255, .16); color: var(--ds-color-white); }
