/**
 * Css for Widget: Testimonials
 */

.testimonials-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f8f9fa;
}

.testimonials-overtitle {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #EE6440;
    margin-bottom: 0.5rem;
}

.testimonials-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    line-height: 1.1;
    color: #2B3338;
    margin-bottom: 1rem;
}

.testimonials-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #5C6D78;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonials-metric-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonials-metric-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #EE6440;
}

.testimonials-metric-value {
    font-family: 'Roboto', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: #EE6440;
    margin-bottom: 0.5rem;
}

.testimonials-metric-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2B3338;
    margin-bottom: 1rem;
}

.testimonials-metric-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #5C6D78;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-metric-value {
        font-size: 3rem;
    }
}

@media (max-width: 767.98px) {
    .testimonials-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .testimonials-metric-card {
        padding: 2rem 1.5rem;
    }
}
