/**
 * Custom CSS for Reviews in Features Section
 * Add this to your theme's custom CSS or enqueue it properly
 */

/* Review Item Styling */
.feature-single-item.review-item {
    position: relative;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

/* Review Rating Stars */
.review-rating {
    margin: 15px 0;
    color: #ffc107;
    font-size: 16px;
}

.review-rating i {
    margin: 0 2px;
}

/* Review Meta Information */
.review-meta {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 14px;
    color: #666;
}

.review-author {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.review-date {
    font-size: 12px;
    color: #999;
    display: block;
}

/* Review Title */
.feature-single-item.review-item h5 {
    font-size: 18px;
    margin: 10px 0;
    font-weight: 600;
    color: #333;
}

/* Review Content */
.feature-single-item.review-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 10px 0;
}

/* Star Icon in Feature Box */
.feature-single-item.review-item .feature-icon-box {
    background: var(--bs-primary);
    color: white;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    font-size: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Review Avatar Image */
.feature-single-item.review-item .review-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Fallback User Icon */
.feature-single-item.review-item .feature-icon-box i {
    line-height: normal;
}

/* Hover Effects */
.feature-single-item.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-single-item.review-item {
        padding: 20px 15px;
    }

    .feature-single-item.review-item h5 {
        font-size: 16px;
    }
}
