/* Doplňky ke style.css — statické stránky + SEO breadcrumbs */
.prose {
  max-width: 40rem;
  padding-top: 2rem;
}
.prose h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.prose p { color: var(--muted); }
.prose a { font-weight: 600; }

.breadcrumbs {
  padding-top: 1.25rem;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.35rem;
  color: var(--muted);
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  opacity: 0.55;
}
.breadcrumbs a {
  color: var(--teal-soft);
  text-decoration: none;
  font-weight: 600;
}
.breadcrumbs a:hover { color: var(--accent-dark); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

.section-kicker a {
  color: inherit;
  text-decoration: none;
}
.section-kicker a:hover { color: var(--accent-dark); }

.index-boost-related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.index-boost-related h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}
.index-boost-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.index-boost-related a {
  text-decoration: none;
  font-weight: 600;
  color: var(--teal);
}
