.about-section {
  position: relative;
  padding: 168px 0;
  background-image: url(/images/bg-texture.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin: 140px 0;
}

.about-title-wrapper {
  flex: 1 1 45%;
  text-align: start;
  min-width: 200px;
  display: block;
  line-height: 1;
}

.about-text {
  flex-basis: 50%;
  max-width: 668px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 25px;
  font-weight: 300;
  margin: 0 0 30px 0;
}

.about-images {
  display: flex;
  gap: 30px;
}

.about-image-item {
  flex: 1;
  overflow: hidden;
}

.about-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 📱 Tablets */
@media (max-width: 1024px) {
  .about-section {
    padding: 100px 0;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    margin: 80px 0;
  }

  .about-title-wrapper,
  .about-text {
    flex-basis: 100%;
    max-width: 100%;
    text-align: center;
  }

  .general-title-bg {
    font-size: 100px;
  }

  .general-title-fg {
    font-size: 60px;
    line-height: 1.2;
  }

  .about-images {
    flex-direction: column;
    gap: 20px;
  }
}

/* 📱 Smartphones */
@media (max-width: 768px) {
  .about-section {
    padding: 80px 20px;
  }

  .general-title-bg {
    font-size: 60px;
  }

  .general-title-fg {
    font-size: 36px;
    top: 110%;
  }

  .about-text p {
    font-size: 14px;
    line-height: 22px;
  }
}

/* 📱 Teléfonos muy pequeños */
@media (max-width: 480px) {
  .about-section {
    padding: 60px 15px;
  }

  .general-title-bg {
    font-size: 42px;
  }

  .general-title-fg {
    font-size: 28px;
    top: 105%;
  }

  .about-text p {
    font-size: 13px;
    line-height: 20px;
  }
}

.hero-filler {
  width: 100%;
  height: 66px;
  display: block;
  position: absolute;
  left: 0;
  top: -3.5rem;
  background-image: url(/images/white-filler.svg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 5;
}
