.specialists-section {
  padding: 40px 20px;
  background: transparent !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.specialists-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.specialists-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.specialist-card {
  width: calc(33.333% - 16px);
  max-width: 350px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.specialist-card:hover {
  transform: translateY(-6px);
}

.specialist-image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
}

.specialist-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.specialist-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.specialist-divider {
  width: 40px;
  height: 2px;
  background-color: #666;
  margin: 8px 0 12px;
}

.specialist-role {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
  margin-bottom: 8px;
}

.specialist-expert {
  color: #d32f2f;
  font-weight: 600;
  font-size: 13px;
  margin-top: 8px;
}

.specialist-experience {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.specialist-reviews {
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

/* Адаптивность */
@media (max-width: 992px) {
  .specialist-card {
    width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .specialist-card {
    width: 100%;
  }
  .specialists-title {
    font-size: 24px;
  }
}