@layer features {
  .fleet-summary {
    min-height: 58px;
    padding: 12px 19px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 15px;
  }

  .fleet-summary span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 11px;
  }

  .fleet-summary span:first-child {
    padding-right: 28px;
    border-right: 1px solid var(--line);
  }

  .fleet-summary strong {
    color: var(--ink);
    font-size: 12px;
  }

  .fleet-summary i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
  }

  @media (max-width: 680px) {
    .fleet-summary {
      height: auto;
      flex-wrap: wrap;
      gap: 12px 18px;
    }

    .fleet-summary span:first-child {
      width: 100%;
      padding: 0 0 10px;
      border: 0;
      border-bottom: 1px solid var(--line);
    }
  }
}
