.hcs-staff-grid {
	--hcs-staff-columns: 3;
	display: grid;
	grid-template-columns: repeat(var(--hcs-staff-columns), minmax(0, 1fr));
	gap: 28px;
	margin: 30px 0;
}

@media (max-width: 900px) {
	.hcs-staff-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px;
	}
}

@media (max-width: 560px) {
	.hcs-staff-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

.hcs-staff-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.hcs-staff-photo {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #eee;
}

.hcs-staff-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hcs-staff-photo-placeholder {
	width: 100%;
	height: 100%;
	background: #ddd;
}

.hcs-staff-body {
	padding: 18px 20px 22px;
	flex: 1;
}

.hcs-staff-name {
	margin: 0 0 6px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.15em;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #1a1a1a;
	line-height: 1.3;
}

.hcs-staff-job-title {
	margin: 0 0 4px;
	font-size: 0.95em;
	font-weight: 600;
	color: #1d5fa8;
	line-height: 1.4;
}

.hcs-staff-network {
	margin: 0;
	font-size: 0.85em;
	color: #6b6b6b;
	line-height: 1.4;
}

@media (max-width: 480px) {
	.hcs-staff-body {
		padding: 16px 18px 20px;
	}

	.hcs-staff-name {
		font-size: 1.1em;
	}
}
