.med-accordion .med-item {
  border-top: 1px solid #e0e0e0;
}

.med-title {
  cursor: pointer;
  padding: 10px 0;
  font-weight: inherit;
}

.med-content {
  display: none;
}

/* плюс/минус */
.med-title::after {
  content: "+";
  float: right;
}

.med-item.active .med-title::after {
  content: "-";
}




.doctor-cards {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px;
  font-family: inherit;
}

.doctor-card {
  display: flex;
  gap: 24px;
  border: 1px solid #dfe7e4;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  padding: 16px;
  margin-bottom: 20px;
  align-items: center;
}

/* Фото */
.doctor-card__image img {
  width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

/* Правая часть */
.doctor-card__content {
  flex: 1;
  text-align: center;
}

.doctor-card__name {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 6px;
}

.doctor-card__position {
  font-weight: 600;
  color: #1681da;
  margin-bottom: 10px;
}

.doctor-card__info {
  line-height: 1.5;
  font-size: 0.95em;
}

.doctor-card__highlight {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #f3f8fa;
  border: 1px dashed #dae0f1;
  font-size: 0.9em;
}

/* Адаптив */
@media (max-width: 768px) {
  .doctor-card {
    flex-direction: column;
    text-align: center;
  }

  .doctor-card__image img {
    width: 100%;
    height: auto;
  }
}

