/* Mobile tweak: move image (cozy-right) below buttons on small screens */
@media (max-width: 760px) {
  /* stack the two columns vertically */
  .cozy-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px;
    align-items: stretch;
  }

  /* ensure left content stays first */
  .cozy-left {
    order: 0;
    width: 100%;
  }

  /* put the image block after the text/buttons */
  .cozy-right {
    order: 1;
    width: 100%;
  }

  /* visual spacing for the image block */
  .cozy-image-wrap {
    margin: 0 auto;
    margin-top: 20px;
    max-width: 460px;
    width: 100%;
    box-sizing: border-box;
  }

  /* smaller image on very small screens */
  .cozy-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }

  /* badge positioning tweak so it sits over the image nicely on mobile */
  .cozy-badge {
    right: 12px;
    bottom: 12px;
    transform: none;
  }

  /* tighten spacing around CTAs so image sits directly under them */
  .cozy-ctas {
    margin-top: 14px;
    gap: 12px;
    flex-wrap: wrap;
  }

  /* optionally center CTA buttons on mobile */
  .cozy-ctas { display: flex; justify-content: center; }
}