.netpeak-reviews.swiper {
	position: relative;
	max-width: 820px;  
	margin: 0 auto;      
	padding-bottom: 40px;   
	overflow: hidden;      
}

/* .review-wrapper__overflow
{
    overflow: visible;  
} */

.netpeak-reviews__wrapper {
	align-items: stretch;
}


.netpeak-reviews__slide {
	flex: 0 0 400px;       
	width: 400px;
}

@media (max-width: 480px) {
	.netpeak-reviews__slide {
		flex: 0 0 100%;
		width: 100%;
	}
    .netpeak-reviews__nav
    {
        top: unset !important;
        bottom: -20px;
    }
}


.review-card {
	height: 250px;
	border-radius: 32px;
	padding: 32px 28px;
	color: #111;
	display: flex;
}

.review-card__inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.review-card__title {
	margin: 0;
	font-size: 20px;
	line-height: 1.3;
	font-weight: 700;
}

.review-card__text {
	font-size: 14px;
	line-height: 1.6;
}

.review-card__author {
	margin-top: auto;
	display: flex;
	align-items: center;
	gap: 12px;
}

.review-card__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.review-card__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review-card__name {
	font-weight: 600;
	font-size: 14px;
}

.review-card__meta {
	font-size: 12px;
	opacity: 0.7;
}


.netpeak-reviews__nav {
	position: absolute;
	top: -60px;
	right: 0px;
	display: flex;
	gap: 12px;
	z-index: 5;
}

.netpeak-reviews__button {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid #111;
	background: #fff;
	display: flex;
    z-index:10;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.netpeak-reviews__button:hover {
	transform: translateY(-2px);
	background-color: #111;
	border-color: #111;
	color: #fff;
}

.netpeak-reviews__button--prev::before {
	content: "←";
	font-size: 18px;
}

.netpeak-reviews__button--next::before {
	content: "→";
	font-size: 18px;
}


.netpeak-reviews__pagination {
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	z-index: 4;
}


.netpeak-reviews__pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: #ccc;
	opacity: 1;
	margin: 0 4px !important;
}

.netpeak-reviews__pagination .swiper-pagination-bullet-active {
	background: #111;
}
