/* Root */
.info-carousel {
    position: relative;
    color: var(--wp--preset--color--czarny);
    overflow: hidden;
    max-width: unset !important;
}

/* Wyłączenie zaznaczania */
.info-carousel * {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Swiper */
.info-carousel .swiper-container {
    width: 100%;
    overflow: visible;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.info-carousel .swiper-slide {
    height: auto;
    display: flex;
}

/* Karta slajdu */
.info-carousel .info-item {
    width: 100%;
    background:  #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 36px;
    box-sizing: border-box;
}

/* Wnętrze: wiersz (ikonka + tekst) */
.info-carousel .info-item-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

/* Ikona */
.info-carousel .info-icon {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.info-carousel .info-icon img {
    max-width: 60px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Teksty */
.info-carousel .info-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-carousel .info-title {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
    color: var(--wp--preset--color--czarny);
}

.info-carousel .info-description {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--wp--preset--color--czarny);
}

.info-carousel .bottom-container{
    display: flex;
    justify-content: space-between;
}

/* Nawigacja i paginacja */
.info-carousel .swiper-nav {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 14px;
}

.info-carousel .swiper-pagination-info {
    width: auto;
}

.info-carousel .swiper-button-prev-info,
.info-carousel .swiper-button-next-info {
    display: flex;
    cursor: pointer;
}

.info-carousel .swiper-button-prev-info *,
.info-carousel .swiper-button-next-info * {
    transition: all 0.3s ease;
}

.info-carousel .swiper-button-prev-info:hover svg path,
.info-carousel .swiper-button-next-info:hover svg path {
    fill: #fff;
}

.info-carousel .swiper-button-prev-info svg rect,
.info-carousel .swiper-button-next-info svg rect {
    fill: transparent;
}

.info-carousel .swiper-button-prev-info:hover svg rect,
.info-carousel .swiper-button-next-info:hover svg rect {
    fill: var(--wp--preset--color--czarny);
}

/* CTA pod karuzelą */
.info-carousel .info-carousel-cta {
    margin-top: 12px;
    display: flex;
    justify-content: center;
}


@media (max-width: 781px){
    .info-carousel .bottom-container{
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }
    .info-carousel .info-carousel-button,
    .info-carousel .info-carousel-cta {
        width: 100%;
    }
}
