/* Mobile-only line breaks */
.mobile-br { display: none; }

/* ============================================================
   ABOUT PAGE — Minimal & Premium
   Cohesive with main site: dark bg, neon-yellow accent
   ============================================================ */

/* Prevent horizontal overflow at the page level */
body.about-page {
  overflow-x: hidden;
  max-width: 100vw;
}

.about-page {
  color: #fff;
}

.about-main {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  max-width: 100%;
}

.about-hero {
  align-items: center;
  display: flex;
  justify-content: center;
  max-width: var(--size-100);
  padding: 240px 0 100px;
  position: relative;
  text-align: center;
  overflow: hidden;
  overflow-x: clip;
}

.about-section {
  padding-bottom: 120px;
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.about-block-text {
  font-size: clamp(16px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 20px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.about-block-text:last-of-type {
  margin-bottom: 0;
}

.about-features {
  display: grid;
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-feature {
  display: flex;
  gap: 20px;
  text-align: left;
}

.about-feature-num {
  color: #DDFF00;
  font-family: var(--font-section-header);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

.about-feature-title {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-family: var(--font-section-header);
  font-weight: 700;
  letter-spacing: 0.03em;
  word-break: break-word;
  overflow-wrap: break-word;
}

.about-feature-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  font-family: var(--font-clean-body);
  word-break: break-word;
  overflow-wrap: break-word;
}

.about-profile {
  display: flex;
  align-items: center;
  gap: clamp(30px, 4vw, 50px);
  text-align: left;
}

.about-profile-img {
  width: clamp(100px, 15vw, 140px);
  height: clamp(100px, 15vw, 140px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center 25%;
  border: 1px solid rgba(221, 255, 0, 0.3);
  flex-shrink: 0;
}

.about-profile-name {
  font-size: clamp(20px, 2.5vw, 26px);
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-section-header);
  font-weight: 700;
  letter-spacing: 0.02em;
  word-break: break-word;
  overflow-wrap: break-word;
}

.about-profile-bio {
  font-size: clamp(15px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 16px;
  font-family: var(--font-clean-body);
  word-break: break-word;
  overflow-wrap: break-word;
}

.about-profile-tag {
  font-size: 12px;
  color: rgba(221, 255, 0, 0.9);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-family: var(--font-clean-body);
}

.about-hero-sub {
  max-width: 600px;
  margin: 30px auto 0;
}

@media (max-width: 768px) {
  .mobile-br { display: block; }

  /* Hard stop for any stray overflow */
  html, body.about-page {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
  }

  body.about-page .about-main,
  body.about-page .about-section {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }

  .about-hero {
    padding: 180px 0 80px;
    overflow-x: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* -------------------------------------------------------
     THE CRITICAL FIX:
     style.css forces .hero-sub to font-size: 32px !important
     on mobile. That's way too large for the about-page text
     "I TAKE RAW FOOTAGE AND DELIVER POLISHED FILMS."
     We override here with higher specificity + !important.
  ------------------------------------------------------- */
  body.about-page .about-hero-sub,
  body.about-page .hero-sub.about-hero-sub {
    font-size: clamp(13px, 3.6vw, 17px) !important;
    line-height: 1.25 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 16px auto 0 !important;
    box-sizing: border-box !important;
    padding: 0 20px !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    letter-spacing: 0.04em !important;
  }

  /* Section inner wrappers — prevent them from being wider than viewport */
  body.about-page .toolkit-inner,
  body.about-page .pricing-inner {
    box-sizing: border-box !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* Titles for mobile */
  body.about-page .hero-title {
    font-size: clamp(32px, 9vw, 42px) !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    letter-spacing: -0.02em !important;
    white-space: normal !important;
  }

  body.about-page .toolkit-title,
  body.about-page .pricing-title {
    font-size: clamp(28px, 8vw, 36px) !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    letter-spacing: -0.02em !important;
    white-space: normal !important;
  }

  /* Premium content blocks */
  body.about-page .ruuf-premium-block {
    box-sizing: border-box !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* Feature items */
  .about-feature {
    box-sizing: border-box;
    max-width: 100%;
  }

  .about-feature > div {
    min-width: 0;
  }

  .about-feature-title,
  .about-feature-desc,
  .about-block-text {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal !important;
    max-width: 100%;
  }

  /* Profile section */
  .about-profile {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    box-sizing: border-box !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .about-profile-name,
  .about-profile-bio,
  .about-profile-tag {
    word-break: break-word;
    overflow-wrap: break-word;
  }
}
