main {
  counter-reset: SectionNumber;
}
main .styled-sectionlist {
  counter-increment: SectionNumber;
}
main .styled-sectionlist > *:first-child:before {
  content: counter(SectionNumber);
  position: absolute;
  left: 0;
  top: 0;
  width: 6rem;
  display: grid;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  font-size: var(--wp--preset--font-size--x-large);
  font-weight: 700;
  line-height: 1;
  color: var(--wp--preset--color--sehlweiss);
  background: var(--wp--preset--color--sehlgruen);
  aspect-ratio: 1;
  border-radius: 10000px;
  z-index: 1;
}
main .styled-list {
  position: relative;
  display: grid;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--wp--preset--spacing--30);
  counter-reset: ListItemNumber;
}
main .styled-list > *:not(:empty) {
  position: relative;
  background: var(--wp--preset--color--sehlstein);
  padding: var(--wp--preset--spacing--30);
  padding-top: var(--wp--preset--spacing--50);
  counter-increment: ListItemNumber;
}
main .styled-list > *:not(:empty)::marker {
  content: none;
}
main .styled-list > *:not(:empty):before {
  content: counter(ListItemNumber, upper-alpha);
  position: absolute;
  left: 50%;
  top: 0;
  width: 2.5rem;
  display: grid;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, calc(-50% + 0.25em));
  line-height: 1;
  color: var(--wp--preset--color--sehlweiss);
  background: var(--wp--preset--color--sehlgruen);
  aspect-ratio: 1;
  border-radius: 10000px;
  z-index: 1;
}
main .styled-list-row {
  position: relative;
  display: grid;
  padding: 0;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--wp--preset--spacing--30);
  counter-reset: ListItemNumber;
}
main .styled-list-row > *:not(:empty) {
  position: relative;
  background: var(--wp--preset--color--sehlstein);
  padding: var(--wp--preset--spacing--30);
  padding-left: var(--wp--preset--spacing--50);
  counter-increment: ListItemNumber;
}
main .styled-list-row > *:not(:empty)::marker {
  content: none;
}
main .styled-list-row > *:not(:empty):before {
  content: counter(ListItemNumber, upper-alpha);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  display: grid;
  justify-content: center;
  align-items: center;
  transform: translate(calc(-50% - 0.25em), calc(-50% + 0.5em));
  line-height: 1;
  color: var(--wp--preset--color--sehlweiss);
  background: var(--wp--preset--color--sehlgruen);
  aspect-ratio: 1;
  border-radius: 10000px;
  z-index: 1;
}

.em-table.wp-block-group > .wp-block-columns + .wp-block-columns {
  border-top: 1px solid var(--wp--preset--color--sehlgruen);
}