/* ============================================================
   Frontend Testimonials  [cf_testimonials]
   Add to public/css/testimonials.css  (or append to shortcodes.css)
   ============================================================ */

/* ── Grid ────────────────────────────────────────────────────── */

.cf-testimonials {
    display: grid;
    grid-template-columns: repeat( auto-fill, minmax( 280px, 1fr ) );
    gap: 20px;
}

/* ── Card ────────────────────────────────────────────────────── */

.cf-testimonial {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ── Quote ───────────────────────────────────────────────────── */

.cf-testimonial__quote {
    margin: 0;
    padding: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #333;
    position: relative;
}

/* Opening quotation mark */
.cf-testimonial__quote::before {
    content: '\201C';
    font-size: 2.5rem;
    line-height: 0;
    vertical-align: -0.5rem;
    color: #d0d0d0;
    margin-right: 2px;
}

/* ── Footer ──────────────────────────────────────────────────── */

.cf-testimonial__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

/* ── Avatar initial circle ───────────────────────────────────── */

.cf-testimonial__avatar {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ── Meta ────────────────────────────────────────────────────── */

.cf-testimonial__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cf-testimonial__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cf-testimonial__product {
    font-size: 0.775rem;
    color: #2d7a4f;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cf-testimonial__date {
    font-size: 0.75rem;
    color: #aaa;
}

/* ── Responsive ──────────────────────────────────────────────── */

@media ( max-width: 600px ) {
    .cf-testimonials {
        grid-template-columns: 1fr;
    }
}