/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */
 
 .okhchu-review {
    background: var(--theme-palette-color-6);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 0%;
    object-fit: cover;
}

.review-meta {
    flex: 1;
}

.review-author {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0px;
    color: #333;
}

.review-rating {
    color: #ffa500;
    font-size: 18px;
    margin-bottom: 0px;
    letter-spacing: 2px;
}

.review-date {
    font-size: 13px;
    color: #888;
}

.review-content {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}