/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 21 2025 | 16:45:30 */
 /* --- Button Styling --- */
    .readmore-toggle {
        background: linear-gradient(135deg, #F6BFC0 0%, #e8a5a7 100%);
        color: #fff;
        border: none;
        padding: 0.7rem 1.5rem;
        border-radius: 25px;
        cursor: pointer;
        margin-top: 1.5rem;
        font-size: 0.9rem;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(246, 191, 192, 0.3);
        transition: all 0.3s ease;

        /* --- THIS IS THE FIX FOR EQUAL HEIGHT --- */
        /* 1. This sets a fixed height for all buttons. */
        height: 2.8rem; 
        /* 2. These two lines center the text vertically inside the button. */
        display: inline-flex;
        align-items: center;
    }

    /* Hover effect for the button */
    .readmore-toggle:hover {
        background: linear-gradient(135deg, #e8a5a7 0%, #da9699 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(246, 191, 192, 0.4);
    }

    /* --- Testimonial Closing Highlight Styling --- */
    .testimonial__closing {
        color: #a65659; 
        font-weight: bold;
        margin-top: 1rem;
    }