/* ── About Panel ── */
.about-panel {
  text-align: left !important;
  max-width: 820px;
  margin: 0 auto;
}

/* ── Header ── */
.about-header {
  margin-bottom: 56px;
  text-align: left !important;
}

.about-header .section-kicker {
  display: block;
  text-align: left !important;
  margin-bottom: 24px;
}

.about-headline {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  color: rgb(255, 255, 255);
  line-height: 1.25;
  letter-spacing: -0.03em;
  text-align: left !important;
}

.about-headline .accent-word {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

/* ── Body ── */
.about-body {
  display: flex;
  flex-direction: column;
  gap: 48px;
  text-align: left !important;
}

/* ── Sections ── */
.about-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left !important;
}

.about-section-title {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(11px, 1vw, 12px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: left !important;
}

.about-text {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.52);
  text-align: left !important;
}

.about-text-closing {
  color: rgba(255, 255, 255, 0.62);
  text-align: left !important;
}

/* ── Pillars ── */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}

.about-pillar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left !important;
}

.pillar-rule {
  width: 28px;
  height: 2px;
  background: rgb(140, 200, 140);
  border-radius: 2px;
  margin-bottom: 4px;
}

.pillar-title {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(13px, 1.1vw, 14px);
  font-weight: 600;
  color: rgb(255, 255, 255);
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-align: left !important;
}

/* ── CTA ── */
.about-cta {
  margin-top: 56px;
  display: flex;
  justify-content: flex-start;
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .about-pillars {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .about-body {
    gap: 36px;
  }

  .about-cta {
    margin-top: 40px;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .about-headline {
    font-size: 20px;
  }

  .about-text {
    font-size: 14px;
  }
}
