/**
 * Styles the team-grid section and its understated portrait treatment.
 *
 * Keeping portraits monochrome until interaction makes the individual work
 * feel crafted while preserving the page's tightly controlled colour story.
 */

.team-section {
	padding-block: var(--inv-sect);
	background: var(--inv-paper);
}

.team-section__inner {
	display: grid;
	gap: var(--inv-space-xl);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--inv-space-lg) var(--inv-space-md);
}

@media (min-width: 54rem) {
	.team-grid {
		/* The five core-team cards sit in one gallery-wall row (inv_get_team()). */
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: var(--inv-space-lg);
	}

	.team-grid .team-card:nth-child(even) {
		padding-top: var(--inv-space-xl);
	}
}
