#mec-testimonials-section {
    background: #f7f9fb;
    padding: 60px 0;
}

#mec-testimonials-section h2 {
    text-align: center;
    color: #139099;
    font-weight: 700;
    margin-bottom: 35px;
}

/* card */

.mec-testi-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* image */

.mec-testi-author-img {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #139099;
    object-fit: cover;
    margin-bottom: 12px;
}

/* text clamp */

.mec-testi-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 10px;
}

.mec-testi-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

/* read more */

.mec-readmore-btn {
    border: none;
    background: none;
    color: #139099;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 12px;
    text-decoration: underline;
}

/* author */

.mec-testi-author {
    font-weight: 700;
    font-size: 14px;
    color: #333;
    border-top: 1px solid #eee;
    padding-top: 12px;
}