/* addon front end css */

.testimonials-three__btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 10px;
}

.testimonials-three__btn {
    display: inline-block;
    background-color: #fff;
    color: #e07b1a;           /* matches the orange brand color */
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.testimonials-three__btn:hover {
    background-color: #e07b1a;
    color: #fff;
    transform: translateY(-2px);
}