html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (max-width: 760px) {
  /* Keep the dashboard glanceable on a phone instead of stacking four oversized KPI cards. */
  .grid.cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .grid.cards .card {
    padding: 14px;
    border-radius: 14px;
  }

  .kpi .label {
    font-size: 12px;
    line-height: 1.25;
  }

  .kpi .value {
    margin-top: 7px;
    font-size: 25px;
    line-height: 1.05;
  }

  .kpi .sub {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.3;
  }

  .page-head {
    margin-bottom: 16px;
  }

  .page-head h1 {
    font-size: 27px;
    line-height: 1.08;
  }

  .page-head p {
    font-size: 14px;
    line-height: 1.35;
  }

  /* iOS Safari zooms focused controls smaller than 16px. */
  input,
  select,
  textarea {
    font-size: 16px;
  }
}

@media (max-width: 350px) {
  .grid.cards {
    grid-template-columns: 1fr;
  }
}
