/* People cards — leadership grid on the About page.
   Measured against the reference people-cards component (masonry columns,
   soft-white card, 125px square header tile, gray-200 header rule).
   Replica renders an initials monogram tile instead of portraits. */

@media screen and (min-width: 768px) {
	.people-cards {
		margin-bottom: calc((var(--grid-col-gutter) + 4px) * -1);
	}
}

@media screen and (min-width: 768px) {
	.people-cards--columns {
		column-count: 2;
		column-gap: var(--grid-col-gutter);
	}
	.people-cards--columns .people-cards__card {
		display: inline-block;
		margin-bottom: calc(var(--grid-col-gutter) - 4px);
		width: 100%;
	}
}

.people-cards__card {
	background-color: var(--color-soft-white);
	border-radius: 0;
	overflow: hidden;
}
.people-cards__card + .people-cards__card {
	margin-top: var(--grid-col-gutter);
}
@media screen and (min-width: 768px) {
	.people-cards__card + .people-cards__card {
		margin-top: 0;
	}
}

.people-cards__card-header {
	border-bottom: 1px solid var(--color-gray-200);
	display: flex;
}

/* Monogram tile: same footprint as the reference portrait slot (max 125px square). */
.people-cards__monogram {
	align-items: center;
	aspect-ratio: 1 / 1;
	background-color: var(--color-brass-1);
	display: flex;
	flex: 1;
	justify-content: center;
	margin: 0;
	max-width: 125px;
	min-width: 0;
	overflow: hidden;
	position: relative;
}
.people-cards__monogram-initials {
	color: var(--color-burgundy-2);
	font-family: var(--heading-font-family);
	font-size: 34px;
	font-weight: var(--font-weight-default);
	letter-spacing: 0.06em;
	line-height: 1;
	user-select: none;
}
@media screen and (min-width: 1280px) {
	.people-cards__monogram-initials {
		font-size: 40px;
	}
}

.people-cards__card-header-content {
	align-self: center;
	flex: 1;
	min-width: 0;
	padding: var(--grid-col-gutter);
	text-align: center;
}

.people-cards__content {
	padding: var(--grid-col-gutter);
}

.people-cards__sub-title {
	color: var(--color-gray-600);
}

/* Shared section header helpers (mirrors the reference section component;
   duplicated intentionally — identical rules are harmless if another
   component file also declares them). */
.section__title {
	text-align: center;
}
.section__description {
	margin-left: auto;
	margin-right: auto;
	max-width: var(--wrap-width-large);
	text-align: center;
}
