:root {
  --bg: #f7f9fc;
  --surface: #fff;
  --ink: #182230;
  --muted: #667085;
  --line: #d8dee9;
  --red: #a43144;
  --green: #167356;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: var(--red);
}

.doc {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  display: block;
  width: auto !important;
  height: 30px !important;
  max-width: 108px !important;
  object-fit: contain;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(2.2rem, 8vw, 4rem);
  line-height: 1.1;
}

h2 {
  margin-top: 30px;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 1.18rem;
}

p {
  color: var(--muted);
}

.meta {
  margin-bottom: 22px;
  color: var(--ink);
  font-weight: 700;
}
