/* StickyShowcase — FULL-WIDTH 50/50 split. One half is the editorial image+copy
   pinned in place; the other half is the scrolling product grid. The image is
   full-bleed (covers its half edge-to-edge). Sticky works because the aside
   stretches to the taller products column, giving the pinned block room to move. */
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase {
  width: 100%;
  margin-top: var(--ssh-mt, 0px);
  margin-bottom: var(--ssh-mb, 0px);
}

/* full width — no max-width, no gutter on desktop */
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__wrap {
  width: 100%;
}

.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* align-items: stretch (default) — aside fills the row so it can pin */
}
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__grid.is-reversed .sticky-showcase__aside {
  order: 2;
}
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__grid.is-reversed .sticky-showcase__products {
  order: 1;
}

.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__sticky {
  position: sticky;
  top: var(--ssh-top, 100px);
  display: flex;
  flex-direction: column;
}

/* Editorial image — full-bleed within its half. */
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__media {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--paper-2);
}
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__media.has-ratio {
  aspect-ratio: var(--ssh-ratio, 3 / 4);
}
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__pic {
  display: contents;
}
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: var(--ssh-fit, cover);
}
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__media.has-ratio .sticky-showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Editorial copy — padded so text isn't glued to the screen edge. */
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(24px, 2.6vw, 44px) clamp(24px, 3.4vw, 60px);
  color: var(--ssh-text, var(--ink));
}
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ssh-ac, var(--accent));
}
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, var(--ts-max, 52px));
}
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__desc {
  margin: 0;
  max-width: 44ch;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__cta {
  margin-top: 4px;
}

/* Scrolling product half — internal padding so cards breathe from the divide/edge. */
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__products {
  padding: clamp(28px, 3vw, 56px) clamp(24px, 3.4vw, 64px);
}
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__grid-products {
  display: grid;
  grid-template-columns: repeat(var(--ssh-cols, 2), minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 26px);
}
.cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__empty {
  padding: 40px;
  border: 1px solid var(--line);
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* MOBILE — stack (image on top, products below), NO sticky, only horizontal spacing. */
@media (max-width: 860px) {
  .cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__wrap {
    padding-inline: var(--gutter);
  }
  .cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__grid.is-reversed .sticky-showcase__aside {
    order: 0;
  }
  .cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__grid.is-reversed .sticky-showcase__products {
    order: 0;
  }
  .cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__sticky {
    position: static;
  }
  .cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__media {
    margin-bottom: 20px;
  }
  .cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__copy {
    padding: 0;
  }
  .cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__products {
    padding: 0;
  }
  .cc_oe6aXTYiT2_go54SGDNWD .sticky-showcase__grid-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}
