.text-info {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;

  background: linear-gradient(
    to bottom,
    #f7f2f8 0%,
    #fdfbfd 40%,
    #ffffff 100%
  );
}
/* Übergang von vorheriger Section */

/* Bild */
.text-bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  z-index: 0;
}

/* Content */
.text-info-inner {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

/* kleine Headline */
.text-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c89a63;
  margin-bottom: 12px;
}

/* große Headline */
.text-title {
  font-family: 'Great Vibes', cursive;
  font-size: 3.5rem;
  color: rgb(77, 57, 84);
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Text */
.text-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5e5163;
}
.text-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
  z-index: 0;
}

.text-info-inner {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .text-info {
    padding: 80px 20px;
    background-size: 260px;
  }

  .text-title {
    font-size: 2.4rem;
  }

  .text-description {
    font-size: 1rem;
  }
}
