:root {
  color-scheme: light;

  /* Podklady a hranice */
  --bg: #FAF9F6;
  --border: #E7E5E4;

  /* Typografie (APCA Lc 95+ / Lc 75+) */
  --text: #1C1917;
  --muted: #57534E;

  /* Medovo-zlatý akcent */
  --honey: #D97706;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  max-width: 48rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
  line-height: 1.65;
}

header img {
  border-radius: 4px;
  height: 80px;
  margin-bottom: 0.5rem;
  width: 80px;
}

/* Typografie */
h1 {
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.2rem;
}

h2 {
  font-size: 1.2rem;
  margin: 2rem 0 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--border);
}

h1,
h2 {
  text-wrap: balance;
}

p {
  margin: 0 0 1.15rem;
}

.sub {
  font-style: italic;
}

/* Akcentní podkres */
mark {
  background: linear-gradient(180deg, transparent 45%, rgba(217, 119, 6, 0.4) 100%);
  padding: 0 0.15rem;
  margin: 0 -0.15rem;
  border-radius: 2px;
}

/* Seznamy a medové odrážky */

li {
  margin-bottom: 0.65rem;
}

li::marker {
  color: var(--honey);
}

/* Odkazy */
a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--honey);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
  font-weight: bold;
}

a:hover {
  color: var(--honey);
}

a:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Patička */
footer {
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
}
