.el-testimonial-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

@media (max-width: 992px) {
    .el-testimonial-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .el-testimonial-items {
        grid-template-columns: 1fr;
    }
}

.testimonial-item {
    background: linear-gradient(90deg, rgba(105, 85, 180, 0.1) 0%, rgba(105, 85, 180, 0.5) 50%, rgba(105, 85, 180, 0.1) 100%);
    padding: 40px;
    position: relative;
}

.testimonial-item:before {
    background: linear-gradient(90deg, rgba(152, 65, 255, 0.1) 0%, rgba(152, 65, 255, 1) 50%, rgba(152, 65, 255, 0.1) 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
}

.testimonial-item:after {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.testimonial-item .testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-item .testi-author img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(152, 65, 255, 0.3);
}

.testimonial-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 5px;
}

.testimonial-item h4 {
    color: #ddd;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.testimonial-item .ratings {
    line-height: 1;
    margin-top: 10px;
}

.testimonial-item .ratings li {
    display: inline-block;
    color: #999;
    font-size: 15px;
    line-height: 1;
}

.testimonial-item .ratings.star-5 li {
    color: #ff9629;
}

.testimonial-item .ratings.star-4 li:nth-child(-n+4) {
    color: #ff9629;
}

.testimonial-item .ratings.star-3 li:nth-child(-n+3) {
    color: #ff9629;
}

.testimonial-item .ratings.star-2 li:nth-child(-n+2) {
    color: #ff9629;
}

.testimonial-item .ratings.star-1 li:nth-child(-n+1) {
    color: #ff9629;
}