/* ==========================================================================
   About Intro Section  —  Figma node 32:808
   Canvas: 1440 px wide | bg #21254a | py 100px, px 96px
   ========================================================================== */

/* ---- Section wrapper ---- */
.bs-about-intro {
  background-color: #21254a;
  padding:
    clamp(56px, 6.94vw, 100px)    /* top    100 / 1440 */
    clamp(20px, 6.67vw, 96px)     /* sides   96 / 1440 */
    clamp(56px, 6.94vw, 100px);   /* bottom */
}

/* ---- Centred inner container ---- */
.bs-about-intro__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 3.89vw, 56px); /* 56 / 1440 */
}

/* ---- Section heading: "Why BuddiesSpace was Built" ---- */
.bs-about-intro__heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(28px, 3.75vw, 54px); /* 54 / 1440 */
  line-height: 1.3;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
  margin: 0;
  width: 100%;
  text-transform: uppercase;
}

/* ---- Content group (eyebrow+photo+name group + quote block) ---- */
.bs-about-intro__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 2.22vw, 32px); /* 32 / 1440 */
  width: 100%;
}

/* ---- Eyebrow + photo + name block ---- */
.bs-about-intro__founder-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.11vw, 16px); /* 16 / 1440 */
}

/* ---- Eyebrow label: "OUR FOUNDER" ---- */
.bs-about-intro__eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(16px, 2.22vw, 32px); /* 32 / 1440 */
  line-height: 1.3;
  letter-spacing: 0;
  color: #59acf8;
  text-align: center;
  margin: 0;
}

/* ---- Photo + name card ---- */
.bs-about-intro__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.11vw, 16px); /* 16 / 1440 */
}

/* ---- Circular photo ---- */
.bs-about-intro__photo-wrap {
  width: clamp(160px, 20.56vw, 296px);  /* 296 / 1440 */
  height: clamp(160px, 20.56vw, 296px);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.bs-about-intro__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.05);
}

/* ---- Founder name: "Dr. Alaa Elnajjar" ---- */
.bs-about-intro__name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(18px, 2.22vw, 32px); /* 32 / 1440 */
  line-height: 1.3;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

/* ---- Quote block ---- */
.bs-about-intro__quote-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 0.56vw, 8px); /* 8 / 1440 */
  max-width: clamp(300px, 64.17vw, 924px); /* 924 / 1440 */
  width: 100%;
}

.bs-about-intro__quote-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 1.53vw, 22px); /* 22 / 1440 */
  line-height: 1.55;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
  margin: 0;
  width: 100%;
}

/* ---- Attribution: "— Alaa, Founder" ---- */
.bs-about-intro__attribution {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 1.53vw, 22px); /* 22 / 1440 */
  line-height: 1.55;
  letter-spacing: 0;
  color: #ffffff;
  text-align: center;
  margin: 0;
  width: 100%;
}

/* ---- CTA button: "Read Dr.Alaa's Story" ---- */
.bs-about-intro__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #59acf8;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 1.39vw, 20px); /* 20 / 1440 */
  line-height: normal;
  letter-spacing: 0;
  white-space: nowrap;
  text-decoration: none;
  padding: clamp(10px, 1.11vw, 16px) clamp(18px, 2.22vw, 32px); /* py-16 px-32 */
  border-radius: 8px;
  flex-shrink: 0;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.bs-about-intro__cta:hover {
  background-color: #7bbff9;
  text-decoration: none;
  color: #000000;
}

/* ==============================================
   TABLET  (≤ 1023 px)
   ============================================== */
@media (max-width: 1023px) {
  .bs-about-intro__quote-block {
    max-width: 100%;
  }
}

/* ==============================================
   MOBILE  (≤ 599 px)
   ============================================== */
@media (max-width: 599px) {
  .bs-about-intro {
    padding: 52px 20px 60px;
  }

  .bs-about-intro__inner {
    gap: 28px;
  }

  .bs-about-intro__heading {
    font-size: clamp(24px, 7vw, 36px);
    line-height: 1.2;
  }

  .bs-about-intro__eyebrow {
    font-size: clamp(14px, 4.5vw, 20px);
  }

  .bs-about-intro__name {
    font-size: clamp(16px, 5vw, 22px);
  }

  .bs-about-intro__quote-text,
  .bs-about-intro__attribution {
    font-size: clamp(13px, 4vw, 16px);
    line-height: 1.6;
  }

  .bs-about-intro__cta {
    font-size: clamp(13px, 4vw, 16px);
    padding: 12px 24px;
  }
}
