
.reviewer-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    padding: 15px;
    transition: transform 0.2s;
}

.reviewer-card:hover {
    transform: translateY(-5px);
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name a {
    color: #333;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
}

.reviewer-bio {
    color: #666;
    font-size: 1em;
    margin-top: 10px;
}
