.konzepteContainer {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1000' height='1000' viewBox='0 0 1000 1000'><circle cx='500' cy='500' r='500' fill='%23fdefe5'/></svg>");
  background-repeat: no-repeat;
  background-position-x: -10%;

}

.konzepteContainer p {
  margin-bottom: 55px;
  max-width: 720px;
}


.konzepte-listing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
  margin: 0 auto;
  padding-bottom: 100px;
}

.konzepte-listing__item {
	display: grid;
	align-items: end;
	background: #fffbe9;
	overflow: hidden;
	background-size: contain;
	background-repeat: no-repeat;
	aspect-ratio: 1.1;
}

.konzepte-listing__content {
  background-color: var(--clementine);
}

.konzepte-listing__text {
  margin-bottom: 1.5rem;
  min-height: 300px;
}

.konzepte-listing__link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition: color 0.3s ease;
padding: 30px;
}

.konzepte-listing__arrow {
  font-size: 1.4em;
  line-height: 0;
}

.konzepte-listing__image {
  width: 280px;
  height: 280px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  justify-self: end;
}

/* Responsive: 1 Spalte */
@media (max-width: 900px) {
  .konzepte-listing__grid {
    grid-template-columns: 1fr;
  }

  .konzepte-listing__item {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .konzepte-listing__image {
    margin: 2rem auto 0;
    width: 200px;
    height: 200px;
  }
}