/* 병원 홍보이미지(상단 비주얼 영역) */
.hospital-images {
  position: relative;
}

.hospital-images .swiper-container {
  position: relative;

  width: 100%;
  height: 400px;
}

.hospital-images .swiper-slide .image {
  width: 100%;
  height: 100%;

  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hospital-images .swiper-slide .image img {
  width: 100%;
  object-fit: cover;
}

.hospital-images .swiper-slide .image p {
  position: absolute;
  left: 10px;
  bottom: 5px;

  margin: 0;
  padding: 5px 14px;

  background: #000;
  border-radius: 4px;

  font-size: 11px;
  font-weight: 700;

  opacity: 0.8;
  color: #fff;
}

.hospital-images .swiper-container .swiper-indicator {
  position: absolute;
  right: 10px;
  bottom: 10px;

  width: auto;
  padding: 4px 14px;

  border: none;
  border-radius: 4px;
  background-color: #fff;

  font-size: 11px;
  text-align: center;

  opacity: 0.8;
  z-index: 2;
}

.hospital-images .swiper-container .swiper-indicator .current {
  font-weight: 700;
  font-size: 12px;
}

.hospital-images .swiper-slide .video-player {
  position: relative;
  overflow: hidden;

  width: 100%;
  height: 100%;

  background: #000;
  text-align: center;
}

.hospital-images .swiper-slide .video-player iframe,
.hospital-images .swiper-slide .video-player object,
.hospital-images .swiper-slide .video-player embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  width: 100%;
  height: 100%;
}

/* -----------------------------------------------------------
  ------ mobile ------
--------------------------------------------------------------  */
.mobile .hospital-images .swiper-container {
  max-height: 48vw;
}
