.apg-leadership { --apg-card: 250px; --apg-gap: 2rem; }
.apg-leader-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--apg-gap);
	margin-bottom: var(--apg-gap);
}
.apg-leader-card {
	flex: 0 0 var(--apg-card);
	max-width: var(--apg-card);
}
.apg-leader-card h3 { margin-top: .75rem; }
@media (max-width: 575.98px) {
	.apg-leadership { --apg-card: 70%; }
}

.apg-bio-trigger {
	margin-top: .75rem;
	cursor: pointer;
}

.apg-bio-modal {
	width: min(1100px, 94vw);
	height: 90vh;
	max-width: 94vw;
	max-height: 90vh;
	padding: 0;
	border: 0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 24px 64px rgba(0, 0, 0, .4);
}
.apg-bio-modal[open] {
	display: flex;
	flex-direction: column;
}
.apg-bio-modal::backdrop {
	background: rgba(15, 20, 30, .72);
}
.apg-bio-modal__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: .75rem 1rem;
	background: #0d1b2a;
	color: #fff;
}
.apg-bio-modal__title {
	font-weight: 600;
	font-size: 1rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.apg-bio-modal__actions {
	display: flex;
	align-items: center;
	gap: .75rem;
	flex: 0 0 auto;
}
.apg-bio-modal__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	font-size: 1.6rem;
	line-height: 1;
	color: #fff;
	background: transparent;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
}
.apg-bio-modal__close:hover,
.apg-bio-modal__close:focus-visible {
	background: rgba(255, 255, 255, .15);
}
.apg-bio-modal__frame {
	flex: 1 1 auto;
	width: 100%;
	border: 0;
}
@media (max-width: 575.98px) {
	.apg-bio-modal {
		width: 100vw;
		height: 100vh;
		max-width: 100vw;
		max-height: 100vh;
		border-radius: 0;
	}
}
