:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #153513;
  background: #f5f7f3;
}

* { box-sizing: border-box; }

body { margin: 0; }

header {
  background: #49be2c;
  color: #fff;
  padding: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.brand svg { width: 22px; fill: currentColor; }

main {
  width: min(780px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.05;
}

h2 { margin: 36px 0 10px; font-size: 21px; }
p, li { color: #385338; font-size: 16px; line-height: 1.65; }
ul { padding-left: 22px; }
.updated { margin: 0 0 32px; color: #617261; }
.notice {
  margin: 0 0 28px;
  padding: 16px 18px;
  border-left: 4px solid #49be2c;
  border-radius: 0 12px 12px 0;
  background: #eaf6e6;
}
a { color: #21750f; }
