/* ===========  KARTY  =========== */
.opinie-swiper .swiper-slide {
    background: #FFF9E8;
    border-radius: 20px;
    padding: 16px;
    overflow: hidden;
    height: 200px;
    width: 370px;
}

/* Tekst w karcie */
.opinie-swiper .opinia-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: -webkit-fill-available;
    justify-content: space-evenly;
}

.opinie-swiper .opinia-item__tekst {
    margin: 0 0 12px;
    font-size: 1rem;
    line-height: 1.4;
}

.opinie-swiper .opinia-item__autor {
    margin: 0;
    font-size: 0.875rem;
    color: #555;
}

/* ===========  NAWIGACJA  =========== */
.nawigacja-swiper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    gap: 100px;
}

/* 1) Ukryj domyślne, absolutnie pozycjonowane strzałki wewnątrz .opinie-swiper */
.opinie-swiper>.swiper-button-prev,
.opinie-swiper>.swiper-button-next {
    display: none !important;
}

/* 2) Ustaw własne strzałki w nawigacji jako statyczne elementy przepływu */
.nawigacja-swiper .swiper-button-prev,
.nawigacja-swiper .swiper-button-next {
    position: relative !important;

    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    bottom: -15px;
}

.nawigacja-swiper .swiper-button-prev:after,
.nawigacja-swiper .swiper-button-next:after {
    color: #333;
    font-size: 16px;
}

/* paginacja – kropki */
.nawigacja-swiper .swiper-pagination {
    bottom: -5px;
}

/* .nawigacja-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
  border-radius: 50%;
  cursor: pointer;
}
.nawigacja-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #FFD54E;
} */