.blog-author {
    display: flex;
}

.blog-avatar {
    width: auto;
}

.blog-avatar img {
    max-width: 80px;
    border-radius: 50%;
    border: 2px solid #ccc;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.blog-infos {
    margin-left: 20px;
}

.blog-infos-name span {
    font-size: 14px;
    font-weight: 600;
}

.blog-infos-bio {
    font-size: 12px;
}

.blog-label-category {
    position: relative;
}

.blog-label-category:after {
    content: ',';
    margin-left: 5px;
    margin-right: 5px;
}

.blog-label-category:last-of-type:after {
    content: '';
    margin-left: 0px;
    margin-right: 0px;
}

/* Comments */

#comments-add-respond {
    position: relative;
}

#comments-cancel-respond {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
}

.comment-content {
    clear: both;
}

.spam-protection {
    display: none;
}

.text-center {
    text-align: center;
}

/* --- LATEST POST WIDGET --- */
.blog-latest-post-details {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.blog-latest-post-summary {
    list-style: none;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    outline: none;
}

.blog-latest-post-summary::-webkit-details-marker {
    color: #ff8c42;
}

.blog-latest-post-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.blog-latest-post-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-latest-post-content {
    flex: 1;
}

.blog-latest-post-title {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.blog-latest-post-title a {
    text-decoration: none;
    color: #333;
}

.blog-latest-post-title a:hover {
    color: #ff8c42;
}

.blog-latest-post-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
}

.blog-latest-post-excerpt {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-latest-post-readmore {
    display: inline-block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #ff8c42;
    text-decoration: none;
    font-weight: 600;
}

.blog-latest-post-readmore:hover {
    text-decoration: underline;
}