/* Staff page (/staff/) — vcard grid, enqueued only on this page */

.staff-vcard-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 30px 0 10px;
}
.staff-vcard {
	display: flex;
	flex-direction: column;
	border: 1px solid #ddd;
	border-radius: 0;
	padding: 22px;
	background: #fafafa;
	box-shadow: 0 2px 10px rgba(0,0,0,.06);
	transition: box-shadow .15s, transform .15s, border-color .15s;
}
.staff-vcard:hover {
	border-color: #ccc;
	box-shadow: 0 10px 26px rgba(0,0,0,.14);
	transform: translateY(-2px);
}
.staff-vcard-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}
.staff-vcard-photo {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	border: 3px solid #ddd;
}
.staff-vcard-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.staff-vcard-head-text { min-width: 0; }
.staff-vcard-name a {
	font-family: 'Roboto', sans-serif;
	font-size: 1.05rem;
	font-weight: 800;
	color: #000;
	line-height: 1.2;
}
.staff-vcard-name a:hover {
	color: #ec2b8c;
}
.staff-vcard-role {
	display: block;
	font-size: .65rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #ec2b8c;
	margin-top: 3px;
}
.staff-vcard-grid p.staff-vcard-desc {
	font-size: .74rem !important;
	color: #555 !important;
	line-height: 1.55 !important;
	margin: 0 0 14px !important;
	max-width: none;
}
.staff-vcard-link {
	font-size: .76rem;
	font-weight: 700;
	color: #000;
	text-decoration: underline;
	align-self: flex-end;
	margin-top: auto;
}
.staff-vcard-link:hover {
	color: #ec2b8c;
}
.staff-intro {
	font-size: .95rem;
	color: #555;
	margin-bottom: 10px;
}
@media (max-width: 900px) {
	.staff-vcard-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
	.staff-vcard-grid { grid-template-columns: 1fr; }
}
