.lvbp-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.lvbp-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
    gap: 20px;
    position: relative;
}
.lvbp-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.lvbp-image-wrapper {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}
.lvbp-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.lvbp-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
.lvbp-title {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}
.lvbp-meta, .lvbp-comment-meta {
    color: #777;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}
.lvbp-author, .lvbp-category, .lvbp-date, .lvbp-comment-author {
    display: inline-block;
}
.lvbp-comment-post-link {
    color: #555;
    text-decoration: none;
}
.lvbp-comment-post-link:hover {
    text-decoration: underline;
}

/* Comment Styles */
.lvbp-comment-item {
    padding-left: 45px;
    align-items: flex-start;
}
.lvbp-comment-item::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 60px;
    position: absolute;
    left: 15px;
    top: 5px;
    color: #ddd;
    line-height: 1;
}
.lvbp-comment-text {
    font-style: italic;
    color: #444;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.lvbp-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    width: 100%;
}
.lvbp-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}
.lvbp-pagination .page-numbers:hover {
    background-color: #f5f5f5;
}
.lvbp-pagination .page-numbers.current {
    background-color: #333;
    color: #fff;
    border-color: #333;
}
