/** Shopify CDN: Minification failed

Line 20:14 Expected identifier but found whitespace
Line 20:16 Unexpected "{"
Line 20:25 Expected ":"
Line 20:51 Expected ":"
Line 21:17 Expected identifier but found whitespace
Line 21:19 Unexpected "{"
Line 21:28 Expected ":"
Line 21:57 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:in-the-wild (INDEX:27) */
.in-the-wild {
  background-color: rgb(var(--color-background));
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

.in-the-wild__inner {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

/* ── Header ── */
.in-the-wild__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.in-the-wild__header-left {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.in-the-wild__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.2rem;
  border-radius: 10rem;
    background: #051a36;
    color: #fff !important;
    font-weight: 600;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgb(var(--color-foreground));
  width: fit-content;
}

.in-the-wild__heading {
  margin: 0;
  max-width: 52rem;
  line-height: 1.1;
}

/* Highlight "and everywhere in between" in teal/blue */
.in-the-wild__heading em,
.in-the-wild__heading strong {
  color: #2a7fba;
  font-style: normal;
}

.in-the-wild__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  border-radius: 10rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgb(var(--color-foreground));
  color: rgb(var(--color-foreground));
  background: transparent;
  transition: background-color 0.2s, color 0.2s;
}

.in-the-wild__cta:hover {
  background-color: rgb(var(--color-foreground));
  color: rgb(var(--color-background));
}

/* ── Grid ── */
.in-the-wild__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media screen and (min-width: 750px) {
  .in-the-wild__grid {
    grid-template-columns: 62fr 38fr;
    align-items: stretch;
  }
}

/* ── Images ── */
.in-the-wild__main-image {
  border-radius: 1.6rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

@media screen and (min-width: 750px) {
  .in-the-wild__main-image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 46rem;
  }
}

.in-the-wild__side-images {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.in-the-wild__side-row {
  display: grid;
  gap: 1.2rem;
  border-radius: 1.6rem;
  overflow: hidden;
}

/* First row: two images side by side */
.in-the-wild__side-row:first-child {
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 2/1;
}

/* Second row: one full-width image */
.in-the-wild__side-row:last-child {
  grid-template-columns: 1fr;
  aspect-ratio: 16/10;
}

.in-the-wild__side-item {
  border-radius: 0;
  overflow: hidden;
  height: 100%;
}

.in-the-wild__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.in-the-wild__main-image:hover .in-the-wild__img,
.in-the-wild__side-item:hover .in-the-wild__img,
.in-the-wild__side-row:last-child:hover .in-the-wild__img {
  transform: scale(1.03);
}

.in-the-wild__img.placeholder {
  background: rgba(var(--color-foreground), 0.04);
}

/* Mobile: stack grid images 2-up */
@media screen and (max-width: 749px) {
  .in-the-wild__side-row:first-child {
    aspect-ratio: 16/9;
  }
  .in-the-wild__side-row:last-child {
    aspect-ratio: 16/9;
  }
}
/* END_SECTION:in-the-wild */