/* Hlavný kontajner */
.swiper-sluzby {
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 40px 0;
    box-sizing: border-box;
    position: relative;
}

/* Slide */
.sluzba {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Obrázok */
.obrazok-sluzba {
    text-align: center;
    margin-bottom: 15px;
}
.obrazok-sluzba img {
    width: 80px;
    height: auto;
}

/* Texty */
.nadpis-sluzba {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}
/* .text-sluzba {
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    color: #444;
} */

/* Šípky */
.swiper-sluzby-button-prev,
.swiper-sluzby-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #7eff04; 
    width: 40px;
    height: 40px;
    z-index: 10;
    cursor: pointer;
}

/* Štýlovanie SVG ikon */
.swiper-sluzby-button-prev svg,
.swiper-sluzby-button-next svg {
    width: 100%;
    height: 100%;
}

/* Posun mimo obsahu */
.swiper-sluzby-button-prev {
    left: -60px;
}
.swiper-sluzby-button-next {
    right: -60px;
}

/* Pagination */
.swiper-pagination-sluzby {
    margin-top: 10px;
    text-align: center;
}
.swiper-pagination-sluzby .swiper-pagination-bullet-active {
    background: #333;
}

/* Mobil – šípky vnútri */
@media (max-width: 767px) {
    .swiper-sluzby-button-prev {
        left: 10px;
    }
    .swiper-sluzby-button-next {
        right: 10px;
    }
}




/* Swiper Wrapper */
.swiper-wrapper {
  display: flex;
  align-items: stretch; /* Toto je kľúčové! */
}

/* Prispôsobenie výšky slajdov */
.swiper-slide.sluzba {
  height: auto; /* Zabezpečí, že sa prispôsobí obsahu */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Zabezpečenie, že textová oblasť sa roztiahne */
.text-sluzba {
  flex-grow: 1; /* Toto je dôležité! */
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  color: #444;
}

