/**
 * Frontend layout for [bwb_promo] shortcode (.bwb-promo-card, .bwb-campaign-banner).
 * Enqueued only when the shortcode renders HTML.
 */

/* =========================
   PROMO CARD
   ========================= */

.bwb-promo-card {
  display: flex;
  gap: 14px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid #1e293b;
  border-radius: 14px;
  background: #020617;
  overflow: hidden;
}

/* LEFT SIDE */

.bwb-promo-card .bwb-hero-logo {
  display: block;
  max-width: 140px;
  height: auto;
  margin: 0 auto 10px;
}

.bwb-promo-card .bwb-hero-left {
  flex: 0 0 320px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 8px 10px;
}

.bwb-promo-card .bwb-hero-title {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  color: #e5e7eb;
  margin: 0 0 10px;
}

.bwb-promo-card.bwb-campaign-banner .bwb-promo-out-now-badge {
  position: absolute;
  top: 18px;
  left: 10px;
  z-index: 6;
  display: inline-block;
  padding: 6px 12px;
  border: 2px solid #fff;
  border-radius: 6px;
  background: #e11d24;
  color: #fff !important;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
  transform: rotate(-12deg);
  transform-origin: center center;
  pointer-events: none;
}

.bwb-promo-card .bwb-hero-text {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 14px;
}

.bwb-promo-card .bwb-hero-btn {
  display: inline-block;
  align-self: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none !important;
  background: #ffcf5c;
  color: #111827 !important;
}

.bwb-promo-card .bwb-hero-btn:hover {
  text-decoration: none !important;
  background: #e3b548;
  color: #111827 !important;
}

.bwb-promo-card .bwb-hero-casino-heading {
  margin: 0 0 12px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #e5e7eb;
  text-align: center;
}

.bwb-promo-card .bwb-hero-casino-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 0 4px;
}

.bwb-promo-card a.bwb-hero-casino-tile.bwb-hero-btn {
  display: block;
  flex: 0 0 auto;
  width: 88px;
  aspect-ratio: 1 / 1;
  padding: 0 !important;
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a !important;
  color: transparent !important;
  line-height: 0;
  align-self: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.bwb-promo-card a.bwb-hero-casino-tile.bwb-hero-btn:hover {
  transform: scale(1.12);
  background: #0f172a !important;
  color: transparent !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.bwb-promo-card .bwb-hero-casino-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bwb-promo-card .bwb-hero-responsible {
  margin: 10px 0 0;
  padding: 0;
  font-size: 11px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.42);
}

/* RIGHT SIDE */

.bwb-promo-card .bwb-hero-right {
  flex: 1 1 auto;
  min-width: 0;
}

/* Optional second asset: show desktop / mobile per breakpoint (matches 768px layout break below) */
.bwb-promo-card .bwb-hero-media-slot--mobile {
  display: none;
}

@media (max-width: 768px) {
  .bwb-promo-card .bwb-hero-media-slot--desktop {
    display: none;
  }

  .bwb-promo-card .bwb-hero-media-slot--mobile {
    display: block;
  }
}

/* unified media */

.bwb-promo-card .bwb-hero-media-link {
  display: block;
  line-height: 0;
  text-decoration: none !important;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 12px;
  overflow: hidden;
}

.bwb-promo-card .bwb-hero-media-link:hover {
  background: transparent !important;
}

.bwb-promo-card .bwb-hero-media {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* MOBILE */

@media (max-width: 768px) {
  .bwb-promo-card {
    flex-direction: column-reverse;
  }

  .bwb-promo-card.bwb-campaign-banner {
    overflow: visible;
  }

  .bwb-promo-card .bwb-hero-left {
    flex: 0 0 auto;
    max-width: none;
  }

  /* Anchor badge to text column (below media), not over the video/image */
  .bwb-promo-card.bwb-campaign-banner .bwb-hero-left {
    position: relative;
  }

  .bwb-promo-card .bwb-hero-title {
    font-size: 17px;
    margin: 0 0 8px;
    line-height: 1.25;
  }

  .bwb-promo-card.bwb-campaign-banner .bwb-promo-out-now-badge {
    top: 4px;
    left: 1px;
    z-index: 10;
    font-size: 10px;
    padding: 5px 11px;
    transform: rotate(-12deg);
  }
}

/* CAMPAIGN MODE */

.bwb-promo-card.bwb-campaign-banner {
  position: relative;
  overflow: visible;
}

/* DESKTOP: force banner behavior */

@media (min-width: 769px) {
  .bwb-promo-card.bwb-campaign-banner .bwb-hero-right {
    height: 320px;
    overflow: hidden;
    border-radius: 12px;
  }

  .bwb-promo-card.bwb-campaign-banner .bwb-hero-media-slot {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    border-radius: 12px;
  }

  .bwb-promo-card.bwb-campaign-banner .bwb-hero-media-link {
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .bwb-promo-card.bwb-campaign-banner .bwb-hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .bwb-promo-card.bwb-campaign-banner .bwb-hero-media {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .bwb-promo-card .bwb-hero-title {
    font-size: 27px !important;
  }
}

/* FEATURED PILL */

.bwb-promo-card.bwb-campaign-banner .bwb-campaign-featured-pill {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;

  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  padding: 4px 8px;
  border-radius: 6px;

  background: #111;
  color: #fff;
}

/* MOBILE PILL */

@media (max-width: 768px) {
  .bwb-promo-card.bwb-campaign-banner .bwb-campaign-featured-pill {
    top: 16px;
    right: 16px;
    font-size: 9px;
    letter-spacing: 0.3px;
    padding: 3px 6px;
    border-radius: 4px;
  }
}

/* Casino tiles use .bwb-hero-casino-tile (still .bwb-hero-btn for click tracking) */

@media (max-width: 768px) {
  .bwb-promo-card a.bwb-hero-casino-tile.bwb-hero-btn {
    width: 76px;
  }

  .bwb-promo-card .bwb-hero-casino-heading {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

/* Geo fallback: single pill CTA (not casino tiles) */

.bwb-promo-card.bwb-campaign-banner .bwb-hero-left a.bwb-hero-btn:not(.bwb-hero-casino-tile) {
  display: inline-block !important;
  width: 240px !important;
  text-align: center !important;
  padding: 14px 0 !important;
  font-size: 18px !important;
}
