/* --- Modernized Testimonials Layout --- */

.testimonial-thumb {
    padding: 25px;
    background: #ffffff;
    border: 1px solid #eeeeee; /* Light border */
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%; /* Ensures equal height in a row */
    display: flex;
    flex-direction: column;
}

.testimonial-thumb:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    border-color: #2e5b37;
}

/* Titles inside review (Advantages/Disadvantages) */
.testimonial-thumb b, 
.testimonial-thumb strong {
    color: #2e5b37;
    display: block;
    margin-top: 10px;
    margin-bottom: 3px;
    font-size: 14px;
}

/* Review text styling */
.testimonial-thumb .description {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
    flex-grow: 1; /* Pushes author info to the bottom */
}

/* Author and Date line */
.testimonial-thumb .author {
    font-style: italic;
    font-size: 13px;
    color: #777;
    border-top: 1px solid #f5f5f5;
    padding-top: 12px;
}

/* --- Star Rating Scaling & Colors --- */

#testimonial-rating .fa-star,
.testimonial-thumb .fa-star {
    color: #ffc107 !important; /* Golden stars */
    font-size: 16px !important; /* Smaller, cleaner size */
}

#testimonial-rating .fa-star-o,
.testimonial-thumb .fa-star-o {
    color: #e0e0e0 !important;
    font-size: 16px !important;
}

/* --- Buttons Styling --- */

/* "More details" and "View all" buttons */
.btn-black, 
#testimonial-total button,
.testimonial-thumb .btn-default {
    background-color: #2e5b37 !important;
    background-image: none !important;
    border: none !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    border-radius: 4px !important;
    transition: background 0.3s ease !important;
}

.btn-black:hover, 
#testimonial-total button:hover {
    background-color: #3d7a49 !important;
}

/* Fixing the horizontal rule if it's still there */
.testimonial-thumb hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 15px 0;
}