.test-grid.elumind-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.elumind-testimonials-grid .test-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 26px 24px;
    transition: box-shadow .3s;
}

.elumind-testimonials-grid .test-card:hover {
    box-shadow: 0 8px 28px rgba(26,46,74,.09);
}

.elumind-testimonials-grid .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.elumind-testimonials-grid .star {
    color: #f5b301;
    font-size: 16px;
    line-height: 1;
}

.elumind-testimonials-grid .test-txt {
    margin: 0 0 22px;
    color: #4a5568;
    font-size: 14px;
    line-height: 1.75;
}

.elumind-testimonials-grid .test-auth {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.elumind-testimonials-grid .av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1a2e4a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
    border: 1px solid;
}

.elumind-testimonials-grid .an {
    color: #1a2e4a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.elumind-testimonials-grid .ad {
    color: #6b7a8d;
    font-size: 12px;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .test-grid.elumind-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .test-grid.elumind-testimonials-grid {
        grid-template-columns: 1fr;
    }
}
