.selection-answer-wrap {
  padding: 30px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 24%, var(--bg-line));
  background: var(--accent-soft);
}

.selection-answer {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 24px 48px;
  align-items: start;
}

.selection-answer-label {
  margin: 0 0 6px;
  color: var(--accent-d);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.selection-answer h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--font-disp);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  letter-spacing: -.02em;
}

.selection-answer-copy p {
  max-width: 800px;
  margin: 0;
  color: var(--ink);
  line-height: 1.65;
}

.selection-answer-copy .selection-answer-note {
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 14px;
}

.selection-answer-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: selection-step;
}

.selection-answer-steps li {
  position: relative;
  min-height: 38px;
  padding-left: 48px;
  counter-increment: selection-step;
}

.selection-answer-steps li::before {
  content: counter(selection-step);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--accent-d);
  font-weight: 800;
}

.selection-answer-steps strong,
.selection-answer-steps span {
  display: block;
}

.selection-answer-steps strong {
  color: var(--ink);
  font-size: 14px;
}

.selection-answer-steps span {
  margin-top: 2px;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.4;
}

.selection-answer-links {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 8px;
}

.selection-answer-links a {
  padding: 8px 13px;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, var(--bg-line));
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--accent-d);
  font-size: 13px;
  font-weight: 700;
}

.selection-answer-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.selection-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--bg-line);
  border-radius: var(--r);
  background: #fff;
}

.selection-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}

.selection-table th,
.selection-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--bg-line);
  vertical-align: top;
  line-height: 1.5;
}

.selection-table th {
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.selection-table td {
  color: var(--ink-2);
  font-size: 14px;
}

.selection-table td:first-child {
  color: var(--ink);
  font-weight: 650;
}

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

@media (max-width: 760px) {
  .selection-answer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .selection-answer-links {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .catalog .card-foot {
    align-items: flex-start;
  }

  .catalog .card-price {
    width: 100%;
    white-space: normal;
  }
}
