<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cols {
  display: grid;
  --repeat: min(3, var(--cols));
  grid-template-columns: repeat(var(--repeat), 1fr);
  align-items: flex-start;
  gap: 40px;
  margin: 40px 0;
}

.cols &gt; * {
  min-width: 0;
  min-height: 0;
}

.cols &gt; div &gt; :first-child {
  margin-top: 0 !important;
}

.cols &gt; div &gt; :last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 750px) {
  .cols {
    --repeat: min(2, var(--cols));
  }
}
@media (max-width: 500px) {
  .cols {
    --repeat: min(1, var(--cols));
  }
}

/*# sourceMappingURL=cols.css.map */</pre></body></html>