.telex-reviews-wrapper {
    padding: 48px 0;
	font-family: "Montserrat", sans-serif;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header h2 {
    font-size: 32px;
    font-weight: bold;
    color: #A37529;
    margin-bottom: 15px;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.rating-summary .stars {
    font-size: 24px;
}

.rating-summary .rating-text {
    color: white;
    font-size: 18px;
}

.reviews-grid {
    display: grid;
	gap: 16px;
	grid-template-columns: 1fr;
	padding: 0 0 16px 0;
}

.review-card {
    background: #F5F5F5;
    padding: 30px;
/*     border-radius: 0; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-50px);
}

.review-card.animate {
    animation: slideInLeft 0.6s ease forwards;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #8B7355;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.author-info{
	display: grid;
	justify-content: start;
	grid-template-rows: auto auto;
	justify-items: start;
}

.author-name {
    font-weight: bold;
    color: #333;
    font-size: 16px;
    margin-bottom: 3px;
}

.review-date {
    font-size: 14px;
	flex-basis: 100%;
	color: black;
}

.review-stars {
    font-size: 20px;
	display: flex;
}

.review-text {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
	text-align: left;
}

.reviews-cta {
    text-align: center;
}

.reviews-button {
    display: inline-block;
    padding: 15px 40px;
	background-color: #A37529;
	color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.reviews-button:hover {
	background-color: white;
}

.reviews-cta a:hover{
	color: #A37529;
}


/*  animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* media query */
@media  screen and (min-width: 768px){
	.telex-reviews-wrapper{
		padding: 100px 0;
	}
	.reviews-grid{
	grid-template-columns: repeat(2, 1fr);	
	}
	.review-card:nth-of-type(3){
		grid-column: 1/-1;
	}
	
}

@media screen and (min-width: 1024px){
	.reviews-grid{
	grid-template-columns: repeat(6, 1fr);	
		 padding: 0 20px 30px 20px;
	}
	.review-card:nth-of-type(1), .review-card:nth-of-type(2){
		grid-column: span 2;
	}
	.review-card:nth-of-type(3){
		grid-column: 5/-1;
	}
	.review-card:nth-of-type(4), .review-card:nth-of-type(5){
		grid-column: span 3;
	}
}

/* Carousel  */
.telex-reviews-carousel-wrapper {
    padding: 80px 0;
    background: #ffffff;
}

.telex-reviews-carousel-wrapper  .rating-summary .rating-text{
	color: black;
} 
.reviews-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    min-height: 350px;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease;
}

.review-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.review-slide.prev {
    transform: translateX(-100%);
}

.review-card-carousel {
    background: #F5F5F5;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #D4AF37;
    transform: scale(1.2);
}

.dot:hover {
    background: #b8941f;
}

@media (max-width: 768px) {
    .review-card-carousel {
        padding: 30px 20px;
    }
}