/* Keep all overview metrics on one desktop row while preserving the existing responsive layout. */
@media (min-width: 1151px) {
  .metric-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .metric {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 9px;
    width: 100%;
    height: 80px;
    min-height: 80px;
    padding: 10px 14px;
  }

  .metric-icon {
    top: 10px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .metric p {
    grid-column: 1 / -1;
    font-size: 12px;
  }

  .metric strong {
    display: block;
    align-self: end;
    margin: 5px 0 0;
    font-size: 28px;
    line-height: 1;
  }

  .metric small {
    align-self: end;
    min-width: 0;
    margin-bottom: 1px;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
