

h1 {
    font-weight: 450;
    font-size: 2rem;
    margin: 0; /* wichtig, damit Flexbox sauber arbeitet */
	margin-top: 40px;
	margin-bottom: 20px;
}

.headliner {
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column; /* Elemente untereinander anordnen */
    justify-content: center; /* vertikal zentrieren */
    align-items: center; /* horizontal zentrieren */
    text-align: center; /* Text innerhalb der Elemente zentrieren */
    padding: 0 20px; /* etwas Innenabstand für kleine Bildschirme */
    background: #ffffff;
    color: var(--fontColor);
    position: relative;
	padding: 0px;
}

.headliner p {
    margin-top: 10px;
	margin-bottom: 10px
    max-width: 1000px; /* optional, für bessere Lesbarkeit */
    font-size: 1.1rem;
    line-height: 1.3;
	width: 90%
}










.abhalter {
  display: flex; /* verteilt die Links automatisch nebeneinander */
  width: 50%;
	margin-top:10px;
  margin-bottom: 40px ;   
}

.abhalter a {
  flex: 1;             /* jeder Link nimmt gleich viel Platz ein */
  text-align: center;
  text-decoration: underline;
  color: var(--fontColor);
}

.review {
  height: fit-content;
  background-color: white;
}

.wrapper {
  width: 80%;
  background-color: rgb(230, 230, 230);
  border-radius: 10px;
  margin: 40px auto;
  display: flex;
  align-items: flex-start;
  padding: 20px;
}

.wrapper img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 20px;
}

.textblock {
  flex: 1;
}

.textblock p {
  margin: 0 0 10px 0;
  font-size: 1.1rem;
    line-height: 1.3;
	font-style: italic;
}

.textblock .author {
  margin-top: 10px;
}


:root {
    --bg: #fafafa;
    --card: #ffffff;
    --border: #e6e6e6;
    --text: var(--fontColor);
    --muted: #666;
  }
  html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    line-height: 1.45;
  }
  .wrap {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 16px;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  @media (max-width: 800px) {
    .grid {
      grid-template-columns: 1fr;
    }
  }
  .card {
    background: var(--card);
    padding: 18px 18px 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
  }
  h2 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    letter-spacing: .2px;
  }
  ul {
    margin: 0;
    padding-left: 1.2em;
  }
  li {
    margin: 8px 0;
  }
  .muted {
    color: var(--muted);
  }


