css #testimonials {
    background-color: var(--light-grey-bg);
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-blue);
    display: flex;
    flex-direction: column;
}

.testimonial-card:before {
    content: '\f10d';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--medium-grey);
    flex-grow: 1;
    margin-bottom: 30px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.testimonial-source {
    font-size: 0.9rem;
    color: var(--medium-grey);
}