  section.staff-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

section.staff-cards .staff-card {
	background: white;
	width: 100%;
    max-width: 600px;
	height: 280px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: box-shadow 0.3s ease;
}
section.staff-cards .staff-card:hover {
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.staff-card-picture {
	width: 100%;
	overflow: hidden;
}

.staff-card-picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.staff-card-info {
	padding: 1.5rem;
}

.staff-card h3 {
	font-size: 1.375rem;
	font-weight: 600;
	margin: 0 0 0.5rem 0;
	color: #2c3e50;
}

.staff-card .staff-title {
	color: #7f8c8d;
	font-size: 1rem;
	font-style: italic;
	margin: 0 0 1rem 0;
	font-weight: 400;
}

.staff-card p.email,
.staff-card p.phone {
	margin: 0.5rem 0;
	font-size: 0.9rem;
}

.staff-card p.email a,
.staff-card p.phone a {
	color: #592c88;
	text-decoration: none;
	display: flex;
	align-items: center;
}

.staff-card p.email a:hover,
.staff-card p.phone a:hover {
	text-decoration: underline;
}

.staff-card-info [class*='fa'] {
	margin-right: 0.5rem;
	font-size: 1rem;
	color: #592c88;
	width: 16px;
}

.staff-card p.link {
	margin-top: 1rem;
}

.staff-card p.link a {
	color: #592c88;
	text-decoration: none;
	font-weight: 500;
}

.staff-card p.link a:hover {
	text-decoration: underline;
}

/* Desktop: 2 columns grid */
@media (min-width: 768px) {
	section.staff-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 480px) {
.staff-card-picture img {
    max-height: 350px;
    object-fit: cover;
    object-position: top;
}
section.staff-cards .staff-card {
	max-height: inherit;
}
}