.support-intro {
  max-width: 780px;
}
.support-callout {
  background: var(--mist);
  border-radius: 14px;
  padding: 30px;
  margin: 28px 0;
}
.support-callout h2 {
  margin-top: 6px;
}
.support-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}
.support-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 20px;
}
.support-step b {
  color: var(--teal);
  font-size: 12px;
  letter-spacing: .12em;
}
.faq {
  max-width: 940px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 20px;
  margin: 12px 0;
}
.faq summary {
  cursor: pointer;
  padding: 18px 28px 18px 0;
  font-weight: 700;
  position: relative;
}
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  color: var(--teal);
  font-size: 22px;
  top: 11px;
}
.faq details[open] summary::after {
  content: '-';
}
.faq details p,.faq details ul {
  color: #495860;
}
.faq li {
  margin: 7px 0;
}
.small-note {
  font-size: 14px;
  color: #526068;
}
.model-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.model-table th,.model-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.model-table th {
  font-size: 12px;
  color: var(--teal);
  letter-spacing: .1em;
}
.model-table th:last-child,.model-table td:last-child {
  width: 245px;
}
.model-table td:last-child a {
  display: inline-block;
  white-space: nowrap;
}
.model-table tr:last-child td {
  border: 0;
}
@media(max-width:760px) {
  .support-steps {
    grid-template-columns: 1fr;
  }
  .model-table {
    font-size: 14px;
  }
  .model-table th,.model-table td {
    padding: 12px;
  }
  .model-table th:last-child,.model-table td:last-child {
    width: auto;
  }
}
