/* RAW Testimonials — Front-end Styles (dark theme)
   ============================================================ */
.raw-testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

.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 — dark, matches .card elsewhere on the site ── */
.raw-testimonial-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(139, 92, 246, 0.2) !important;
    border-radius: 16px !important;
    padding: 20px 20px 56px !important;
    box-sizing: border-box;
}

/* ── Category badge — gold, dark text for contrast ─────────────── */
.raw-testimonial-cat {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: #ffb020 !important;
    color: #0b1220 !important;
    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 — off-white, sized down to fit the card comfortably ─── */
.raw-testimonial-card .raw-testimonial-title {
    color: #f4f6fb !important;
    font-size: 1.05em !important;
    font-weight: 700;
    margin: 0 0 10px;
    padding: 0;
    padding-right: 100px;
    text-align: left;
    line-height: 1.3;
}

/* ── Body content ──────────────────────────────────────────────── */
.raw-testimonial-body {
    text-align: left;
    color: #cdd3e0 !important;
    font-size: 0.9em !important;
    line-height: 1.6;
}
.raw-testimonial-body p:last-child {
    margin-bottom: 0;
}

/* ── Attribution — gold, matches accent used elsewhere ──────────── */
.raw-testimonial-attribution {
    position: absolute;
    bottom: 16px;
    right: 16px;
    left: 16px;
    text-align: right;
    margin: 0;
    font-size: 0.82em;
    font-weight: 600;
    color: #ffb020 !important;
    line-height: 1.4;
}

.raw-testimonials-none {
    color: #a8b0c2 !important;
    font-style: italic;
}

@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);
    }
}