/* =============================================================
   not-wellness-app.css — BuddieSpace "This Is Not Another Wellness App"
   Figma node 1:829 | Design canvas: 1440px wide
   ============================================================= */

/* ─── SECTION WRAPPER ─── */
.bs-not-wellness-app {
  background-color: #59acf8;
  padding: clamp(48px, 6.25vw, 90px) clamp(20px, 3.96vw, 57px);
}

.bs-not-wellness-app__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: clamp(24px, 2.5vw, 40px);
  align-items: flex-start;
}

/* ─── LEFT COLUMN ─── */
.bs-not-wellness-app__left {
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.74vw, 25px);
  padding-top: clamp(4px, 0.7vw, 10px);
}

.bs-not-wellness-app__headline {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1;
  color: #21254a;
  font-size: 0;     /* spans control their own sizes */
  margin: 0;
  letter-spacing: -0.01em;
}

/* "This Is Not" + "Wellness App" — navy bold */
.bs-not-wellness-app__hl-main {
  font-size: clamp(36px, 6.39vw, 92px);
  font-weight: 700;
  color: #21254a;
  line-height: 1.05;
}

/* "Another" — green black */
.bs-not-wellness-app__hl-accent {
  font-size: clamp(38px, 6.6vw, 95px);
  font-weight: 900;
  color: #b0f288;
  line-height: 1.05;
}

.bs-not-wellness-app__subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #21254a;
  font-size: clamp(16px, 2.29vw, 33px);
  line-height: 1.45;
  margin: 0;
  max-width: 95%;
}

/* Green arrow decoration */
.bs-not-wellness-app__arrow {
  width: clamp(160px, 27.2vw, 391px);
  height: auto;
  display: block;
  margin-top: clamp(4px, 0.83vw, 12px);
}

/* ─── RIGHT COLUMN ─── */
.bs-not-wellness-app__right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.875vw, 27px);
}

/* ─── INDIVIDUAL CARD ─── */
.bs-not-wellness-app__card {
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-height: clamp(80px, 9.72vw, 140px);
  padding: clamp(10px, 1.53vw, 22px) clamp(14px, 1.53vw, 22px);
  gap: clamp(14px, 2.08vw, 30px);
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.25);
}

/* ─── ICON (sprite viewport) ─── */
/*
  The sprite image (not-wellness-icons-sprite.png, 1086×1448px) contains 4 icons
  stacked vertically. Each card uses CSS positioning to reveal its row.
  Container is 100×96px at 1440px design width; percentage values scale it.
*/
.bs-not-wellness-app__card-icon {
  width: clamp(46px, 6.94vw, 100px);
  height: clamp(44px, 6.67vw, 96px);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.bs-not-wellness-app__card-icon img {
  position: absolute;
  /* 339.38% of the 100px container = ~339px display width — matches Figma */
  width: 339%;
  height: auto;
  left: -9%;
}

/* Card 1 — info icon (first row of sprite) */
.bs-not-wellness-app__card:nth-child(1) .bs-not-wellness-app__card-icon img {
  top: -18%;
}

/* Card 2 — community/connection icon (second row) */
.bs-not-wellness-app__card:nth-child(2) .bs-not-wellness-app__card-icon img {
  top: -136%;
}

/* Card 3 — document/no icon (third row) */
.bs-not-wellness-app__card:nth-child(3) .bs-not-wellness-app__card-icon img {
  top: -251%;
}

/* Card 4 — nature/environment icon (fourth row) */
.bs-not-wellness-app__card:nth-child(4) .bs-not-wellness-app__card-icon img {
  top: -359%;
}

/* ─── DIVIDER (sky-blue vertical line inside white card) ─── */
.bs-not-wellness-app__card-divider {
  width: 4px;
  height: clamp(36px, 4.27vw, 62px);
  flex-shrink: 0;
  display: block;
}

/* ─── CARD TEXT ─── */
.bs-not-wellness-app__card-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #21254a;
  font-size: clamp(13px, 2.22vw, 32px);
  line-height: 1.3;
  margin: 0;
  flex: 1;
  min-width: 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* ── Tablet: stack columns, 2-col card grid ── */
@media (max-width: 1023px) {
  .bs-not-wellness-app__inner {
    flex-direction: column;
    gap: clamp(32px, 4vw, 48px);
  }

  .bs-not-wellness-app__left,
  .bs-not-wellness-app__right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .bs-not-wellness-app__right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .bs-not-wellness-app__card {
    min-height: 100px;
    align-items: center;
  }

  .bs-not-wellness-app__card-text {
    font-size: clamp(13px, 2.1vw, 20px);
  }
}

/* ── Mobile: single column everything ── */
@media (max-width: 599px) {
  .bs-not-wellness-app {
    padding: 40px 16px;
  }

  .bs-not-wellness-app__right {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bs-not-wellness-app__card {
    min-height: 76px;
    padding: 14px 16px;
    gap: 12px;
  }

  .bs-not-wellness-app__card-text {
    font-size: 15px;
  }

  .bs-not-wellness-app__card-icon {
    width: 48px;
    height: 46px;
  }

  .bs-not-wellness-app__arrow {
    width: clamp(140px, 50vw, 220px);
  }
}
