/*
File: public/assets/css/sections/reviews.css
*/

.reviews-section {
    background-color: white; /* Clean background */
}

.reviews-main-heading {
    color: #212529;
    font-size: 1.5rem;
}

.review-card {
    background-color: #f8f9fa; /* Light grey card background */
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); /* Soft lift on hover */
    border-color: #1a965a;
}

.review-avatar {
    width: 45px;
    height: 45px;
    object-fit: cover;
}

.review-name {
    color: #333;
    font-size: 1rem;
}

.review-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    flex-grow: 1; /* Text ko poori height lene dein */
}

.review-rating i {
    font-size: 0.9rem;
}

.review-source small {
    font-size: 0.8rem;
}
