/* Pixelion 3.0.11 — focused layout corrections. */

/* Keep the formats counter readable without letting either label escape. */
.format-note {
  width: 190px;
  height: 145px;
  grid-template-columns: auto minmax(0, 1fr);
  justify-content: initial;
  align-items: center;
  gap: 11px;
  padding: 16px 18px;
  display: grid;
}

.format-note b {
  min-width: 0;
  font-size: 40px;
  line-height: 1;
  white-space: nowrap;
}

.format-note span {
  min-width: 0;
  font-size: 13px;
  line-height: 1.16;
  white-space: normal;
  overflow-wrap: normal;
}

@media (max-width: 760px) {
  .format-note {
    width: 160px;
    height: 112px;
    gap: 8px;
    padding: 12px 14px;
  }

  .format-note b {
    font-size: 33px;
  }

  .format-note span {
    font-size: 11px;
  }
}
