/* ================================================
   ABOUT STORY – premium, clean, improved Zapex style
================================================ */

.about-story {
  padding: 6rem 1rem;
  position: relative;
  overflow: hidden; /* prevents image overflow */
}

/* --- Background Image --- */
.about-story__image-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

/* ZAWSZE pełny obrazek + pełne wycentrowanie */
.about-story__image-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: auto; /* <-- zostawiamy */
  transform: translate(-50%, -50%);
  opacity: 0.04;
}

/* --- Content --- */
.about-story__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-story__pretitle {
  display: inline-block;
  color: var(--color-dark-blue);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.about-story h2 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--color-blue-grey-900);
  text-align: center;
}

.about-story__text {
  color: var(--color-blue-grey-600);
  line-height: 1.7;
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
  text-align: justify;
}

/* --- Responsiveness --- */
@media (max-width: 900px) {
  .about-story {
    padding: 4rem 1.5rem;
  }

  .about-story__container {
    text-align: center;
  }

  .about-story h2 {
    font-size: 2rem;
  }

  .about-story__text {
    margin: 0 auto;
  }
}
