:root {
  --akzent: hsl(62 62% 42%);
  --dunkel: hsl(62 30% 16%);
  --hell: hsl(62 40% 97%);
  --rand: hsl(62 20% 88%);
  --text: #1a1a1a;
  --grund: #ffffff;
  --gedaempft: #5a5a5a;
  --breite: 42rem;
}
@media (prefers-color-scheme: dark) {
  :root {
    --text: #ececec;
    --grund: hsl(62 14% 10%);
    --hell: hsl(62 16% 14%);
    --rand: hsl(62 14% 24%);
    --gedaempft: #a8a8a8;
    --akzent: hsl(62 62% 66%);
  }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--grund);
  color: var(--text);
  font: 1.05rem/1.7 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
.kopf {
  border-bottom: 1px solid var(--rand);
  background: var(--hell);
  padding: 2.2rem 1.25rem 1.6rem;
  text-align: center;
}
.marke {
  display: inline-block;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--akzent);
  text-decoration: none;
}
.nische {
  max-width: var(--breite);
  margin: 0.5rem auto 0;
  color: var(--gedaempft);
  font-size: 0.94rem;
}
.inhalt { max-width: var(--breite); margin: 0 auto; padding: 2rem 1.25rem; }
.held { margin: 0 0 2rem; }
.held img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  background: var(--hell);
}
.gruppe { margin-bottom: 2.4rem; }
.gruppe h2 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--akzent);
  border-bottom: 1px solid var(--rand);
  padding-bottom: 0.45rem;
  margin-bottom: 0.6rem;
}
.liste { list-style: none; margin: 0; padding: 0; }
.liste li { border-bottom: 1px solid var(--rand); }
.liste a {
  display: flex;
  gap: 0.9rem;
  padding: 0.7rem 0.2rem;
  color: inherit;
  text-decoration: none;
}
.liste a:hover { color: var(--akzent); }
.nr {
  color: var(--gedaempft);
  font-variant-numeric: tabular-nums;
  font-size: 0.86rem;
  padding-top: 0.16rem;
}
.kategorie {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--akzent);
  margin: 0 0 0.4rem;
}
.text h1 { font-size: 1.95rem; line-height: 1.25; margin: 0 0 1.4rem; }
.text p { margin: 0 0 1.25rem; }
.weiter {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--rand);
  padding-top: 1.4rem;
  margin-top: 2.5rem;
  font-size: 0.92rem;
}
.weiter a { color: var(--akzent); text-decoration: none; max-width: 46%; }
.vor { text-align: right; margin-left: auto; }
.zurueckzumindex { margin-top: 1.6rem; font-size: 0.92rem; }
.zurueckzumindex a { color: var(--akzent); }
.werbung {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  border: 1px dashed var(--rand);
  border-radius: 8px;
  background: var(--hell);
}
.werbung-hinweis {
  color: var(--gedaempft);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.fuss {
  border-top: 1px solid var(--rand);
  background: var(--hell);
  color: var(--gedaempft);
  font-size: 0.86rem;
  padding: 1.8rem 1.25rem 2.4rem;
  text-align: center;
}
.fuss p { max-width: var(--breite); margin: 0 auto 0.4rem; }
.rechtliches { margin: 0.9rem auto 0.6rem; font-size: 0.84rem; }
.rechtliches a { color: var(--akzent); text-decoration: none; }
.rechtliches a:hover { text-decoration: underline; }
.text h2 { font-size: 1.1rem; margin: 2rem 0 0.7rem; }
@media (max-width: 34rem) {
  .text h1 { font-size: 1.6rem; }
  .weiter { flex-direction: column; }
  .vor { text-align: left; margin-left: 0; }
  .weiter a { max-width: 100%; }
}
