.rvw-section *,
.rvw-section *::before,
.rvw-section *::after {
    box-sizing: border-box;
}


.rvw-layout {
    display: flex;
    gap: 48px;
    align-items: center;
}

.rvw-col-image {
    position: relative;
	width: 50%;
}

.rvw-img-stage {
    position: relative;
    width: 100%;
	padding-right: 78px;
}

.rvw-img-slot--next {
	margin: 40px 0 24px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    overflow: hidden;
    z-index: 1;
}
.rvw-img-slot--main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
}

.rvw-img-inner-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.rvw-img-cell {
    flex: 0 0 100%;
    min-width: 100%;
	border-radius: 16px;
}

.rvw-img-cell img {
    width: 100%;
    height: 100% !important;
    display: block;
    object-fit: cover;
	border-radius: 16px !important;
}

.rvw-img-bg {
    width: 100%;
    height: 100%;
	border-radius: 16px;
}

.rvw-col-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
	width: 50%;
}

.rvw-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #000000;
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.3px;
}

.rvw-slides-wrap {
    overflow: hidden;
}

.rvw-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.rvw-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rvw-slide__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.rvw-slide__person {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rvw-avatar {
    width: 121px;
    height: 121px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8eef8;
}

.rvw-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rvw-avatar__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rvw-avatar__placeholder svg {
    width: 100%;
    height: 100%;
}

.rvw-slide__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rvw-slide__name {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.rvw-slide__pos {
    font-size: 13px;
    color: #000000;
}

.rvw-stars {
    display: flex;
    gap: 3px;
    margin-top: 6px;
}

.rvw-star {
    font-size: 26px;
    color: #ddd;
    line-height: 1;
}

.rvw-star--on {
    color: #FFD500;
}

.rvw-quote-icon {
    flex-shrink: 0;
    align-self: flex-start;
}

.rvw-quote-icon img {
    width: 118px;
    height: auto;
    display: block;
}

.rvw-slide__body {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 28px 32px;
}

.rvw-slide__text {
    font-size: 14px;
    color: #000000;
    line-height: 1.75;
    margin: 0;
}

.rvw-col-content .rvw-btn {
	position: absolute;
    bottom: 150px;
    right: -25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #222;
    background: #fff;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
    flex-shrink: 0;
}

.rvw-btn:hover {
    background: #f0f0f0;
}

.rvw-btn svg {
    width: 28px;
    height: auto;
    display: block;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 991px) {
    .rvw-layout {
        flex-direction: column;
        gap: 32px;
    }
	.rvw-col-content, .rvw-col-image {
		width: 100%;
	}
	.rvw-img-stage {
		padding-right: 40px;
	}
	.rvw-col-content .rvw-btn {
		position: unset;
	}
}

@media (max-width: 767px) {
    .rvw-avatar { width: 80px; height: 80px; }
    .rvw-slide__name { font-size: 18px; }
    .rvw-star { font-size: 20px; }
    .rvw-quote-icon img { width: 80px; }
    .rvw-slide__body { padding: 20px; }
    .rvw-btn { width: 42px; height: 42px; }
    .rvw-btn svg { width: 22px; }
}
