input[type="email"],
input[type="text"],
input[type="password"],
input[type="search"],
input[type="tel"],
textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0 14px;
}

textarea {
  min-height: 140px;
  padding-top: 12px;
}

.content-shell {
  padding: 72px 0;
}

.entry {
  max-width: 820px;
}

.entry__header {
  margin-bottom: 32px;
}

.entry__content {
  color: var(--muted);
  font-size: 18px;
}

.empty-state {
  max-width: 680px;
  padding: 96px 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 42px 0;
}

.footer-brand {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 850;
}

.footer-note {
  max-width: 460px;
  color: var(--muted);
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer__legal p {
  margin: 0;
}

