/* All seven language homepages: give the in-store coupon a clear primary action. */
.home-hero .hero-saving {
  border-top-color: #f29300;
}
.home-hero .hero-saving__grid {
  grid-template-columns: minmax(0, 1.6fr) minmax(175px, .8fr);
  gap: 16px;
}
.coupon-banner.coupon-banner--image {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  min-width: 0;
  padding: 8px;
  background: #fff;
  border: 2px solid #f29300;
  box-shadow: 0 8px 20px rgba(153, 93, 0, .12);
  color: var(--navy);
}

.coupon-banner--image::before {
  content: none;
}

.coupon-banner--image:hover {
  box-shadow: 0 12px 25px rgba(153, 93, 0, .19);
}

.coupon-banner--image .coupon-banner__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border-radius: 8px;
}

.coupon-banner--image .coupon-banner__caption {
  padding: 12px 3px 3px;
}

.coupon-banner--image .coupon-banner__caption h2 {
  margin: 0 0 6px;
  color: #172022;
  font-size: 1rem;
  line-height: 1.5;
}

.coupon-banner--image .coupon-banner__caption p {
  min-height: 0;
  margin: 0;
  color: #4f606d;
  font-size: .875rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
  padding-top: 8px;
}

.coupon-banner--image .coupon-banner__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 8px;
  border-radius: 10px;
  background: #172022;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}
.coupon-banner__cta > span:last-child { font-size: 1.35em; }
.coupon-banner--image:hover .coupon-banner__cta { background: #303a3c; }
.coupon-banner.coupon-banner--image:focus-visible { outline: 3px solid #172022; outline-offset: 4px; }
.home-hero .hero-saving__grid .preorder-card { background: #f6f8f8; border-color: #d9e1e2; }
.home-hero .preorder-card > span { color: #526267; }
.home-hero .hero-saving__grid .preorder-card .btn {
  background: #fff;
  border: 1px solid #8a999d;
  color: #273b42;
}
@media (max-width: 760px) {
  .home-hero .hero-saving__grid { grid-template-columns: minmax(0, 1fr); }
  .coupon-banner--image .coupon-banner__cta { font-size: 22px; }
}

/* Keep the image and its visible caption in one semantic figure. */
.coupon-banner--image .coupon-banner__figure {
  min-width: 0;
  margin: 0;
}

/* Allow localized action labels to wrap while keeping the arrow visible. */
.coupon-banner__cta > span:first-child { min-width: 0; overflow-wrap: break-word; }
.coupon-banner__cta > span:last-child { flex-shrink: 0; }
