/* Macro and BOK data display styles. */

.bok-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
      }

.bok-card {
        min-height: 72px;
        padding: 11px;
        border: 0.5px solid var(--line);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.025);
      }

.bok-card small {
        color: var(--faint);
        font-size: 10px;
      }

.bok-card strong {
        display: block;
        margin-top: 6px;
        color: var(--text);
        font-size: 18px;
      }

.bok-card em {
        display: block;
        margin-top: 4px;
        color: var(--faint);
        font-size: 10px;
        font-style: normal;
        line-height: 1.35;
      }
