.about-section {
  position: relative;
  background: var(--color1);
  padding: var(--section-padding) 1.25rem;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 12% auto auto 50%;
  width: min(34rem, 70vw);
  height: min(34rem, 70vw);
  background: radial-gradient(
    circle,
    rgba(241, 167, 5, 0.13),
    rgba(241, 167, 5, 0) 68%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.about-content {
  position: relative;
  width: min(100%, var(--container-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.about-heading {
  position: sticky;
  top: 2rem;
}

.about-heading h2 {
  font-family: var(--font-title);
  font-size: clamp(4.2rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 420px;
}

.about-card {
  position: relative;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    ),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-card::before {
  content: "2018";
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: -1.6rem;
  font-family: var(--font-title);
  font-size: clamp(6rem, 16vw, 12rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.about-card p {
  position: relative;
  max-width: 760px;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  color: var(--color-text-muted);
}

.about-card p:first-child {
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  color: var(--color-white);
  font-weight: 600;
}

.about-card p + p {
  margin-top: 1.15rem;
}

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-heading {
    position: static;
    text-align: center;
  }

  .about-heading h2 {
    max-width: 100%;
  }

  .about-card {
    max-width: 760px;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .about-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-heading h2 {
    font-size: clamp(3.5rem, 18vw, 4.7rem);
  }

  .about-card {
    border-radius: var(--radius-md);
  }

  .about-card::before {
    bottom: -1rem;
    font-size: 6rem;
  }
}
