.t888-feature-slider-wrapper {
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.t888-feature-item {
    background-color: #fff;
    border-radius: 50px;
    padding: 15px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Gradient giống ảnh mẫu */
    background: var(--third-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Các loại icon/image khác nhau */
.feature-icon-wrapper i {
    font-size: 24px;
    color: #fff;
}

.feature-icon-wrapper img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.feature-text {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

/* Kiểu riêng cho các item tiếp theo nếu cần gradient khác */
.swiper-slide:nth-child(2n) .feature-icon-wrapper {
    /* background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%); */
    background: var(--third-color);
}

.swiper-slide:nth-child(3n) .feature-icon-wrapper {
    /* background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%); */
    background: var(--third-color);
}

/* Cho mượt mà trên mobile */
@media (max-width: 767px) {
    .t888-feature-item {
        padding: 10px 15px;
    }

    .feature-icon-wrapper {
        width: 50px;
        height: 50px;
    }
}