/* =========================================
   Testimonios — Front Page Section
   ========================================= */

.hp-testimonials {
    background: #e0e0e0;
    padding: 80px 5%;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #e0e0e0;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(176, 160, 167, 0.15);
}

.testimonial-stars {
    color: #b28d63;
    font-size: 20px;
    margin-bottom: 18px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    font-family: 'Muli', sans-serif;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 16px;
    color: #2c2c2c;
    font-family: 'Muli', sans-serif;
}

.testimonial-author span {
    font-size: 14px;
    color: #b0a0a7;
    font-family: 'Muli', sans-serif;
}

/* Farm image margin */
.testimonials-img {
    margin-top: 100px;
    margin-bottom: 100px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px 25px;
        text-align: center;
    }

    .testimonial-stars {
        justify-content: center;
        display: flex;
    }

    .testimonial-author {
        align-items: center;
    }
}
