.doctors-section {
  padding: 2rem 5rem 5.4rem;
  background: var(--page);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
}

.doctor-card {
  display: flex;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(23, 76, 45, 0.08);
  border: 1px solid rgba(23, 76, 45, 0.12);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.doctor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 58px rgba(23, 76, 45, 0.14);
}

.doctor-image-wrapper {
  flex: 0 0 220px;
  background: #eef3ed;
}

.doctor-image-wrapper img,
.placeholder-image {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  opacity: 0.4;
}

.placeholder-image svg {
  width: 64px;
  height: 64px;
}

.doctor-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctor-info h3 {
  margin-bottom: 0.5rem;
  color: var(--green-dark);
  font-size: 1.6rem;
}

.doctor-degree {
  font-weight: 800;
  color: var(--leaf);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.doctor-college {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 1050px) {
  .doctors-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

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

@media (max-width: 600px) {
  .doctors-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .doctor-card {
    flex-direction: column;
  }
  
  .doctor-image-wrapper {
    flex: 0 0 240px;
  }

  .doctor-image-wrapper img,
  .placeholder-image {
    min-height: 240px;
  }

  .doctor-info {
    padding: 1.25rem 1rem 1.4rem;
  }

  .doctor-info h3 {
    font-size: 1.3rem;
  }

  .doctor-degree {
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  .doctor-image-wrapper {
    flex-basis: 210px;
  }

  .doctor-image-wrapper img,
  .placeholder-image {
    min-height: 210px;
  }
}
