.about {
  position: relative;
  min-height: 100vh;
  padding: 120px 8vw;
  display: flex;
  align-items: center;
  background-image: url("../../../images/iett_background.jpg");
  background-size: cover;
  background-position: center right;
  color: #f3f0ea;
  overflow: hidden;
}
.about::after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #000);
    pointer-events: none;
}

.about__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.88) 28%,
      rgba(0, 0, 0, 0.55) 48%,
      rgba(0, 0, 0, 0.2) 75%,
      rgba(0, 0, 0, 0.55) 100%
    );
  z-index: 1;
}


.about__content {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.about__label {
  display: block;
  margin-bottom: 20px;
  color: #E14323;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  font-weight: 700;
}

.about h2 {
  margin: 0;
  /*font-family: Georgia, serif;*/
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  font-weight: 400;
}

.about h2 strong {
  color: #fff;
  font-weight: 400;
}

.about__line {
  width: 70px;
  height: 2px;
  margin: 36px 0;
  background: #E14323;
}

.about p {
  max-width: 540px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(243, 240, 234, 0.9);
  font-family: Arial, sans-serif;
}

.about em {
  color: #E14323;
  font-style: italic;
  font-weight: 700;
}

.about__quote {
  margin-top: 40px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 90, 54, 0.35);
  max-width: 560px;
  font-size: 1.1rem;
  line-height: 1.6;
  background: rgba(0, 0, 0, 0.28);
  font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
  .about {
    min-height: auto;
    padding: 50px 24px;
    background-position: 65% center;
  }

  .about__overlay {
    background: rgba(0, 0, 0, 0.78);
  }

  .about h2 {
    font-size: 3rem;
  }
}