.about-text
{
  margin: 5% 2em 5% 2em;
  border: var(--border-debug);
}

.about-section-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-columns {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto;
  border: var(--border-debug);
}
.about-column-left {
  margin: 0 0 0 15%;
  width: 77.5%;
  height: 100%;
}
.about-column-right {
  margin: 0 0 0 7.5%;
  width: 77.5%;
  height: 100%;
}

img {
  margin:0 0 0 0;
  padding:0 0 0 0;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--normal-border-radius);
}

.runway-svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  margin: 0;
  will-change: transform;
  transform: translateY(var(--parallax-offset, 0px));
  transition: transform 3s ease-out;
  opacity: 1.0;
}

/* Mobile: stack the two about columns into rows */
@media (max-width: 768px) {
  .about-columns {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 1rem;
    padding: 0 1rem;
  }

  .about-column-left,
  .about-column-right {
    width: 95%;
    margin: 0 2.5% 0 2.5%;
  }
}