/* RAW Testimonials — Front-end Styles
   ============================================================ */

/* Grid wrapper */
.raw-testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

/* ── Column widths ─────────────────────────────────────────── */

.raw-testimonials-col-1 .raw-testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
}

.raw-testimonials-col-2 .raw-testimonial-card {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
}

.raw-testimonials-col-3 .raw-testimonial-card {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
}

.raw-testimonials-col-4 .raw-testimonial-card {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
}

/* ── Individual card ───────────────────────────────────────── */

.raw-testimonial-card {
    position: relative;
    background-color: #f4f4f4;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
    padding: 20px 20px 60px; /* extra bottom padding for attribution */
    box-sizing: border-box;
}

/* ── Category badge — top right ────────────────────────────── */

.raw-testimonial-cat {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: #E07B2A;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    line-height: 1.4;
    white-space: nowrap;
}

/* ── Title ─────────────────────────────────────────────────── */

.raw-testimonial-card .raw-testimonial-title {
    color: #1A2C4E;
    font-size: 1.2em;
    font-weight: 700;
    margin: 0 0 12px;
    padding: 0;
    text-align: left;
    line-height: 1.3;
    /* keep clear of the category badge */
    padding-right: 110px;
}

/* ── Body content ──────────────────────────────────────────── */

.raw-testimonial-body {
    text-align: left;
    color: #333333;
    font-size: 0.95em;
    line-height: 1.6;
}

.raw-testimonial-body p:last-child {
    margin-bottom: 0;
}

/* ── Attribution — bottom right ────────────────────────────── */

.raw-testimonial-attribution {
    position: absolute;
    bottom: 16px;
    right: 16px;
    left: 16px;
    text-align: right;
    margin: 0;
    font-size: 0.85em;
    font-weight: 600;
    color: #555555;
    line-height: 1.4;
}

/* ── "No testimonials" message ─────────────────────────────── */

.raw-testimonials-none {
    color: #777;
    font-style: italic;
}

/* ── Responsive — collapse to 1 column on small screens ────── */

@media ( max-width: 767px ) {
    .raw-testimonials-col-2 .raw-testimonial-card,
    .raw-testimonials-col-3 .raw-testimonial-card,
    .raw-testimonials-col-4 .raw-testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media ( min-width: 768px ) and ( max-width: 1024px ) {
    .raw-testimonials-col-3 .raw-testimonial-card,
    .raw-testimonials-col-4 .raw-testimonial-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}
