/**
 * Team directory (/team/) and profiles (/team/{slug}/).
 * Enqueued only on staff views by inc/team-profiles.php and safelisted from WP Rocket RUCSS.
 * Utility classes come from style.css; only what it lacks lives here.
 */

.team-directory .max-w-\[75ch\],
.team-profile .max-w-\[75ch\] {
	max-width: 75ch;
}

@media (min-width: 768px) {
	.team-profile .md\:justify-start {
		justify-content: flex-start;
	}
}

/* No-photo fallback: initials centred in the grey circle. */
.team-avatar__initials {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-serif, Georgia, serif);
	font-size: 2rem;
	letter-spacing: 0.05em;
	color: #6b7280;
}

/* Directory cards. */
.team-card {
	padding: 1rem;
	border-radius: 0.5rem;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.team-card:hover,
.team-card:focus-visible {
	background-color: #f3f4f6;
}

.team-card:hover .font-serif,
.team-card:focus-visible .font-serif {
	text-decoration: underline;
}

/* Speaking engagements list. */
.entry-content ul.team-speaking {
	list-style: none;
	margin: 0;
	padding: 0;
}

.entry-content ul.team-speaking > li.team-speaking__item {
	margin: 0;
	padding: 1.25rem 0;
	border-top: 1px solid #e5e7eb;
}

.entry-content ul.team-speaking > li.team-speaking__item:first-child {
	border-top: 0;
	padding-top: 0;
}

.entry-content ul.team-speaking > li.team-speaking__item::before {
	content: none;
}

.team-speaking__title {
	font-size: 1.25rem;
	line-height: 1.3;
	margin: 0;
}
