/**
 * Special Offer banner — formal "framed announcement" style.
 *
 * Double gold border with corner stars, large centered title,
 * centered body, prominent CTA button.
 */

.cheri-offer {
  background: #0a0a0a;
  border: 1px solid #C9A84C;
  margin: 2.5rem 0;
  padding: 0.5rem;
}

.cheri-offer__inner {
  border: 1px solid #C9A84C;
  padding: 2.5rem 2rem 2rem;
  color: #ffffff;
  text-align: center;
  position: relative;
}

/* Four corner stars — top-left, top-right, bottom-left, bottom-right */
.cheri-offer__inner::before,
.cheri-offer__inner::after {
  color: #C9A84C;
  font-size: 1.1rem;
  position: absolute;
  pointer-events: none;
  line-height: 1;
}
.cheri-offer__inner::before {
  content: "★";
  top: 0.75rem;
  left: 1rem;
}
.cheri-offer__inner::after {
  content: "★";
  top: 0.75rem;
  right: 1rem;
}

/* Bottom corners via the .cheri-offer wrapper */
.cheri-offer::before,
.cheri-offer::after {
  content: "★";
  color: #C9A84C;
  font-size: 1.1rem;
  position: absolute;
  bottom: 1.25rem;
  pointer-events: none;
  line-height: 1;
  z-index: 1;
}
.cheri-offer::before { left: 1.5rem; }
.cheri-offer::after { right: 1.5rem; }

.cheri-offer {
  position: relative;
}

.cheri-offer__title {
  color: #C9A84C;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  line-height: 1.15;
}

/* Decorative divider below title */
.cheri-offer__title::after {
  content: "";
  display: block;
  width: 60%;
  max-width: 380px;
  height: 1px;
  background: #C9A84C;
  margin: 1rem auto 0;
}

.cheri-offer__body {
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.75rem;
  color: #ffffff;
}

.cheri-offer__body p {
  margin: 0 0 0.5rem;
}

.cheri-offer__body p:first-child {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f0e4b8;
}

.cheri-offer__body p:last-child {
  margin-bottom: 0;
  font-style: italic;
  font-size: 0.9rem;
  color: #cfcfcf;
}

.cheri-offer__body strong {
  color: #C9A84C;
}

/* CTA button */
.cheri-offer__cta a {
  display: inline-block;
  background: #C9A84C;
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 2px;
  transition: background 0.15s ease;
}

.cheri-offer__cta a:hover,
.cheri-offer__cta a:focus {
  background: #d8b865;
  color: #0a0a0a;
}

@media (max-width: 575.98px) {
  .cheri-offer__inner {
    padding: 2rem 1rem 1.5rem;
  }
  .cheri-offer__inner::before { left: 0.5rem; }
  .cheri-offer__inner::after { right: 0.5rem; }
  .cheri-offer::before { left: 1rem; }
  .cheri-offer::after { right: 1rem; }
}
