/* =====================================================
   ABOUT PAGE — about.css
   ===================================================== */

/* ── Shared layout ──────────────────────────────────── */
.about-container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-teal {
  color: var(--senseye-teal);
}

/* ── Hero ───────────────────────────────────────────── */
.about-hero {
  display: flex;
}

.about-hero-img {
  flex: 0 0 50%;
  min-width: 0;
  overflow: hidden;
}

.about-hero-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-panel {
  flex: 0 0 50%;
  min-width: 0;
  box-sizing: border-box;
  background-color: #dbeef1;
  /* Avada computed 8%/12% relative to the column width (~50% of row).
     In flexbox, % padding resolves against the flex container (full row width),
     so we halve the percentages to get the same pixel result. */
  padding: 4% 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #0fc2b0;
  margin: 0 0 24px;
}

.about-hero-panel p {
  font-size: 18px;
  line-height: 1.6;
  color: #31396f;
  margin: 0 0 16px;
}

.about-hero-panel p:last-child {
  margin-bottom: 0;
}

.about-hero-panel .about-teal {
  color: #0fc2b0;
}

/* ── Stats ──────────────────────────────────────────── */
.about-stats-section {
  padding: 60px 0;
}

.about-stats-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.about-stat {
  flex: 1;
}

.about-stat-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.36;
  color: var(--senseye-white);
  margin: 0 0 16px;
}

.about-stat p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--senseye-text);
  margin: 0 0 10px;
}

.about-stat p:last-child {
  margin-bottom: 0;
}

.about-stat sup a {
  color: var(--senseye-teal);
  font-size: 0.75em;
}

/* ── Pull quote & Mission (shared pattern) ─────────── */
.about-pullquote-section,
.about-mission-section {
  text-align: center;
}

.about-pullquote-section {
  padding: 60px 0 40px;
}

.about-mission-section {
  padding: 40px 0 40px;
}

.about-pullquote,
.about-mission-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--senseye-white);
  margin: 0 0 24px;
}

.about-pullquote-sub,
.about-mission-quote {
  font-size: 18px;
  line-height: 1.6;
  color: var(--senseye-text);
  margin: 0 auto;
}

.about-pullquote-sub {
  max-width: 800px;
}

.about-mission-quote {
  max-width: 700px;
}

/* ── CTA ────────────────────────────────────────────── */
.about-cta-section {
  padding: 30px 0 80px;
  text-align: center;
}

.about-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--senseye-teal);
  color: var(--senseye-navy-deep);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1.5px solid var(--senseye-teal);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.about-btn:hover {
  background: transparent;
  border-color: var(--senseye-teal);
  color: var(--senseye-teal);
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 860px) {
  .about-container {
    padding: 0 24px;
  }

  .about-hero {
    flex-direction: column;
    min-height: auto;
  }

  .about-hero-img {
    flex: none;
    height: 240px;
  }

  .about-hero-panel {
    flex: none;
    padding: 30px 24px;
  }

  .about-hero-h1 {
    font-size: 26px;
  }

  .about-hero-panel p {
    font-size: 16px;
  }

  .about-stats-section {
    padding: 40px 0;
  }

  .about-stats-grid {
    flex-direction: column;
    gap: 32px;
  }

  .about-stat-title {
    font-size: 20px;
  }

  .about-pullquote-section,
  .about-mission-section {
    text-align: left;
  }

  .about-pullquote-section {
    padding: 40px 0 30px;
  }

  .about-mission-section {
    padding: 30px 0 40px;
  }

  .about-pullquote,
  .about-mission-title {
    font-size: 26px;
  }

  .about-pullquote-sub,
  .about-mission-quote {
    margin: 0;
  }

  .about-cta-section {
    padding: 20px 0 60px;
    text-align: left;
  }
}
