/* container transforma os .form-check em um grid 
.site-editor-wrapper .card-body {
  display: grid ;
  grid-template-columns: repeat(3, 1fr); 
  gap: 0.5rem 1rem; 
  align-items: start;
}

.site-editor-wrapper .card-body .form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem; 
  min-height: 2.2em; 
}

.site-editor-wrapper .card-body .form-check .form-check-label {
  display: inline-block;
  line-height: 1.2;
  word-break: break-word;
}

@media (max-width: 600px) {
  .site-editor-wrapper .card-body {
    grid-template-columns: 1fr; 
    max-height: 400px;         
    overflow-y: auto;         
    padding-right: 0.25rem;    
  }
}
*/