<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.insight-cards {
  display: grid;
  grid-template: 1fr / repeat(3, minmax(0, 1fr));
  grid-gap: 30px;
}

.insight-cards .insight-panel {
  display: grid;
  grid: repeat(3, auto) / 1fr auto auto;
}

.insight-cards .insight-panel-header {
  grid-area: 1 / 1 / 2 / 4;
}

.insight-cards .statistic-value {
  line-height: 110%;
  grid-area: 2 / 1 / 2 / 4;
}

.insight-cards .timeframe-label {
  grid-area: 3 / 1 / 4 / 2;
}

.insight-cards .change-symbol {
  grid-area: 3 / 2 / 4 / 3;
  padding: 0 3px 3px 0;
  display: grid;
  align-items: center;
  padding-top: 3px;
}

.insight-cards .change-value {
  grid-area: 3 / 3 / 4 / 4;
  align-self: center;
}

.header-list-row {
  display: grid;
  grid-template: auto / auto 2fr 3fr 2fr 2fr 5em;
  padding: 24px 0;
  border: 0;
}

.list-row {
  display: grid;
  grid-template: auto / auto 2fr 3fr 2fr 2fr 5em;
  padding: 24px 0;
  border-top: 1px solid var(--gray);
  font-size: 15px;
}

.header-mobile {
  display: none;
}

.list-row:nth-child(2) {
  padding-top: 16px;
  border-top: 0;
}

.list-row:last-child {
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .insight-cards {
    grid-template: repeat(3, 1fr) / auto;
    grid-gap: 16px;
  }

  .header-list-row {
    display: none;
  }

  .list-row {
    grid-template: repeat(3, 1fr) / 2em 1fr auto;
    align-items: center;
    row-gap: 8px;
  }

  .list-row:nth-child(2) {
    margin-top: 0;
  }

  .list-row:last-child {
    margin-bottom: 0;
  }

  .header-mobile {
    display: block;
    grid-area: 1/1/1/2;
    font-size: 14px;
    font-weight: bold;
  }

  .header-mobile.total-created {
    grid-row: -3;
    grid-column: 2;
  }

  .header-mobile.total-used {
    grid-row: -2;
    grid-column: 2;
  }

  .header-mobile.popularity {
    display: none;
  }

  .elem.name {
    grid-area: 1 / 2;
    color: var(--dark-gray);
  }

  .elem.popularity,
  .elem.pop-symbol {
    grid-row: 1;
    grid-column: 1;
  }

  .elem.pop-symbol {
    grid-row: 2;
  }

  .elem.pop-symbol,
  .elem.pop-symbol &gt; i {
    margin-left: 0;
    position: relative;
  }

  .elem.pop-symbol &gt; .fa-sort-up {
    top: -6px;
    right: 0;
  }

  .elem.pop-symbol &gt; .fa-sort-down {
    top: -10px;
    right: 0;
  }

  .elem.total-created {
    grid-row: -3;
    grid-column: 3;
    justify-self: right;
  }

  .elem.total-used {
    grid-row: -2;
    grid-column: 3;
    justify-self: right;
  }

  .use-golink-button {
    grid-column: 2 / -1;
  }
}
</pre></body></html>