1. .Component {
    
  2.   margin-bottom: 0.5rem;
    
  3. }
    
  4. 
    
  5. .Item {
    
  6.   margin-top: 0.25rem;
    
  7. }
    
  8. 
    
  9. .Key {
    
  10.   font-family: var(--font-family-monospace);
    
  11.   font-size: var(--font-size-monospace-small);
    
  12.   line-height: 1;
    
  13. }
    
  14. 
    
  15. .Key:first-of-type::before {
    
  16.   content: ' (';
    
  17. }
    
  18. 
    
  19. .Key::after {
    
  20.   content: ', ';
    
  21. }
    
  22. 
    
  23. .Key:last-of-type::after {
    
  24.   content: ')';
    
  25. }
    
  26. 
    
  27. .Label {
    
  28.   font-weight: bold;
    
  29. }