/* ===== TEAM SECTION ===== */
.team-section { padding: 80px 5%; background: var(--off-white); }
.team-grid { display: grid; grid-template-columns: repeat(2, 380px); gap: 36px; margin-top: 48px; }

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13,27,62,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13,27,62,0.15); }

.team-img { width: 100%; height: 320px; object-fit: cover; object-position: top; }

.team-info { padding: 24px 28px; }
.team-name { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 4px; }
.team-role { color: var(--gold); font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; }
}
