/* ===============================
   Max Quality – Our Doctors
   =============================== */

.clinic-doctors-section {
  padding-block: 3rem 4rem;
  background: #f5f7fb;              /* softer than plain bg-light */
}

.clinic-doctors-section h3 {
  color: #1b9b4a;                   /* Clover green */
  font-size: 1.6rem;
}

.clinic-doctors-section .clinic-section-subtitle {
  font-size: 0.95rem;
  color: #6c757d;
}

/* Doctor cards */

.doctor-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 20px;
  padding: 1.4rem 1.25rem 1.6rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

/* Photo frame */

.doctor-photo-wrapper {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 0.9rem;
  border: 3px solid rgba(27, 155, 74, 0.40); /* Clover green halo */
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
}

.doctor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Typography inside cards */

.doctor-card h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #111827;
}

.doctor-card small {
  font-size: 0.87rem;
  line-height: 1.3;
  color: #6b7280;
}

/* Responsive tweaks */

@media (max-width: 767.98px) {
  .clinic-doctors-section {
    padding-block: 2.5rem 3rem;
  }

  .doctor-card {
    padding: 1.2rem 1rem 1.4rem;
    border-radius: 16px;
  }

  .doctor-photo-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 0.7rem;
  }
}
