/* =========================
   ABOUT SECTION
========================= */

.about {
  padding: 120px 20px;
  background: #ffffff;
}

.about .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   HERO IMAGE
========================= */

.about-hero {
  width: 100%;
  max-width: 380px;   /* 🔥 kleiner = edler */
  height: 300px;      /* 🔥 deutlich reduziert */
  margin: 30px auto 80px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.10);
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* subtiler Overlay für mehr Tiefe */
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08),
    rgba(0,0,0,0.22)
  );
}

/* =========================
   TEXT
========================= */

.about-text {
  max-width: 680px; /* leicht schmaler = hochwertiger */
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  font-size: 17px;
  line-height: 1.9;
  color: #4a5a60;
  margin-bottom: 26px;
}

/* =========================
   OPTIONAL: LEGACY IMAGE GRID
========================= */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  display: grid;
  gap: 20px;
}

.about-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .about-hero {
    max-width: 100%; /* wichtig für mobile */
    height: 260px;
    margin: 30px auto 60px;
  }

  .about-text {
    padding: 0 10px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 220px;
  }

}