/* Home collection cards: contain artwork separately from copy.
   Per-source framing compensates for photographic whitespace, never stretches bottles. */
body .brand-home .moment-card.editorial-product {
  --bottle-stage: clamp(240px, 25vw, 350px);
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: var(--bottle-stage) 1fr;
  align-items: stretch !important;
  gap: 24px !important;
  min-width: 0;
}
body .brand-home .moment-card .editorial-product-image {
  position: relative;
  height: var(--bottle-stage) !important;
  min-height: 0;
  width: 100%;
  overflow: hidden !important;
  background: #fff !important;
}
body .brand-home .moment-card .editorial-product-image img {
  position: absolute;
  left: 50%;
  bottom: calc(var(--bottle-stage) * -.03);
  width: calc(var(--bottle-stage) * 1.04) !important;
  height: calc(var(--bottle-stage) * 1.04) !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  transform: translateX(-50%) !important;
  transition: none;
}
body .brand-home .moment-card .editorial-product-image img[src$="A0829.png"] {
  width: calc(var(--bottle-stage) * .97) !important;
  height: calc(var(--bottle-stage) * .97) !important;
  bottom: calc(var(--bottle-stage) * -.035);
}
body .brand-home .moment-card .editorial-product-image img[src$="energize-lemon-ginger.jpg"] {
  width: calc(var(--bottle-stage) * 1.31) !important;
  height: calc(var(--bottle-stage) * 1.31) !important;
  bottom: calc(var(--bottle-stage) * -.195);
}
body .brand-home .moment-card.editorial-product > div:last-child {
  position: relative;
  min-width: 0;
  padding-top: 16px;
}
@media (max-width: 700px) {
  body .brand-home .moment-card.editorial-product {
    --bottle-stage: 170px;
    grid-template-columns: 110px minmax(0, 1fr) !important;
    grid-template-rows: auto;
    align-items: center !important;
    gap: 18px !important;
  }
  body .brand-home .moment-card.editorial-product > div:last-child { padding-top: 0; }
}
