/* About section (ported from Next.js) */
.about-section {
  position: relative;
}

.about-section .aboutContent {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3cqw, 64px);
  text-align: left;
  box-sizing: border-box;
  container-type: inline-size;
}

.about-section .eyebrowParent {
  flex: 0 0 auto;
  width: clamp(280px, 39.3cqw, 580px);
  border-radius: 0 0 clamp(12px, 1.43cqw, 24px) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(24px, 3.8cqw, 64px);
}

.about-section .heading {
  margin: 0;
  font-family: 'P22 Mackinac Pro', serif;
  font-size: clamp(30px, 2.5vw + 1rem, 64px);
  letter-spacing: -0.03em;
  text-transform: capitalize;
  font-weight: 500;
  color: #333f5b;
  text-align: left;
}

.about-section .subheadingParent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  font-size: clamp(15px, 1vw + 0.5rem, 20px);
  color: #6d717b;
}

.about-section .aboutSubheading {
  align-self: stretch;
  letter-spacing: clamp(-0.02em, -0.025em, -0.03em);
  line-height: 150%;
}

.about-section .foundedBySeasonedInvestorF {
  margin-block-start: 0;
  margin-block-end: 5px;
}

.about-section .foundedBySeasoned {
  font-weight: 500;
  font-family: 'Avenir Next', sans-serif;
  color: #6d717b;
}

.about-section .fredMartin {
  font-family: 'Avenir Next', sans-serif;
  color: #3495ff;
}

.about-section .blankLine {
  margin-block-start: 0;
  margin-block-end: 5px;
  font-weight: 500;
}

.about-section .ourBoldGoalEmpower20Mill {
  margin: 0;
}

.about-section .ourBoldGoal {
  font-family: 'Avenir Next', sans-serif;
  color: #f37f54;
}

.about-section .learnMore {
  display: flex;
  align-items: center;
}

.about-section .imageIcon {
  position: relative;
  object-fit: cover;
  width: clamp(345px, 55vw, 950px);
  height: clamp(268.4px, 40vw + 50px, 774px);
  border-radius: clamp(12px, 1vw + 6px, 24px);
}

/* Learn more button (matches Next.js structure) */
.about-section .learn-more-button_button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: transparent;
  color: #3495ff;
  font-family: 'PP Neue Montreal', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.about-section .learn-more-button_button:hover {
  color: #e97c4a;
  transform: translateX(2px);
}

.about-section .learn-more-button_exploreOurResources {
  letter-spacing: -0.01em;
  line-height: 150%;
}

.about-section .learn-more-button_solararrowRightLinearIcon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.about-section .learn-more-button_button:hover .learn-more-button_solararrowRightLinearIcon {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .about-section .aboutContent {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-section .eyebrowParent {
    display: contents;
  }

  .about-section .subheadingParent {
    display: contents;
  }

  .about-section .eyebrow { order: 1; }
  .about-section .heading { order: 2; }
  .about-section .imageIcon { order: 3; width: 100%; }
  .about-section .aboutSubheading { order: 4; }
  .about-section .subheadingParent > :last-child { order: 5; justify-self: center; }
}
