/* ── About ─────────────────────────────────────────────────── */
.about-text,
.about-image {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

@media (min-width: 769px) {
  .about-text {
    transform: translateX(-60px);
  }

  .about-image {
    transform: translateX(60px);
  }
}

.about.in-view .about-text,
.about.in-view .about-image {
  opacity: 1;
  transform: translateX(0);
}

.about.in-view .about-image {
  transition-delay: 0.15s;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 33px 8% 0;
}

.about-text h2 {
  font-size: var(--font-size-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 1.4rem;
}

.about-text p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-primary);
}

.about-image {
  width: 100%;
  max-width: 480px;
  justify-self: center;
}

@media (max-width: 950px) {
  .about {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding: 80px 6%;
  }

  .about-image {
    max-width: 300px;
    margin: 0 auto;
  }
}
