/* Custom Orders hero: larger Madison cookie, centered in the right-hand space. */
body:has(.custom-order-hero-image) > main > section:first-child {
  min-height: 31rem;
}

body:has(.custom-order-hero-image) > main > section:first-child > .max-w-6xl {
  padding-right: clamp(29rem, 41vw, 36rem);
}

.custom-order-hero-image {
  top: 50%;
  right: max(
    clamp(1.5rem, 4vw, 4rem),
    calc((100vw - 90rem) / 2 + 2rem)
  );
  width: clamp(25rem, 33vw, 31.5rem);
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  body:has(.custom-order-hero-image) > main > section:first-child {
    min-height: 0;
  }

  body:has(.custom-order-hero-image) > main > section:first-child > .max-w-6xl {
    padding-right: var(--spacing-lg);
  }

  .custom-order-hero-image {
    top: auto;
    right: auto;
    width: calc(100% - 3rem);
    max-width: 36rem;
    transform: none;
  }
}

@media (max-width: 600px) {
  .custom-order-hero-image {
    width: calc(100% - 2rem);
  }
}
