.fs-slider-wrap {
	position: relative;
	padding: 0 50px;
	box-sizing: border-box;
}
.fs-read-more{
    display:inline-block;
    margin-top:8px;
    color:#13172b;
    cursor:pointer;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
}

.fs-read-more:hover{
    text-decoration:underline;
}
.fs-slider-track-outer {
	overflow: hidden;
}

.fs-slider-track {
	display: flex;
	transition: transform 0.45s ease;
	will-change: transform;
}

.fs-slide {
	flex-shrink: 0;
	box-sizing: border-box;
	padding: 10px;
}

.fs-box {
	background: #ffffff;
	border: 1px solid #eaeaea;
	border-radius: 12px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
	padding: 28px 24px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 210px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fs-box:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.fs-rating {
	margin-bottom: 10px;
}

.fs-star {
	color: #e0e0e0;
	font-size: 16px;
}

.fs-star.is-filled {
	color: #f5a623;
}

.fs-message {
	font-size: 15px;
	line-height: 1.6;
	color: #333;
	margin: 0 0 18px;
	flex-grow: 1;
}

.fs-author {
	display: flex;
	align-items: center;
	gap: 10px;
}
.fs-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #c3942e;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fs-name {
	font-weight: 600;
	color: #222;
	font-size: 14px;
}

.fs-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid #ddd;
	background: #fff;
	color: #333;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fs-nav:hover {
	background: #4a56e2;
	color: #fff;
	border-color: #4a56e2;
}

.fs-prev {
	left: 0;
}

.fs-next {
	right: 0;
}

.fs-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}

.fs-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
}

.fs-dot.is-active {
	background: #4a56e2;
}

.fs-empty {
	text-align: center;
	color: #888;
}

@media (max-width: 782px) {
	.fs-slider-wrap {
		padding: 0 40px;
	}
    .fs-nav {
    display: none;
}
}

@media (min-width: 992px) {
    .fs-dots {
        display: none;
    }
}