
/*  Слайдер 100% высоты для поля */
.slide-full-height {
  width: 100%;
  height: calc(100vh - 100px); /* или 82 для admin */
  object-fit: cover;
  object-position: left center;
  display: block;
}

#title-slide {
  color: darkorange;
  text-align: center;
  font: 400 90px/90px 'roadkillalternates';
}

.body_style_slider {
  text-align: justify;
  font-size: 25px;
  color: #ffffff;
  font-weight: 400;
  line-height: normal;
  text-shadow: 0 0 5px #000;
}

.carousel-caption {
  position: absolute;
  top: 25%;
  width: 100%;
  margin: 0 auto;
  text-align: justify;
  font-size: 25px;
  color: #ffffff;
  font-weight: 400;
  line-height: normal;
  text-shadow: 0 0 5px #000;
  z-index: 100;
  max-width: 60%;
  background: #3333338f;
  border-radius: 10px;
  padding: 2%;
  height: fit-content;
}

.carousel-caption p {
  font-family: "PT Sans", sans-serif;
  text-align: justify;
  font-size: 25px;
  color: #ffffff;
  font-weight: 400;
  line-height: normal;
  text-shadow: 0 0 5px #000;
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ (<992px) ===== */
@media (max-width: 991.98px) {
  #title-slide {
    font: 400 75px/90px 'roadkillalternates';
  }

  .carousel-caption {
    max-width: 80%;
    font-size: 20px;
    left: 10%;
    right: 10%;
  }

  .carousel-caption p {
    font-size: 20px;
  }

}