.testimonial-item {
    text-align: center;
    max-width: 100%;
    margin: auto;
    position: relative;
}

.testimonial-content {
    font-size: 18px;
    line-height: 1.6;
    position: relative;
    padding: 40px 30px; /* tạo khoảng trống để icon không đè text */
}

.testimonial-content p{
    max-width: 750px;
    margin: auto;
}

.testimonial-content img {
    width: 80px;  /* kích thước icon */
    height: auto;
    position: absolute;
}

.testimonial-content .icon-open {
    top: 0px;   /* đẩy lên trên */
    left: 13%;  /* sang bên trái */
}

.testimonial-content .icon-close {
    bottom: 0; /* đẩy xuống */
    right: 13%;  /* sang phải */
}

.testimonial-author {
    font-weight: 500;
    font-size: 18px;
    padding-top: 15px;
}

/* Nút điều hướng */
.swiper-button-prev,
.swiper-button-next {
    border: 1px solid #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
}

.swiper-button-prev::after,
.swiper-button-next:after {
    font-size: 20px;
    color: #000;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .testimonial-content {
        font-size: 16px;
        line-height: 1.5;
        padding: 30px 31px;
    }
    .testimonial-content p{
        max-width: 300px;
    }
    .testimonial-content img {
        width: 40px; /* icon nhỏ lại trên mobile */
    }

    .testimonial-content .icon-open {
        top: 10%;
        left: 0%;
    }

    .testimonial-content .icon-close {
        bottom: 10%;
        right: 0;
    }

    .testimonial-author {
        font-size: 16px;
        padding-top: 10px;
    }

    .swiper-button-prev {
        width: 30px;
        height: 30px;
        left: 5px;
    }
    .swiper-button-next {
        width: 30px;
        height: 30px;
        right: 5px;
    }

    .swiper-button-prev::after,
    .swiper-button-next:after {
        font-size: 16px;
    }
}
