/* Обертка для изображения с контролами */
.doctors__img-wrapper {
  position: relative;
}

/* Мобильные стрелки навигации - скрыты по умолчанию */
.doctors__mobile-controls {
  display: none;
}

/* Показываем мобильные стрелки только на мобильных устройствах */
@media only screen and (max-width: 480px) {
  .doctors__mobile-controls {
    display: flex;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    padding: 0 10px;
    z-index: 10;
    pointer-events: none;
  }

  .doctors__mobile-prev,
  .doctors__mobile-next {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    color: rgb(73, 209, 200);
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
    font-size: 16px;
  }

  .doctors__mobile-prev:hover,
  .doctors__mobile-next:hover {
    background: #fff;
    opacity: 1;
    box-shadow: 0 8px 25px rgba(73, 209, 200, 0.4);
    transform: scale(1.05);
  }

  .doctors__mobile-prev svg,
  .doctors__mobile-next svg {
    display: none;
  }

  .doctors__mobile-prev::before {
    content: "❮";
  }

  .doctors__mobile-next::before {
    content: "❯";
  }
}
