/** Shopify CDN: Minification failed

Line 119:10 Unexpected "{"
Line 119:19 Expected ":"
Line 120:17 Expected identifier but found whitespace
Line 120:19 Unexpected "{"
Line 120:28 Expected ":"
Line 120:82 Expected ":"
Line 123:12 Unexpected "{"
Line 123:21 Expected ":"
Line 124:19 Expected identifier but found whitespace
Line 124:21 Unexpected "{"
... and 40 more hidden warnings

**/
@font-face {
  font-family: "Proxima Nova";
  src: url("/cdn/shop/files/Proxima-Nova.woff2?v=1766398621") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* ---------- Base layout ---------- */
.image-with-text .grid {
  margin-bottom: 3rem;
  gap: 31px;
}
/* Tablet: margin-bottom 36px */
@media screen and (min-width: 750px) and (max-width: 1024px) {
  .image-with-text .grid {
    margin-bottom: 36px;
  }
}
.image-with-text .grid__item {
  position: relative;
}

.image-with-text__media {
  min-height: 100%;
  overflow: hidden; /* was visible -> can cause paint/overflow issues */
}

/* Dawn heights (keep if you still use height settings) */
.image-with-text__media--small { height: 19.4rem; }
.image-with-text__media--medium { height: 29.6rem; }
.image-with-text__media--large { height: 43.5rem; }

@media (min-width: 750px) {
  .image-with-text__media--small { height: 31.4rem; }
  .image-with-text__media--medium { height: 46rem; }
  .image-with-text__media--large { height: 69.5rem; }
}

/* Content wrapper */
.image-with-text__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 4rem calc(4rem / var(--font-body-scale)) 5rem;
  word-break: break-word;
  border-radius: var(--text-boxes-radius);
  box-shadow: var(--text-boxes-shadow-horizontal-offset) var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius) rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
}

/* Desktop/tablet bigger padding */
@media (min-width: 990px) {
  .image-with-text__content {
    padding: 6rem 7rem 7rem;
  }
}

/* Reverse layout (desktop) */
@media (min-width: 750px) {
  .image-with-text__grid--reverse {
    flex-direction: row-reverse;
  }
}

/* Align helpers (keep) */
.image-with-text__content--mobile-right > * { align-self: flex-end; text-align: right; }
.image-with-text__content--mobile-center > * { align-self: center; text-align: center; }

@media (min-width: 750px) {
  .image-with-text__content--desktop-right > * { align-self: flex-end; text-align: right; }
  .image-with-text__content--desktop-center > * { align-self: center; text-align: center; }
  .image-with-text__content--desktop-left > * { align-self: flex-start; text-align: left; }
  .image-with-text__content--top { justify-content: flex-start; }
  .image-with-text__content--bottom { justify-content: flex-end; }
}

/* Heading / text styling (cleaned) */
.image-with-text__heading {
  margin: 0;
  padding: 13px;
  font-family: "Proxima Nova", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 31px;
  text-align: center;
}

.image-with-text__text p {
  margin: 0 0 1rem;
}


/* ---------- Your custom structure (text tile) ---------- */
.image-with-text__text-itemm {
  background: #F4F4F4;
}

/* Utility: section padding (Liquid values) */
.section-{{ section.id }}-padding {
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}
@media (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

/* Page wrapper padding */
.page-width-image { padding: 25px 0; }
@media (max-width: 1024px) {
  .page-width-image { padding: 0; }
}

/* ---------- Desktop / Tablet layout (your 40/60 split) ---------- */
@media (min-width: 750px) {
  .section-{{ section.id }} .image-with-text__grid {
    display: flex !important; /* override Dawn grid */
  }

  .section-{{ section.id }} .image-with-text__media-item {
    flex: 0 0 40%;
    max-width: 40%;
  }

  

  .section-{{ section.id }} .image-with-text__media {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 0 !important;
    overflow: hidden;
  }

  .section-{{ section.id }} .image-with-text__media img,
  .section-{{ section.id }} .image-with-text__media picture,
  .section-{{ section.id }} .image-with-text__media source {
    display: block;
  }

  .section-{{ section.id }} .image-with-text__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section-{{ section.id }} .image-with-text__content {
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: stretch;
  }

  .section-{{ section.id }} .inside-image-text {
    width: 100%;
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    text-align: center;
  }
}

/* ---------- Mobile layout (single clean version) ---------- */
@media (max-width: 749px) {
  /* stack */
  .section-{{ section.id }} .image-with-text__grid {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }

  /* centered tiles */
  .section-{{ section.id }} .image-with-text__media-item,
  .section-{{ section.id }} .image-with-text__text-itemm {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  /* image: responsive */
  .section-{{ section.id }} .image-with-text__media {
    height: auto !important;
    min-height: 0 !important;
  }

  .section-{{ section.id }} .image-with-text__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* text tile square */
  .section-{{ section.id }} .image-with-text__text-itemm {
    position: relative;
    padding-top: 73%;
  }

  /* content fills square */
  .section-{{ section.id }} .image-with-text__content {
    position: absolute;
    inset: 0;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: none; /* lower paint cost on mobile */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-{{ section.id }} .inside-image-text {
    width: 100%;
    padding: 1.75rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
  }

  .section-{{ section.id }} .image-with-text__heading {
    font-size: 16px;
    line-height: 1.4;
    padding: 8px 0;
    margin: 0 0 0.6rem;
  }

  .section-{{ section.id }} .image-with-text__text p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 0.75rem;
  }
}

/* ---------- Optional: remove heavy shadows on mobile globally for this section ---------- */
@media (max-width: 749px) {
  .image-with-text:not(.image-with-text--overlap) .image-with-text__media-item:after,
  .image-with-text:not(.image-with-text--overlap) .image-with-text__text-item:after,
  .image-with-text .image-with-text__media-item > *,
  .image-with-text .image-with-text__text-item > * {
    box-shadow: none !important;
  }
}
