.cfm-testimonials-list {
    list-style: none;
    margin: 0;
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 16px;
}

.cfm-testimonial-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
}
.cfm-testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cfm-testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.cfm-person{
    display: flex;
    align-items: center;
    gap: 8px;
}

.cfm-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cfm-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cfm-avatar-fallback {
    font-size: 24px;
    color: #9ca3af;
}

.cfm-testimonial-content {
    color: #374151;
}

.cfm-testimonial-meta {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.cfm-client-name { font-weight: 600; }
.cfm-client-title { color: #6b7280; }
.cfm-rating { color: #f59e0b; }

@media (min-width: 768px) {
    .cfm-testimonials-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .cfm-testimonials-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

