body {
  padding: var(--s-12) var(--s-6) var(--s-16);
  align-items: stretch;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--accent);
  text-decoration: none;
  font-size: var(--t-sm);
  margin-bottom: var(--s-8);
  transition: color var(--d-base) var(--ease-out);
}

.back:hover {
  color: var(--accent-hover);
}

.back:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container h1 {
  font-size: var(--t-xl);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: var(--s-2);
  color: var(--text);
}

.meta {
  font-size: var(--t-xs);
  color: var(--text-muted);
  margin-bottom: var(--s-8);
}

.section {
  margin-bottom: var(--s-8);
}

.section h2 {
  font-size: var(--t-md);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--border);
}

.section p {
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--s-2);
}

.section ul {
  list-style: none;
  margin-bottom: var(--s-2);
}

.section ul li {
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: var(--s-4);
  position: relative;
  margin-bottom: var(--s-1);
}

.section ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-subtle);
}

.term {
  font-weight: 600;
  color: var(--text);
}

.requisites {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-6);
}

.requisites p {
  margin-bottom: var(--s-1);
}

.container a {
  color: var(--accent);
  text-decoration: none;
}

.container a:hover {
  text-decoration: underline;
}
