.specialists {
  max-width: 1280px;
  margin: auto;
  padding: 50px 1.5rem;
}

@media (min-width: 768px) {
  .specialists {
    padding: 80px 1.5rem;
  }
}

.specialists .container {
  max-width: 1232px;
  padding: 0px;
}

.specialists-head {
  margin-bottom: 60px;
  text-align: center;
}

.specialists-head h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: #0f172a;
}

.specialists-head h2 .highlight {
  color: #1392ec;
}

.specialists-head p {
  font-size: 1rem;
  line-height: 1.75rem;
  color: #475569;
  margin: 0px;
}

.specialists .specialists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.specialists .doctor-card {
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid #e0f2fe;
  transition: all 0.4s ease;
}

.specialists .doctor-card:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.specialists .doctor-card .doctor-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.specialists .doctor-card .doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.specialists .doctor-card:hover .doctor-image img {
  transform: scale(1.05);
}

.specialists .doctor-content {
  padding: 32px;
}

.specialists .doctor-content h3 a {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0f172a;
  text-decoration: none;
}

.specialists .role {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #3b82f6;
  margin-bottom: 16px;
}

.specialists .quote {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.specialists .badge {
  display: inline-block;
  background: #f1f5f9;
  color: #3b82f6;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}

@media (max-width: 767px) {
  .specialists .specialists-grid {
    grid-template-columns: 1fr;
  }

  .specialists .specialists-header h2 {
    font-size: 30px;
  }
}