/* === Hero Slider Einhell Style === */

/* Ustawienie kontenera treści w dolnej 1/3 */
.item__content {
  position: absolute;
  bottom: 14%; /* nieco wyżej */
  left: 0;
  width: 100%;
  z-index: 10;
}

.item__content .content-wrapper {
  /*max-width: 1300px; */  /* szerokość treści jak na einhell.de */
  margin: 0 auto;
  padding: 0 20px;
  padding-left: clamp(40px, 8vw, 140px); /* bardziej w prawo */
}

.item__content .content__content {
  color: #fff;          /* białe napisy */
  text-align: left;     /* wyrównanie do lewej */
}

/* Nagłówki */
.item__content .content__title h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 15px;
  line-height: 1.2;
	  text-shadow: 0 2px 10px rgba(0, 0, 0, 1)
}

/* Wymusza pełną szerokość slidera niezależnie od kontenera nadrzędnego */
.ehs-swiper.swiper {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
}

.hero__item {
  position: relative;
}

.hero__item .item-wrapper {
  position: relative;
  z-index: 2;
}

.hero__item .ehs-slide-link {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 1;
  text-indent: -9999px;
}

.item__content .content__subtitle h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin: 0 0 25px;
  line-height: 1.3;
	  text-shadow: 0 2px 10px rgba(0, 0, 0, 1)
}

/* === RWD === */

/* Tablet */
@media (max-width: 1024px) {
  .item__content {
    bottom: 12%;
  }
  .item__content .content__title h2 {
    font-size: 2.2rem;
  }
  .item__content .content__subtitle h3 {
    font-size: 1.2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .item__content {
    bottom: 10%;
    text-align: center;
  }
  .item__content .content-wrapper {
    padding: 0 15px;
  }
  .item__content .content__title h2 {
    font-size: 1.8rem;
  }
  .item__content .content__subtitle h3 {
    font-size: 1rem;
  }
  .item__content .content__link a {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
