/* Meist */
.about-page {
  padding-top: 0;
}

.about-sections {
  width: 72%;
  max-width: 1500px;
}

.about-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.about-story {
  margin-top: 70px;
  align-items: start;
  animation: heroSlideFadeUp 0.8s ease 0.16s both;
}

.about-product-row {
  margin-top: 140px;
  align-items: start;
  animation: heroSlideFadeUp 0.8s ease 0.24s both;
}

.about-media {
  min-width: 0;
  margin: 0;
  padding: 0;
  background: transparent;
}

.about-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.about-copy {
  min-width: 0;
  color: var(--text-light);
}

.about-copy h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.about-copy p {
  margin: 0 0 18px;
  color: var(--text-light);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.about-copy p:last-of-type {
  margin-bottom: 0;
}

.about-inline-link {
  color: #9fb3ff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.about-inline-link:hover {
  color: #ffffff;
}

.about-button {
  margin-top: 26px;
  padding: 12px 20px;
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .about-story,
  .about-product-row {
    animation: none;
  }
}

@media (max-width: 1100px) {
  .about-sections {
    width: 85%;
  }

  .about-story {
    margin-top: 56px;
  }

  .about-product-row {
    margin-top: 100px;
  }

  .about-copy h2 {
    font-size: 25px;
  }

  .about-copy p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .about-sections {
    width: calc(100% - 32px);
  }

  .about-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-story,
  .about-product-row {
    margin-top: 64px;
  }

  .about-copy h2 {
    font-size: 24px;
  }

  .about-copy p {
    font-size: 15px;
  }
}

