.feedback-container {
    /* Section specific styles */
    overflow: hidden;
    background-color: #EEEEEE;
    border-radius: 0;
    padding: 40px 0;
}



.feedback-container .swiper-container {
    width: 100%;
    position: relative;
    padding: 0;
    /* 确保容器有足够高度 */
    /* 确保精确对齐 */
    overflow: hidden;
    box-sizing: border-box;
}

.feedback-container .swiper-wrapper {
    height: auto;
    /* 确保wrapper能够适应内容高度 */
    align-items: stretch;
    /* 确保左对齐 */
    justify-content: flex-start;
    /* 精确定位 */
    position: relative;
    box-sizing: border-box;
}

.feedback-container .swiper-slide {
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    height: auto;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    /* 自动宽度调整 */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    transform: translateZ(0);
}

.feedback-container .person {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    flex-shrink: 0;
}

.feedback-container .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #D9D9D9;
    margin-right: 12px;
    flex-shrink: 0;
}

.feedback-container .person h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #000;
    line-height: 1.33em;
}


.feedback-container .category {
    color: #F75105;
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.33em;
    flex-shrink: 0;
    text-align: center;
}

.feedback-container .content-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #000;
    text-align: left;
    /* 让内容区域填充剩余空间 */
    flex: 1;
    display: block;
    position: relative;
    padding: 0;
}

.feedback-container .swiper-controls {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    min-height: 48px;
}

.feedback-container .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    bottom: auto;
    left: 0;
    position: relative;
}


.feedback-container .navigation-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feedback-container .swiper-button-prev,
.feedback-container .swiper-button-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* 确保所有尺寸下按钮大小一致 */
    min-width: 48px;
    min-height: 48px;
    flex-shrink: 0;
}

.feedback-container .swiper-button-prev {
    background-color: #FFFFFF;
    background-image: url('/images/feedback/arrow-left-kocok.svg');
}

.feedback-container .swiper-button-next {
    background-color: #F75105;
    background-image: url('/images/feedback/arrow-right-active.svg');
}

.feedback-container .swiper-button-prev::after,
.feedback-container .swiper-button-next::after {
    display: none;
}

/* Swiper Pagination Bullet Styles */
.feedback-container .swiper-pagination-bullet {
    background-color: #F75105;
    opacity: 0.3;
}

.feedback-container .swiper-pagination-bullet-active {
    background-color: #F75105;
    opacity: 1;
}


/* 在宽度不够时自动换行 */
@media (max-width: 400px) {
    .testimonial-title {
        display: flex;
        flex-direction: column;
    }
}