.review-slider .swiper-container {
	overflow: hidden;
}

.review-slider-images {
	display: flex;
    justify-content: revert;
    margin-bottom: 1rem;
    align-items: center;
    width: 100%;
    gap:
  1rem;
	  width: 100%;
}

.review-slider-images img {
	max-width: 100px;
	height: auto;
}

.review-content {
	color: var(--IS-Secondary, #2E2F7E);
	font-family: var(--IS-Font-Header, Brockmann);
	font-size: 41px;
	font-style: normal;
	font-weight: 600;
	line-height: 50px; /* 121.951% */
	letter-spacing: -0.82px;
}

.review-author {
	color: var(--Gray-900, #181D27);
	font-family: var(--IS-Font-Header, Brockmann);
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px; /* 155.556% */
	padding-bottom: 0;
}

.review-stanowisko{
	color: var(--IS-BLACK, #012438);
	font-family: var(--IS-Font-Header, Brockmann);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 150% */
}
.review-slide {
	height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  text-align: left !important;
  align-items: flex-start;
}

.review-slider .swiper-button-next,
.review-slider .swiper-button-prev {
    display: none !important;
}
.review-author-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.review-author-wrap {
    flex: 1;
}

.review-nav-arrows {
    display: flex;
    gap: 12px;
}

.review-nav-arrows .swiper-button-prev,
.review-nav-arrows .swiper-button-next {
    display: flex;
    width: 56px;
    height: 56px;
    justify-content: center;
    align-items: center;
    border-radius: 28px;
    border: 1px solid #FFF;
    background: #FFF;
    cursor: pointer;
}

.review-nav-arrows img {
    width: 24px;
    height: 24px;
}


/* Ukryj natywne strzałki Swipera */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.review-author-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    gap: 20px;
	  width: 100%;
    flex-wrap: wrap;
}

.review-author-wrap {
    flex-grow: 1;
}

.review-nav-arrows-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-nav-arrows {
    display: flex;
    gap: 12px;
    padding-right: 3rem;
    margin-top: 0px;
}

.custom-swiper-prev,
.custom-swiper-next {
    display: flex;
    width: 56px;
    height: 56px;
    justify-content: center;
    align-items: center;
    border-radius: 28px;
    border: 1px solid #FFF;
    background: #FFF;
    cursor: pointer;
    transition: background 0.3s;
}

.custom-swiper-prev:hover,
.custom-swiper-next:hover {
    background: #f2f2f2;
}

.review-nav-arrows img {
    width: 24px;
    height: 24px;
}




@media (max-width: 768px) {

	.review-content {
	  font-size: 26px;
	  line-height: 34px;
	}

	.review-nav-arrows {
	  gap: 6px;
	  padding-right: 10px;
	}

	.custom-swiper-prev, .custom-swiper-next {
	  width: 36px;
	  height: 36px;
	}

	.review-author-row {
	  margin-top: 30px;
	}

	.review-author {
	  font-size: 16px;
	}

	.review-stanowisko {
	  font-size: 14px;
	}

}

/* ===== DST REVIEWS GRID ===== */
.dst-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    padding: 0px;
}

.dst-review-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

/* Tło zdjęcia */
.dst-review-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(30%) brightness(0.8);
}

.dst-review-card:hover .dst-review-card-bg {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(0.6);
}

/* Overlay z treścią */
.dst-review-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.5s ease, background 0.5s ease;
}

.dst-review-card:hover .dst-review-card-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.75);
}

/* Treść opinii */
.dst-review-card-content {
    color: #ffffff;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dst-review-card:hover .dst-review-card-content {
    transform: translateY(0);
}

.dst-review-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
    color: #ffffff;
}

.dst-review-author-info {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    margin-top: 15px;
}

.dst-review-author-name {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-family: 'Josefin Sans', sans-serif;
}

.dst-review-author-position {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Linia rosnąca od dołu */
.dst-review-card-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 12px;
    height: 0;
    background: #159cd0;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.dst-review-card:hover .dst-review-card-line {
    height: 100%;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .dst-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .dst-review-text {
        font-size: 16px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .dst-reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .dst-review-card-overlay {
        padding: 20px;
    }
    
    .dst-review-text {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .dst-review-author-name {
        font-size: 15px;
    }
    
    .dst-review-author-position {
        font-size: 13px;
    }
    
    .dst-review-card-line {
        width: 8px;
    }
}
