.alt-page {
  max-width: 1280px;
  margin: auto;
  padding: 60px max(5vw, 24px) 110px;
}

.alt-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 48px;
}

.alt-intro .back {
  display: inline-block;
  margin-bottom: 50px;
  color: #607572;
  font-size: 13px;
  font-weight: 700;
}

.alt-intro .eyebrow,
.table-heading .eyebrow {
  margin-bottom: 15px;
}

.alt-intro h1 {
  margin: 0 0 18px;
  font: 800 clamp(46px, 5vw, 68px)/1 'Manrope', sans-serif;
  letter-spacing: -.05em;
}

.alt-lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.alt-help {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  border-radius: 13px;
  background: var(--green);
  color: white;
  box-shadow: var(--shadow);
}

.help-number {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 9px;
  background: var(--mint);
  color: var(--green);
  font-weight: 800;
}

.alt-help small {
  color: #b9cfca;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.alt-help p {
  margin: 8px 0 0;
  color: #d7e2df;
  font-size: 14px;
  line-height: 1.65;
}

.alt-help kbd {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .12);
  color: white;
}

.alt-table-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  box-shadow: 0 18px 50px rgba(13, 50, 47, .06);
}

.table-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding: 30px 32px 27px;
  border-bottom: 1px solid var(--line);
}

.table-heading h2 {
  margin: 0;
  font: 700 clamp(24px, 3vw, 32px) 'Manrope', sans-serif;
  letter-spacing: -.025em;
}

.table-heading > span {
  padding: 7px 11px;
  border-radius: 999px;
  background: #eef5e8;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.table-wrap {
  overflow-x: auto;
}

.alt-table-card table {
  width: 100%;
  border-collapse: collapse;
}

.alt-table-card th,
.alt-table-card td {
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.alt-table-card th {
  background: #f8faf6;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.alt-table-card tbody tr {
  transition: background-color .18s ease;
}

.alt-table-card tbody tr:hover {
  background: #f7faf4;
}

.alt-table-card tbody tr:last-child td {
  border-bottom: 0;
}

.alt-table-card td {
  color: #405552;
  font-size: 14px;
}

.alt-table-card .symbol {
  width: 150px;
  color: var(--ink);
  font: 700 27px 'Manrope', sans-serif;
}

kbd {
  display: inline-block;
  min-width: 110px;
  padding: 7px 10px;
  border: 1px solid #d4ddd9;
  border-bottom-width: 2px;
  border-radius: 7px;
  background: var(--paper);
  color: var(--green);
  font: 700 12px 'DM Sans', sans-serif;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .alt-page {
    padding-top: 35px;
  }

  .alt-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .alt-intro .back {
    margin-bottom: 35px;
  }

  .table-heading,
  .alt-table-card th,
  .alt-table-card td {
    padding-right: 20px;
    padding-left: 20px;
  }

  .alt-table-card .symbol {
    width: 80px;
  }
}

@media (max-width: 520px) {
  .alt-table-card th:nth-child(2),
  .alt-table-card td:nth-child(2) {
    min-width: 170px;
  }

  .table-heading {
    align-items: flex-start;
  }
}
