.ab-page .sv-card-copy > p {
  min-height: 88px;
}

/* Keep the About hero annotations clear of the operating-system panel. */
.ab-page .sv-system {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ab-page .sv-system-window {
  grid-column: 1 / -1;
}

.ab-page .sv-float {
  position: static;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  animation: none;
}

.ab-page .sv-system-list > div {
  min-width: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-areas:
    "number label"
    "number state";
  align-content: center;
  column-gap: 10px;
  row-gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
}

.ab-page .sv-system-list span {
  grid-area: number;
  grid-row: auto;
}

.ab-page .sv-system-list strong {
  grid-area: label;
  overflow: visible;
  line-height: 1.25;
  text-overflow: clip;
  white-space: normal;
}

.ab-page .sv-system-list i {
  grid-area: state;
  display: block;
  line-height: 1.2;
}

@media (max-width: 760px) {
  .ab-page .sv-system {
    grid-template-columns: 1fr;
  }

  .ab-page .sv-float-one {
    max-width: none;
  }

  .ab-page .sv-system-list > div {
    flex: 0 0 78%;
    min-height: 92px;
    scroll-snap-align: start;
  }
}

@media (max-width: 430px) {
  .ab-page .sv-hero h1 {
    font-size: clamp(38px, 11vw, 43px);
  }
}
