/* VS Table */
.vs-table {
  color: #1f2937;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  margin-bottom: 3rem;
  width: 100%;
}
.vs-table__title {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.2222;
  margin: 0 0 1rem;
}
.vs-table__intro {
  color: #4b5563;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}
.vs-table__scroll {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.vs-table__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  min-width: 400px;
  overflow: hidden;
  width: 100%;
}
.vs-table__head,
.vs-table__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.vs-table__head {
  background: #1f2937;
  color: #fff;
}
.vs-table__head-col {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 1rem;
  text-align: left;
}
.vs-table__row {
  background: #fff;
}
.vs-table__row.is-alt {
  background: #f3f4f6;
}
.vs-table__row:last-child {
  border-bottom: 0;
}
.vs-table__col {
  align-items: flex-start;
  color: #4b5563;
  display: flex;
  font-size: 1rem;
  line-height: 1.5;
  padding:1rem;
}
.vs-table__cell-inner {
  align-items: flex-start;
  display: flex;
  gap: .75rem;
  width: 100%;
}
.vs-table__icon {
  display: block;
  flex-shrink: 0;
  height: 1.5rem;
  width: 1.5rem;
}
.vs-table__text {
  color: #4b5563;
  display: block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  word-break: break-word;
}