/* About our team — placeholder portrait frames (lifted from the design).
   Replace the monogram placeholders with real headshots and these styles still apply. */

.portrait {
	aspect-ratio: 4/4.6;
	border-radius: 18px;
	box-shadow: var(--shadow-md);
	overflow: hidden;
	margin-bottom: 18px;
	background: linear-gradient(150deg, var(--blush), var(--rose) 130%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.portrait img.ph { width: 84px; height: 84px; opacity: .5; }
.portrait img:not(.ph) { width: 100%; height: 100%; object-fit: cover; }
.portrait .cap {
	position: absolute;
	bottom: 12px;
	left: 0;
	right: 0;
	text-align: center;
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--rose-ink);
	opacity: .7;
}
