.tuteer-reviews-container {
    padding: 40px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.tuteer-reviews-swiper {
    padding-bottom: 70px !important;
    padding-left: 10px;
    padding-right: 10px;
}

.tuteer-reviews-policy {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #888;
    font-style: italic;
}

.swiper-button-next,
.swiper-button-prev {
    color: #917cb7 !important;
    background: #fff;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: #917cb7 !important;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.tuteer-review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.tuteer-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.tuteer-review-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    position: relative;
}

.tuteer-review-author-name, .tuteer-review-content{
    text-align:left;
}

.tuteer-review-avatar {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.tuteer-review-author-info {
    flex: 1;
}

.tuteer-review-author-name {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.tuteer-review-rating {
    display: flex;
    color: #ddd;
}

.tuteer-review-rating .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.tuteer-review-rating .dashicons.active {
    color: #ffb400;
}

.tuteer-review-google-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
}

.tuteer-review-google-icon img {
    width: 100%;
    height: auto;
}

.tuteer-review-content {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    min-height: 9.6em; /* 6 lines * 1.6 line-height */
}

.tuteer-review-content p {
    margin: 0;
}

@media (max-width: 991px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .tuteer-review-card {
        padding: 16px;
    }
}


.swiper-pagination {
    bottom: 20px !important;
}