/* ==========================
   TESTIMONIALS SECTION STYLES
=========================== */
.testimonials {
    /* background-color: var(--bg-light); */ /* Uncomment if you want a light grey background */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem; /* Space below the section title */
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* For absolute positioning of quote icon */
    display: flex;
    flex-direction: column; /* To push author to bottom */
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote-icon {
    font-size: 2.5rem; /* Size of the quote icon */
    color: var(--primary-color);
    opacity: 0.3; /* Make it subtle */
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem; /* Space above author block */
    font-style: italic;
    flex-grow: 1; /* Ensures text takes available space, pushing author down */
    padding-left: 0rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem; /* Space between avatar and text */
    margin-top: auto; /* Pushes this block to the bottom of the card */
    padding-top: 1.5rem; /* Space above the author block */
    border-top: 1px solid var(--light-accent-color); /* Separator line */
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-accent-color);
}

.testimonial-author .author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author .author-title {
    font-size: 0.9rem;
    color: var(--text-muted);
}
/* END TESTIMONIALS SECTION STYLES */