.about {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.about__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/about-workers.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.about__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.3) 35%,
    rgba(0, 0, 0, 0.05) 55%,
    transparent 70%
  );
}

.about__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 120px var(--content-padding) 157px 214px;
  box-sizing: border-box;
}

.about__text {
  max-width: 578px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__heading {
  font-family: 'Lexend Giga', sans-serif;
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 500;
  color: var(--color-cyan);
  line-height: normal;
  margin: 0;
  letter-spacing: -0.09em;
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 441px;
}

.about__body p {
  font-family: 'Blinker', sans-serif;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-white);
  margin: 0;
}

.about__body p + p {
  margin-top: 14px;
}

@media (max-width: 768px) {
  .about__bg {
    background-position: 70% center;
  }

  .about__overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.45) 45%,
      rgba(0, 0, 0, 0.25) 100%
    );
  }

  .about__inner {
    padding-bottom: 64px;
  }

  .about__text {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .about__inner {
    padding-bottom: 52px;
  }

  .about__body {
    gap: 20px;
  }
}
