﻿/* Option 1 */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: #2a4d7a;
    text-align: right;
    font-size: 0.95rem;
}

/* Option 2 */

/*.testimonial-card-blue {
    background: #e8f3ff;
    border: 1px solid #c7ddf5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

    .testimonial-card-blue .testimonial-text {
        color: #2a4d7a;
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .testimonial-card-blue .testimonial-author {
        text-align: right;
        font-weight: 600;
        color: #1d3a5c;
    }*/

/* Option 3 */

/*.story-card {
    background: #ffffff;
    border-left: 5px solid #4a90e2;
    padding: 25px;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.story-quote {
    font-size: 3rem;
    color: #4a90e2;
    line-height: 0.5;
    margin-bottom: 10px;
}

.story-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.story-author {
    text-align: right;
    margin-top: 15px;
    font-weight: 600;
    color: #2a4d7a;
}*/
