.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--paper);
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0 11px;
  margin-bottom: var(--gutter);
}

.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 9px;
  min-width: 0;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 19px;
  line-height: 1;
  padding-bottom: 2px;
  border-bottom: 3px solid var(--red);
}

.brand-sub {
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter);
}

@media (min-width: 920px) {
  .grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 1fr);
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  font-weight: 700;
  margin: 0;
  padding: 13px 15px 0;
}

.results {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

@media (min-width: 920px) {
  .results {
    position: sticky;
    top: 74px;
    align-self: start;
  }
}

.footer {
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid var(--line-strong);
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.footer-warning {
  margin-top: 9px;
  font-style: italic;
}
