/* --- Section Styling --- */
.voices-section {
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 50%, #f4f7f5 100%);
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* --- Typography --- */
.max-w-3xl {
    max-width: 48rem;
}

/* --- Testimonial Card --- */
.testimonial-card {
    background-color: #ffffff;
    border-radius: 1rem; /* rounded-2xl */
    padding: 2.5rem; /* p-10 */
    border: 1px solid #e8edeb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    border-color: #a8bdb4;
    box-shadow: 0 20px 50px rgba(92, 130, 114, 0.15);
    transform: translateY(-8px); /* hover:-translate-y-2 */
}

.quote-text {
    color: #3d574d;
    font-size: 1.125rem; /* text-lg */
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* --- Author Block --- */
.author-block {
    border-top: 1px solid #e8edeb;
    padding-top: 1.5rem;
    margin-top: auto; /* Pushes the author block to the bottom of the card */
}

.author-name {
    color: #2d3f37;
    font-weight: 700;
    font-size: 1.125rem; /* text-lg */
    margin-bottom: 0.25rem;
    font-family: var(--font-02);
}

.author-title {
    color: #7a9b8d;
    font-size: 0.875rem; /* text-sm */
}

/* --- Footer Call to Action --- */
.footer-cta {
    margin-top: 5rem; /* mt-20 */
}

.footer-quote {
    color: #3d574d;
    font-size: 1.125rem; /* text-lg */
    font-style: italic;
    margin-bottom: 2rem;
    font-family: var(--font-01);
}

/* --- Responsive Adjustments --- */
@media (min-width: 768px) {
    .voices-section {
        padding-top: 8rem; /* md:py-32 */
        padding-bottom: 8rem;
    }
}