/* ========== Basislayout ========== */
html, body {
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #111;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

#gp {
  max-width: 820px;
  margin: 0 auto;
  padding: 1.25rem;
}

/* ========== Titelbild ========== */
.title-figure {
  max-width: 820px;
  margin: 0 auto 1rem;
  text-align: center;
}
.title-figure img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%; /* rund */
  background: #fff;
  padding: 6px;
  border: 4px solid #f5f5f5;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  height: auto;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ========== Überschriften ========== */
h1 {
  text-align: center;
  margin: .25rem 0 .5rem;
}
.sub {
  text-align: center;
  color: #666;
  margin: 0 0 1rem;
}

/* ========== Karten ========== */
.card {
  margin: 1.5rem auto;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,.05);
  border: 1px solid #eee;
}

/* ========== Buttons ========== */
.cta {
  display: inline-block;
  padding: .6rem 1.4rem;
  margin: .3rem .5rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg,#4f9ef8,#2369c4);
  border: none;
  border-radius: 8px;
  transition: all .25s ease;
}
.cta:hover {
  background: linear-gradient(135deg,#2369c4,#4f9ef8);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.cta:active {
  transform: scale(.97);
}

/* ========== Hinweisblock (rot) ========== */
.warning {
  background: #ffecec !important;       /* hellrot Hintergrund */
  border: 3px solid #f44336 !important; /* kräftig rote Umrandung */
  color: #b71c1c !important;            /* dunkler Rotton */
  padding: 1rem 1.25rem !important;
  margin: 1.5rem auto !important;
  border-radius: 10px !important;
  max-width: 820px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
  text-align: center !important;
}
.warning-title {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
  color: #d32f2f !important;
  text-align: center !important;
}

/* ========== Zusatztexte ========== */
.intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}
.info-note,
.small {
  color: #555;
  font-size: .9rem;
  line-height: 1.4;
}
#tips ul { padding-left: 1.1rem; }
#tips li { margin: .35rem 0; }

/* ===== Vorlese-Tipps Styling ===== */
/* ========== Vorlese-Tipps (bereinigt) ========== */
#tips .page-header h1,
#tips .page-header .sub {
  text-align: left;   /* Überschrift + Untertitel links */
  margin-bottom: .5rem;
  color: #333;
}

#tips h3 {
  text-align: left;
  margin: 1rem 0 .35rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  border: none;       /* blaue Balken entfernt */
  padding-left: 0;
}

#tips ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}
#tips li {
  margin: .3rem 0;
  line-height: 1.5;
  color: #222;
}
#tips li::marker {
  color: #444; /* neutrale Bullets */
}
/* Vorlese-Tipps saubere Darstellung */
#tips .page-header h1,
#tips .page-header .sub {
  text-align: left; /* Überschrift + Untertitel links */
}

#tips h3 {
  text-align: left;
  margin: 1rem 0 .35rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  border-left: none;   /* blaue Balken sicher entfernt */
  padding-left: 0;
}

#tips ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}
#tips li {
  margin: .3rem 0;
  line-height: 1.5;
  color: #222;
}
#tips li::marker {
  color: #444; /* neutrale Bullets */
}
#tips h2 { margin: 0 0 .25rem; }