section.slider {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    overflow-x: hidden;
    position: relative;

    & .splide {
        max-inline-size: calc(100vw - 3rem);
    }

    & .splide__list {
        gap: 2rem;
    }
}
section.slider .splide__slide {
    margin-inline-end: 0 !important;
    text-align: center;
}
section .swiper-container .product-box {
    border: none;
    padding: 0;
}
.swiper-container {
    width: 96%; /* Dopasowanie do szerokoÅ›ci rodzica */
    height: auto;
    overflow: hidden; /* Ukrycie nadmiaru wewnÄ™trznych elementÃ³w */
    margin: auto;
}
.swiper-container span.amount, 
.swiper-container span.amount bdi,
.swiper-container span.amount .woocommerce-Price-currencySymbol {
    font-weight: var(--font-secondary-bold-weight);
    color: var(--main-accent)
}
.swiper-button-next,
.swiper-button-prev {
    color: var(--text);
    width: 1rem;
    height: 1rem;
    z-index: 10;
}
.swiper-button-next:after, 
.swiper-button-prev:after {
    font-size: 1.45rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--main-accent);
}

@media all and (max-width: 767px) {
    section.slider {
        gap: var(--tablet-gap);
    }
}

/* team slider */
section.team {
    display: flex;
    flex-direction: column;
    gap: var(--desktop-gap);
}
section.team .person-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: flex-start;
}
section.team .person-box .img-box {
    max-height: 380px;
    display: flex;
    justify-content: center;
}
section.team .person-box img {
    height: 100%;
    object-fit: contain;
}
section.team .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--desktop-gap);
}
section.team .content-wrapper {
    display: flex;
    flex-direction: column;
}
section.team .content-wrapper .desc-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1rem;
    max-height: 120px;
    overflow-y: scroll;
    padding-right: 1rem;
}
section.team h3.name {
    font-size: 1.65rem;
    color: var(--main-accent);
}
section.team p.position {
    font-size: 0.85rem;
    font-weight: var(--font-primary-bold-weight);
    margin-bottom: 4px;
}
/* team slider */




/* brand logotypes slider */
section.slider.brand-logotypes {
    width: 100%;
    background-color: var(--tlo-background);
    padding: 4rem var(--default-content-padding);
}
section.slider.brand-logotypes .brand-wrapper {
    width: var(--desktop-content);
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5em;
}
section.slider.brand-logotypes img {
    height: 8rem;
    transition: .4s;
    margin-inline: auto;
}
section.slider.brand-logotypes a:hover img {
    transform: scale(1.1);
}

/* brand logotypes slider */


section.slider .splide__arrows.splide__arrows--ltr {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
section.slider .splide__arrow {
    position:unset;
    transform: unset;
    margin-top: 1rem;
    /* inline-size: 2.5em; */
    /* block-size: 2.5em; */
    font-size: 1rem;
}