main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hauptbild0 {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  max-height: 600px;
}

.hauptbild1 {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  max-height: 600px;
}

#bildpanel {
  /*grid-row: 1/3;*/
  grid-column: 1/3;
}

article {
  display: grid;
  grid-template-columns: 50% 50%;
  column-gap: 2rem;
  row-gap: 2rem;
  height: max-content;
  width: 100%;
}

section {
  /* background-color: var(--col-background); */
  /* background: repeating-linear-gradient(45deg, var(--col-panel0) 0 0.5rem, var(--col-panel1) 0.5rem 1rem); */
  background: linear-gradient(45deg, transparent, var(--col-background));
  hyphens: auto;
  padding: 2rem;
  line-height: 2rem;
  border: dashed 0.15rem var(--col-background-text);
  border-radius: 1rem;
}

section > h2 {
  margin-bottom: 1rem;

  &::before {
    content: "";
    display: inline-block;
    background: url("https://rosa-vielfalt.at/ressourcen/bilder/stern.svg");
    background-size: 1rem 1rem;
    height: 1rem;
    width: 1rem;
    margin-right: 0.5rem;
  }

}

section > p {
  margin-bottom: 2rem;
}

@media screen and (max-width: 1200px) {

  article {
    display: flex;
    flex-direction: column;
  }

}
