.about-section{
  width:100%;
  padding: 2rem 2rem;
}

/* Intro: single centered column */
.about-intro-wrap{
  max-width: 820px;   /* centered column width */
  margin: 0 auto 4rem auto;
  text-align: center;
}

.about-intro{
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
}

/* Full-width black background */
.about-main-bg{
  width: 100vw;
  background: #222222;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 40px 0; /* vertikaler Abstand im schwarzen Block */
}

/* Inner content container */
.about-main{
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: center; /* 🔑 vertikale Zentrierung von Text & Bild */
}

/* Text */
.about-text{
  flex: 1 1 55%;
  color: #bbb;
}

.about-text p{
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 5px 0;
}

/* Image */
.about-image{
  flex: 1 1 45%;
  display: flex;
  align-items: center;      /* 🔑 Bild vertikal zentrieren */
  justify-content: center;
}

.about-image img{
  width: 100%;
  max-width: 420px;         /* verhindert zu dominantes Bild */
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
  object-fit: cover;
}

.about-outro{
  margin-top: 2.5rem;
  font-weight: 500;
}

/* Mobile: stack */
@media (max-width: 900px){
  .about-section{
    padding: 4rem 1.25rem;
  }

  .about-main{
    flex-direction: column;
    gap: 2.5rem;
  }

  .about-image{
    order: -1; /* image above text on mobile */
  }

  .about-intro-wrap{
    margin-bottom: 3rem;
  }
}