/*
 * Overbi — esploratore del grafo dei contenuti.
 * Stili del blocco embeddabile. Per cambiare l'altezza modifica
 * --overbi-height (qui, oppure con uno stile inline sulla singola section).
 */
.overbi-graph-section {
  --overbi-height: clamp(480px, 85vh, 600px);
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.overbi-graph-section .container {
  border: 1px solid rgb(231, 232, 236);
  border-radius: 15px;
}

.overbi-graph-section .overbi-graph-frame {
  display: block;
  width: 100%;
  height: var(--overbi-height);
  border: 0;
  background: #ffffff;
  border-radius: 15px;
}

@media (max-width: 991px) {
  .overbi-graph-section {
    --overbi-height: clamp(480px, 85vh, 300px);
  }

  .overbi-graph-section .container {
    border: 0;
    border-radius: 15px;
  }

  .overbi-graph-section .overbi-graph-frame {
    border: 1px solid rgb(231, 232, 236);
  }
}