.comparison-shell {
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
}

.comparison-shell > header {
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}

.comparison-shell h2 {
  margin: 0;
  font-size: 31px;
}

.comparison-shell header p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.offer-form {
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}

#comparison-result {
  padding: 24px 26px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}

.offer-column {
  border: 1px solid var(--ink);
  background: #fafbfc;
}

.offer-column h3 {
  margin: 0;
  padding: 13px 15px;
  border-bottom: 1px solid var(--ink);
  background: var(--soft);
  font-size: 18px;
}

.offer-column.is-better h3 {
  background: var(--accent);
}

.compare-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 15px;
  border-bottom: 1px solid var(--line);
}

.compare-metric:last-child {
  border-bottom: 0;
}

.compare-metric span {
  color: var(--muted);
  font-size: 13px;
}

.compare-metric strong {
  text-align: right;
}

.comparison-verdict {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--ink);
  background: var(--primary);
  color: white;
}

.comparison-verdict h3 {
  margin: 0;
  font-size: 20px;
}

.comparison-verdict p {
  margin: 7px 0 0;
  line-height: 1.6;
}

@media (max-width: 650px) {
  .comparison-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .comparison-shell > header,
  .offer-form,
  #comparison-result {
    padding: 20px 14px;
  }
}
