/* Local Executive Committee cards — scoped so Avada chrome stays unchanged. */
.bmc-committee {
	--bmc-red: #e10707;
	--bmc-ink: #1a1a1a;
	--bmc-muted: #5c636a;
	--bmc-line: #e4e7eb;
	--bmc-bg: #f6f7f9;
	box-sizing: border-box;
	margin: 0 0 2.5rem;
	font-family: inherit;
	color: var(--bmc-ink);
}

.bmc-committee *,
.bmc-committee *::before,
.bmc-committee *::after {
	box-sizing: border-box;
}

.bmc-intro {
	margin: 0 0 1.5rem;
	max-width: 40rem;
	color: var(--bmc-muted);
	font-size: 1.05rem;
	line-height: 1.55;
}

.bmc-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: stretch;
}

.bmc-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--bmc-line);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.bmc-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(17, 17, 17, 0.1);
}

.bmc-photo {
	position: relative;
	background: var(--bmc-bg);
	aspect-ratio: 4 / 5;
	overflow: hidden;
}

.bmc-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 18%;
}

.bmc-photo--kevin img { object-position: center 14%; }
.bmc-photo--maciej img { object-position: center 42%; }
.bmc-photo--anthony img { object-position: center 12%; }
.bmc-photo--frederick img { object-position: 28% 18%; }
.bmc-photo--matthias img { object-position: center 12%; }
.bmc-photo--joanne img { object-position: center 22%; }
.bmc-photo--manuel img { object-position: center 16%; }

.bmc-body {
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
	padding: 0.95rem 1rem 1.1rem;
	border-top: 3px solid var(--bmc-red);
	flex: 1;
}

.bmc-committee .bmc-body p {
	margin: 0;
}

.bmc-committee .bmc-name {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1.08rem;
	font-weight: 650;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--bmc-ink);
	text-transform: none;
}

.bmc-email-wrap {
	margin: 0.35rem 0 0;
}

.bmc-role {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bmc-red);
}

.bmc-email {
	margin: 0;
	font-size: 0.82rem;
	line-height: 1.35;
	color: #2b4a7a;
	text-decoration: none;
	word-break: break-word;
}

.bmc-email:hover,
.bmc-email:focus {
	color: var(--bmc-red);
	text-decoration: underline;
}

@media (max-width: 1100px) {
	.bmc-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 800px) {
	.bmc-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.95rem;
	}
	.bmc-photo {
		aspect-ratio: 1 / 1;
	}
}

@media (max-width: 520px) {
	.bmc-grid {
		grid-template-columns: 1fr;
		max-width: 22rem;
		margin: 0 auto;
	}
	.bmc-photo {
		aspect-ratio: 4 / 5;
	}
}
