/* Review Widget Styles */
.eafe-review {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s ease;
}

.eafe-review:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Review Header */
.eafe-review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.eafe-review-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.eafe-review-meta {
    flex: 1;
}

.eafe-review-name {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
    line-height: 1.3;
}

.eafe-review-location {
    font-size: 13px;
    color: #888;
    margin: 0;
    font-weight: 400;
}

/* Stars */
.eafe-review-stars {
    margin-bottom: 15px;
}

.eafe-review-stars .star {
    font-size: 16px;
    margin-right: 2px;
    display: inline-block;
    transition: color 0.2s ease;
}

.eafe-review-stars .star.filled {
    color: #ffd700;
}

.eafe-review-stars .star.empty {
    color: #e0e0e0;
}

/* Review Content */
.eafe-review-content {
    text-align: left;
}

.eafe-review-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #2c3e50;
    line-height: 1.4;
}

.eafe-review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.eafe-review-date {
    font-size: 12px;
    color: #888;
    margin: 0;
    font-style: italic;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .eafe-review {
        padding: 20px;
    }

    .eafe-review-image img {
        width: 50px;
        height: 50px;
    }

    .eafe-review-name {
        font-size: 15px;
    }

    .eafe-review-title {
        font-size: 16px;
    }

    .eafe-review-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .eafe-review-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .eafe-review-image {
        margin-bottom: 10px;
    }

    .eafe-review-image img {
        margin-right: 0;
    }
}