/** Shopify CDN: Minification failed

Line 219:0 All "@import" rules must come first

**/
.our-purpose-v2 {
  background-color: #FFFFFF; /* White */
  padding: 96px 24px;
}

.our-purpose-v2__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ---------- Left column (unchanged content, kept as-is) ---------- */

.our-purpose-v2__left {
  position: sticky;
  top: 120px;
}

.our-purpose-v2__heading h2,
.our-purpose-v2__heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
  text-transform: uppercase;
  color: #1C1B19; /* Ink */
  margin: 0 0 24px;
}

.our-purpose-v2__body,
.our-purpose-v2__body p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 17px;
  line-height: 1.7;
 color: rgba(28, 27, 25, 0.7);
  margin: 0;
}

/* ---------- Right column: 6 stacked photo cards ---------- */

.our-purpose-v2__right {
  display: flex;
  flex-direction: column;
}

.our-purpose-v2__card {
  display: flex;
  flex-direction: column;
  padding: 28px 0;
  border-bottom: 1px solid rgba(28, 27, 25, 0.15);
}

.our-purpose-v2__card:first-child {
  padding-top: 0;
}

.our-purpose-v2__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #2F4B63; /* Blueprint */
  margin-bottom: 20px;
}

.our-purpose-v2__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.our-purpose-v2__media-placeholder {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(241, 238, 230, 0.08),
      rgba(241, 238, 230, 0.08) 10px,
      transparent 10px,
      transparent 20px
    ),
    #2F4B63;
}

.our-purpose-v2__number {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #E8542A; /* Tape orange */
  margin-bottom: 8px;
}

.our-purpose-v2__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px;
  line-height: 1.3;
  color: #1C1B19;
  margin: 0 0 8px;
}

.our-purpose-v2__description {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(28, 27, 25, 0.7);
  margin: 0;
}

/* ---------- Mobile: stack columns, left no longer sticky ---------- */

@media screen and (max-width: 989px) {
  .our-purpose-v2__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .our-purpose-v2__left {
    position: static;
  }
}

@media screen and (max-width: 749px) {
  .our-purpose-v2 {
    padding: 64px 20px;
  }
}
/* ==========================================================
   OUR PURPOSE V2 — MOBILE ONE-SCREEN OVERRIDE
   Append this to the END of our-purpose-v2.css.
   Stacks the left text ABOVE a horizontal swipe carousel of the
   6 cards below it, condensed to fit one mobile screen.
   ========================================================== */

@media screen and (max-width: 749px) {

  .our-purpose-v2 {
    padding: 32px 0;
  }

  .our-purpose-v2__grid {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .our-purpose-v2__left {
    position: static;
  }

  .our-purpose-v2__heading {
    font-size: 22px;
    margin: 0 0 8px;
  }

  .our-purpose-v2__body {
    font-size: 13px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Horizontal swipe carousel for the 6 cards */
  .our-purpose-v2__right {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    scrollbar-width: none;
  }

  .our-purpose-v2__right::-webkit-scrollbar {
    display: none;
  }

  .our-purpose-v2__card {
    flex: 0 0 72%;
    scroll-snap-align: center;
    border-bottom: none;
    padding: 0;
  }

  .our-purpose-v2__media {
    aspect-ratio: 4 / 3;
    margin-bottom: 10px;
  }

  .our-purpose-v2__title {
    font-size: 15px;
  }

  .our-purpose-v2__description {
    font-size: 12px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
/* ==========================================================
   OUR PURPOSE V2 — GREY TEXT → INTER FONT
   Add this to the END of our-purpose-v2.css
   Changes the grey body copy (intro paragraph + card descriptions)
   from IBM Plex Mono to Inter.
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

/* Intro paragraph under the heading, left column */
.our-purpose-v2__body,
.our-purpose-v2__body p {
  font-family: 'Inter', sans-serif;
}

/* Description text under each of the 6 scenario cards */
.our-purpose-v2__description {
  font-family: 'Inter', sans-serif;
}