/**
 * Promotion Banner - WPBakery Element Styles
 */

.the7child-promotion-banner-wrapper {
  margin: 24px 0;
  clear: both;
}

.the7child-promotion-banner {
  --the7child-promo-accent: #ac8834;
  --the7child-promo-accent-rgb: 172, 136, 52;
}

.the7child-promotion-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: center;
  max-width: 1180px;
  padding: 18px 24px 16px;
  border: 1px solid rgba(var(--the7child-promo-accent-rgb), 0.26);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(var(--the7child-promo-accent-rgb), 0.18), rgba(var(--the7child-promo-accent-rgb), 0.05)),
    #ffffff;
  box-shadow: 0 18px 34px rgba(31, 31, 31, 0.08);
}

.the7child-promotion-banner__inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, rgba(var(--the7child-promo-accent-rgb), 0.92), var(--the7child-promo-accent));
}

.the7child-promotion-banner__eyebrow {
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: #1f1f1f;
  color: var(--the7child-promo-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.the7child-promotion-banner__title {
  margin: 0;
  color: #1f1f1f;
  font-family: var(--font-accent, "Raleway", Helvetica, Arial, sans-serif);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.the7child-promotion-banner__window {
  margin: 0;
  padding: 8px 14px;
  border: 1px solid rgba(var(--the7child-promo-accent-rgb), 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.the7child-promotion-banner__copy {
  grid-column: 1 / -1;
  margin: 0;
  padding-left: 2px;
  color: rgba(31, 31, 31, 0.78);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
}

@media (max-width: 767px) {
  .the7child-promotion-banner__inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 18px 16px;
  }

  .the7child-promotion-banner__title {
    font-size: 22px;
  }

  .the7child-promotion-banner__window {
    justify-self: start;
    font-size: 13px;
  }

  .the7child-promotion-banner__copy {
    grid-column: auto;
    font-size: 14px;
  }
}
