/* MediCare Clinic - Team Page Styles */

/* Doctors Grid */
.doctors-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.doctor-full-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.doctor-full-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Team Values Section */
.team-values-section {
  background: var(--white);
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.value-card {
  text-align: center;
  padding: 40px 30px;
}

.value-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.value-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.value-card p {
  color: var(--text-gray);
  line-height: 1.8;
}

/* Support Staff Section */
.support-staff-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.staff-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.staff-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: var(--secondary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--white);
}

.staff-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--dark-text);
}

.staff-card p {
  color: var(--text-gray);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
  .doctors-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .doctors-full-grid {
    grid-template-columns: 1fr;
  }

  .staff-grid {
    grid-template-columns: 1fr;
  }
}
