/* Estilos minimalistas para la información del autor en query loops */
.query-loop-author-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
}

.author-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 4px;
}

.author-label {
    font-size: inherit;
    color: inherit;
    font-weight: normal;
    line-height: 1.2
}

.author-name {
    font-size: inherit;
    font-weight: 500;
    color: #333;
    line-height: 1;
    margin-bottom: 0!important;
}

/* Responsive */
@media (max-width: 768px) {
    .query-loop-author-container {
        gap: 8px;
        margin-top: 10px;
        font-size: 13px;
    }
    
    .author-item {
        gap: 6px;
    }
    
    .author-avatar img {
        width: 24px;
        height: 24px;
    }
}

p.wp-block-post-excerpt__excerpt {
    margin-bottom: 0px!important;
}