/* Bull Briefing widget — frontend styles.
 * Scoped to .bullb. 300px wide, works in any sidebar.
 */
.bullb {
  --bullb-accent: #a7c838;
  --bullb-ink: #353332;
  --bullb-line: #e8e5de;
  --bullb-muted: #8a857c;
  --bullb-bg: #f6f5f1;
  --bullb-maxw: 300px;
  width: 100%;
  max-width: var(--bullb-maxw, 300px);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--bullb-line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.04);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--bullb-ink);
  box-sizing: border-box;
  line-height: 1.4;
  container-type: inline-size;
  container-name: bullb;
}
.bullb *, .bullb *::before, .bullb *::after { box-sizing: border-box; }

.bullb__header {
  padding: 11px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--bullb-line);
}
.bullb__brand { display: flex; align-items: center; gap: 8px; }
.bullb__badge {
  width: 22px; height: 22px; border-radius: 4px;
  background: var(--bullb-accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; letter-spacing: -0.4px;
}
.bullb__brandname { font-size: 12px; font-weight: 700; color: var(--bullb-ink); letter-spacing: -0.2px; }
.bullb__live {
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  color: #d92d20; background: color-mix(in srgb, #d92d20 12%, transparent);
  padding: 3px 7px; border-radius: 3px;
}

.bullb__news { padding: 16px 18px 18px; border-bottom: 1px solid var(--bullb-line); }

.bullb__kicker {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.4px;
  color: var(--bullb-accent); text-transform: uppercase;
}
.bullb__kicker i { width: 14px; height: 2px; background: var(--bullb-accent); border-radius: 1px; display: inline-block; }

.bullb__cover {
  margin-top: 12px; height: 120px; border-radius: 6px;
  background-color: var(--bullb-bg);
  background-image: repeating-linear-gradient(135deg, var(--bullb-bg), var(--bullb-bg) 8px, #eeece6 8px, #eeece6 16px);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; padding: 10px;
}
.bullb__cover-label {
  position: absolute; top: 8px; left: 10px;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 9px; color: var(--bullb-muted); letter-spacing: 0.5px;
}
.bullb__tag {
  background: var(--bullb-ink); color: #fff;
  font-size: 9px; font-weight: 600; letter-spacing: 0.8px;
  padding: 4px 7px; border-radius: 3px;
  position: relative; z-index: 1;
}

.bullb__headline {
  margin: 12px 0 8px; font-size: 16px; font-weight: 700;
  line-height: 1.25; color: var(--bullb-ink); letter-spacing: -0.3px;
  text-wrap: pretty;
}
/* Linked article: clickable cover + headline */
a.bullb__cover { text-decoration: none; cursor: pointer; }
.bullb__headline a {
  color: inherit; text-decoration: none;
  transition: color .15s;
}
.bullb__headline a:hover { color: var(--bullb-accent); }
a.bullb__cover .bullb__tag { transition: background .15s; }
a.bullb__cover:hover .bullb__tag { background: var(--bullb-accent); }
.bullb__excerpt { margin: 0; font-size: 12.5px; line-height: 1.5; color: #5a5751; }
.bullb__meta {
  margin-top: 10px; font-size: 10.5px; color: var(--bullb-muted);
  display: flex; gap: 10px; align-items: center;
}
.bullb__meta i { width: 3px; height: 3px; border-radius: 2px; background: var(--bullb-muted); }

.bullb__picks { padding: 16px 18px; position: relative; }
.bullb__signup { padding: 0 18px 16px; }

/* Connector arrow — links news → picks. Stacked (narrow): points down,
   sits on the divider between news and picks. */
.bullb__connector {
  position: absolute; z-index: 2;
  top: -13px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bullb-accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px var(--bullb-bg);
}
.bullb__connector svg { width: 15px; height: 15px; }
.bullb--nonews .bullb__connector { display: none; }
.bullb__subtitle {
  margin: 8px 0 12px; font-size: 14px; font-weight: 700;
  color: var(--bullb-ink); letter-spacing: -0.2px; line-height: 1.3;
}

/* ── Stock row ─────────────────────────────────── */
.bullb__stocks { display: flex; flex-direction: column; gap: 6px; position: relative; }
.bullb__row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; background: #fff;
  border: 1px solid var(--bullb-line); border-radius: 6px;
}
.bullb__ticker {
  width: 34px; height: 34px; border-radius: 6px;
  background: color-mix(in srgb, var(--bullb-accent) 15%, transparent);
  color: var(--bullb-accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; letter-spacing: 0.3px; flex-shrink: 0;
}
.bullb__body { flex: 1; min-width: 0; }
.bullb__line1 { display: flex; justify-content: space-between; align-items: baseline; gap: 6px; }
.bullb__name {
  font-size: 12px; font-weight: 700; color: var(--bullb-ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bullb__chg {
  font-size: 10.5px; font-weight: 700;
  font-variant-numeric: tabular-nums; flex-shrink: 0;
}
.bullb__chg.is-up { color: #3d7a1b; }
.bullb__chg.is-down { color: #c94a4a; }
.bullb__rowfoot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: 6px; padding-top: 6px;
  border-top: 1px dashed var(--bullb-line);
}
.bullb__rowfoot .bullb__article-link { margin-top: 0; }
.bullb__tv {
  flex-shrink: 0; margin-left: auto;
  display: inline-flex; align-items: center; justify-content: flex-end;
  font-size: 11px; line-height: 1; min-height: 20px;
}
.bullb__tv tv-ticker-tag { display: block; min-height: 20px; }
.bullb__tv tv-ticker-tag:not(:defined) { visibility: hidden; }
/* Doppeltes Kürzel/Logo im TV-Ticker sichtbar lassen — linkes Badge entfällt */
.bullb__thesis { font-size: 10.5px; color: #6a6760; line-height: 1.35; margin-top: 2px; }
.bullb__article-link {
  display: inline-block; margin-top: 5px;
  font-size: 10.5px; font-weight: 700; color: var(--bullb-accent);
  text-decoration: none; line-height: 1.3;
}
.bullb__article-link:hover { text-decoration: underline; }
.bullb__popover-link {
  display: inline-block; margin-top: 9px;
  font-size: 11px; font-weight: 700; color: #fff;
  background: var(--bullb-accent);
  padding: 6px 10px; border-radius: 5px; text-decoration: none;
}
.bullb__popover-link:hover { filter: brightness(1.08); }

/* ── Info popover ─────────────────────────────── */
.bullb__row.has-detail { position: relative; cursor: pointer; padding-right: 30px; }
.bullb__row.has-detail:hover,
.bullb__row.has-detail.is-open { border-color: var(--bullb-accent); }
.bullb__info-icon {
  position: absolute; top: 8px; right: 8px;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  background: color-mix(in srgb, var(--bullb-accent) 16%, transparent);
  color: var(--bullb-accent);
  transition: background .15s, color .15s;
}
.bullb__row.has-detail:hover .bullb__info-icon,
.bullb__row.has-detail.is-open .bullb__info-icon {
  background: var(--bullb-accent); color: #fff;
}
.bullb__popover {
  position: absolute; left: 0; right: 0; bottom: calc(100% + 8px);
  z-index: 30;
  background: var(--bullb-ink); color: #fff;
  border-radius: 8px; padding: 12px 13px 13px;
  box-shadow: 0 8px 30px rgba(0,0,0,.28);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s, transform .16s, visibility .16s;
  pointer-events: none;
}
.bullb__popover::after {
  content: ''; position: absolute; top: 100%; left: 24px;
  border: 7px solid transparent; border-top-color: var(--bullb-ink);
}
/* Unsichtbare Brücke über die Lücke, damit der Hover nicht abreißt */
.bullb__popover::before {
  content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 12px;
}
.bullb__row.has-detail.is-open .bullb__popover {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.bullb__popover-head { display: flex; align-items: center; gap: 7px; margin-bottom: 7px; }
.bullb__popover-ticker {
  font-size: 9px; font-weight: 800; letter-spacing: .3px;
  background: var(--bullb-accent); color: #fff;
  padding: 3px 6px; border-radius: 4px; flex-shrink: 0;
}
.bullb__popover-name { font-size: 12px; font-weight: 700; color: #fff; flex: 1; min-width: 0; }
.bullb__popover-close {
  background: none; border: none; color: rgba(255,255,255,.55);
  font-size: 18px; line-height: 1; cursor: pointer; padding: 0 2px; flex-shrink: 0;
}
.bullb__popover-close:hover { color: #fff; }
.bullb__popover-text { margin: 0; font-size: 11.5px; line-height: 1.5; color: rgba(255,255,255,.86); }
/* Let the popover escape the widget's rounded clip while open */
.bullb:has(.bullb__row.has-detail.is-open) { overflow: visible; }
/* Popover only interactive once the picks are revealed */
.bullb:not(.is-revealed) .bullb__row.has-detail { pointer-events: none; cursor: default; }
.bullb:not(.is-revealed) .bullb__info-icon { opacity: 0; }

/* ── Variant A: blur fade ───────────────────────── */
.bullb[data-variant="blur"] .bullb__row-wrap {
  transition: filter .5s cubic-bezier(.2,.7,.3,1) var(--delay, 0ms), opacity .5s var(--delay, 0ms);
  filter: blur(6px); opacity: .85;
}
.bullb[data-variant="blur"] .bullb__fade {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 50%, rgba(255,255,255,.85) 100%);
  transition: opacity .4s;
}
.bullb[data-variant="blur"].is-revealed .bullb__row-wrap { filter: none; opacity: 1; }
.bullb[data-variant="blur"].is-revealed .bullb__fade { opacity: 0; }

/* ── Variant B: vault ───────────────────────────── */
.bullb__vault {
  background: var(--bullb-ink); color: #fff;
  border-radius: 8px; padding: 18px 14px 16px;
  margin-bottom: 8px;
  transition: opacity .35s, transform .35s, max-height .45s;
  max-height: 220px; overflow: hidden;
}
.bullb__vault-lock {
  display: flex; justify-content: center; margin-bottom: 10px;
}
.bullb__vault-lock::before {
  content: ''; position: absolute;
}
.bullb__vault-lock {
  position: relative;
}
.bullb__vault-lock svg {
  width: 44px; height: 44px; padding: 13px; border-radius: 22px;
  background: var(--bullb-accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--bullb-accent) 15%, transparent);
}
.bullb__vault-tickers { display: flex; justify-content: center; gap: 6px; margin-bottom: 10px; }
.bullb__vault-tickers span {
  padding: 4px 8px; border-radius: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.4);
  filter: blur(2px);
}
.bullb__vault-hint { font-size: 11px; text-align: center; opacity: .72; line-height: 1.4; margin: 0 8px; }

.bullb[data-variant="vault"] .bullb__stocks { display: none; }
.bullb[data-variant="vault"].is-revealed .bullb__vault { opacity: 0; max-height: 0; padding-top: 0; padding-bottom: 0; margin-bottom: 0; }
.bullb[data-variant="vault"].is-revealed .bullb__stocks { display: flex; }
.bullb[data-variant="vault"].is-revealed .bullb__row-wrap {
  animation: bullbVaultIn .5s var(--delay, 0ms) both cubic-bezier(.2,.7,.3,1);
}
@keyframes bullbVaultIn {
  from { opacity: 0; transform: translateY(-8px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

/* ── Variant C: flip ────────────────────────────── */
.bullb__flip { perspective: 900px; height: 64px; }
.bullb__flip-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform .6s cubic-bezier(.2,.7,.3,1) var(--delay, 0ms);
}
.bullb__flip-back, .bullb__flip-front {
  position: absolute; inset: 0; backface-visibility: hidden;
  border-radius: 6px;
}
.bullb__flip-back {
  background: var(--bullb-ink); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--bullb-accent) 27%, transparent);
}
.bullb__flip-back svg { color: var(--bullb-accent); }
.bullb__flip-num {
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 22px; font-weight: 700; color: var(--bullb-accent);
}
.bullb__flip-word { font-size: 10.5px; opacity: .6; letter-spacing: 1px; }
.bullb__flip-front { transform: rotateY(180deg); }
.bullb[data-variant="flip"].is-revealed .bullb__flip-inner { transform: rotateY(180deg); }

/* ── Form ───────────────────────────────────────── */
.bullb__form,
.bullb__ktform {
  display: flex; flex-direction: column; gap: 6px; margin-top: 14px;
  transition: opacity .3s, max-height .4s;
  overflow: hidden; max-height: 600px;
}
/* Normalise Klick-Tipp's injected markup so it fits the 300px widget */
.bullb__ktform form { margin: 0 !important; }
.bullb__ktform input[type="email"],
.bullb__ktform input[type="text"] {
  width: 100% !important; height: 34px; padding: 0 10px; font-size: 12px;
  border: 1px solid var(--bullb-line); border-radius: 5px; outline: none;
  color: var(--bullb-ink); background: #fff; box-sizing: border-box;
  font-family: inherit; margin-bottom: 6px;
}
.bullb__ktform input[type="submit"],
.bullb__ktform button[type="submit"] {
  width: 100%; height: 36px; background: var(--bullb-accent) !important;
  color: #fff !important; border: none !important; border-radius: 5px !important;
  font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
  cursor: pointer; font-family: inherit; text-transform: uppercase;
}
.bullb.is-revealed .bullb__ktform { opacity: 0; max-height: 0; margin-top: 0; pointer-events: none; }
.bullb__email {
  height: 34px; padding: 0 10px; font-size: 12px;
  border: 1px solid var(--bullb-line); border-radius: 5px;
  outline: none; color: var(--bullb-ink); background: #fff;
  font-family: inherit;
}
.bullb__email:focus { border-color: var(--bullb-accent); box-shadow: 0 0 0 2px color-mix(in srgb, var(--bullb-accent) 20%, transparent); }
.bullb__email.is-error { border-color: #c94a4a; }

.bullb__cta {
  height: 36px; background: var(--bullb-accent); color: #fff; border: none;
  border-radius: 5px; font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
  cursor: pointer; font-family: inherit; text-transform: uppercase;
  transition: filter .15s;
}
.bullb__cta:hover { filter: brightness(1.06); }
.bullb__cta:disabled { opacity: .7; cursor: wait; }
.bullb__error { font-size: 10.5px; color: #c94a4a; min-height: 0; }
.bullb__error:empty { display: none; }
.bullb__privacy { font-size: 9.5px; color: var(--bullb-muted); text-align: center; margin-top: 8px; line-height: 1.4; }
.bullb__benefits { display: flex; flex-direction: row; flex-wrap: nowrap; align-items: center; justify-content: center; gap: 4px 10px; margin-top: 7px; }
.bullb__benefit { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 600; color: #2e7d33; white-space: nowrap; }
.bullb__benefit svg { width: 12px; height: 12px; flex-shrink: 0; }
.bullb__footer-links a { color: var(--bullb-muted); text-decoration: underline; }
.bullb__footer-links a:hover { color: var(--bullb-ink); }
.bullb__footer-links .bullb__sep { margin: 0 4px; }

.bullb__success {
  margin-top: 14px; padding: 10px 12px; border-radius: 6px;
  background: color-mix(in srgb, var(--bullb-accent) 15%, transparent);
  color: #3d5211; font-size: 11px;
  display: none; align-items: center; gap: 8px;
}
.bullb.is-revealed .bullb__form { opacity: 0; max-height: 0; margin-top: 0; pointer-events: none; }
.bullb.is-revealed .bullb__success { display: flex; }

.bullb__pending {
  display: none;
  margin: 10px 14px 4px;
  padding: 9px 11px;
  background: #fff8e1;
  border: 1px solid #f0d97c;
  border-radius: 6px;
  font-size: 11px;
  color: #6b5612;
  text-align: center;
  line-height: 1.45;
}
.bullb.is-pending .bullb__pending { display: block; }
.bullb.is-pending .bullb__form { opacity: 0.55; pointer-events: none; }

/* ── Footer ─────────────────────────────────────── */
.bullb__footer {
  padding: 8px 18px; border-top: 1px solid var(--bullb-line);
  background: var(--bullb-bg); font-size: 9.5px; color: var(--bullb-muted);
  display: flex; justify-content: space-between; align-items: center;
}

/* ════════════════════════════════════════════════════════════
   WIDE / HORIZONTAL LAYOUT
   Kicks in automatically when the widget's own width ≥ 640px
   (article 770 / homepage 1150). Below that — sidebar & mobile —
   it stays in the vertical stacked layout above. Driven by the
   widget's container size, not the viewport, so it reflows
   correctly no matter where it's placed.
   ════════════════════════════════════════════════════════════ */
@container bullb (min-width: 580px) {
  .bullb__layout {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 340px);
    grid-template-areas:
      "news picks"
      "news signup";
  }
  .bullb__benefits { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 5px 14px; }
  .bullb__benefit { font-size: 11px; }
  .bullb__news {
    grid-area: news;
    border-bottom: none;
    border-right: 1px solid var(--bullb-line);
    padding: 20px 22px;
  }
  .bullb__picks  { grid-area: picks;  padding: 18px 22px 6px; }
  .bullb__signup { grid-area: signup; padding: 4px 22px 18px; }
  .bullb__signup .bullb__form { margin-top: 0; }
  .bullb__subtitle { font-size: 15px; margin-bottom: 10px; }
  /* Pfeil nur in der schmalen (Sidebar/Mobile) Version */
  .bullb__connector { display: none; }
}

/* Enough room to put the cover image beside the text */
@container bullb (min-width: 740px) {
  .bullb__news {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto auto auto 1fr auto;
    column-gap: 18px;
  }
  .bullb__news .bullb__kicker   { grid-column: 2; grid-row: 1; }
  .bullb__news .bullb__cover    { grid-column: 1; grid-row: 1 / 6; height: 100%; min-height: 150px; margin-top: 0; }
  .bullb__news .bullb__headline { grid-column: 2; grid-row: 2; font-size: 21px; line-height: 1.2; margin: 10px 0 8px; }
  .bullb__news .bullb__excerpt  { grid-column: 2; grid-row: 3; font-size: 13px; }
  .bullb__news .bullb__meta     { grid-column: 2; grid-row: 5; align-self: end; }
}

/* Very wide (homepage ~1150): compact — form top-right, stocks in a
   horizontal row across the bottom, so the widget stays short. */
@container bullb (min-width: 950px) {
  .bullb__layout {
    grid-template-columns: 1fr minmax(320px, 380px);
    grid-template-areas:
      "news   signup"
      "picks  picks";
  }
  .bullb__news { grid-template-columns: 300px 1fr; }
  .bullb__news .bullb__headline { font-size: 24px; }
  .bullb__picks {
    grid-area: picks;
    border-top: 1px solid var(--bullb-line);
    padding: 16px 24px 18px;
  }
  /* Pfeil bleibt in breiten Layouts ausgeblendet */
  .bullb__signup {
    grid-area: signup;
    padding: 20px 24px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .bullb__stocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 8px;
  }
}

/* ════════════════════════════════════════════════════════════
   Picks-only mode (news="off") — no article preview. Just the
   picks + signup, side by side, kept short. Wide format only.
   ════════════════════════════════════════════════════════════ */
.bullb--nonews .bullb__subtitle { margin-top: 0; }
@container bullb (min-width: 560px) {
  .bullb--nonews .bullb__layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-areas: "picks signup";
    align-items: stretch;
  }
  .bullb--nonews .bullb__picks {
    grid-area: picks;
    border-right: 1px solid var(--bullb-line);
    border-top: none;
    padding: 18px 22px;
  }
  /* Even vertical list so the column height matches the form */
  .bullb--nonews .bullb__stocks {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .bullb--nonews .bullb__signup {
    grid-area: signup;
    padding: 18px 22px;
    display: flex; flex-direction: column; justify-content: center;
    background: color-mix(in srgb, var(--bullb-accent) 4%, #fff);
  }
  .bullb--nonews .bullb__signup .bullb__form { margin-top: 0; }
}

/* ════════════════════════════════════════════════════════════
   Revealed state in wide layouts: the signup column is empty
   except for the success note → collapse it so the news uses the
   full width and the widget doesn't waste vertical space.
   ════════════════════════════════════════════════════════════ */
@container bullb (min-width: 580px) {
  .bullb.is-revealed .bullb__layout {
    grid-template-columns: 1fr;
    grid-template-areas: "news" "signup" "picks";
  }
  .bullb.is-revealed .bullb__news {
    border-right: none;
    border-bottom: 1px solid var(--bullb-line);
  }
  .bullb.is-revealed .bullb__signup {
    background: none;
    padding: 10px 22px 0;
  }
  .bullb.is-revealed .bullb__success { margin-top: 0; }
  .bullb.is-revealed .bullb__picks { border-top: none; }
}

/* Hintergrund-Tönung (bg_tint) — Widget fällt stärker auf */
.bullb--tint { background: var(--bullb-surface, #fff); border-color: color-mix(in srgb, var(--bullb-accent) 22%, var(--bullb-line)); }
.bullb--tint .bullb__header,
.bullb--tint .bullb__news,
.bullb--tint .bullb__picks,
.bullb--tint .bullb__signup { background: transparent; }
.bullb--tint .bullb__footer { background: color-mix(in srgb, var(--bullb-surface, #fff) 60%, #eceae4); }
.bullb--tint .bullb__row { background: #fff; }
.bullb--tint.bullb--nonews .bullb__signup { background: color-mix(in srgb, var(--bullb-accent) 5%, transparent); }
.bullb--tint[data-variant="blur"] .bullb__fade {
  background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--bullb-surface, #fff) 60%, transparent) 50%, color-mix(in srgb, var(--bullb-surface, #fff) 85%, transparent) 100%);
}

/* ════════════════════════════════════════════════════════════
   Short mode (style="short") — ohne Kopf-Überschrift und Badge,
   nur ein pulsierender Live-Punkt oben rechts.
   ════════════════════════════════════════════════════════════ */
.bullb__header--short {
  justify-content: flex-end;
  padding: 8px 18px 0;
  border-bottom: none;
}
.bullb__livedot {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 9.5px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: #c0392b;
}
.bullb__livedot i {
  width: 7px; height: 7px; border-radius: 50%; background: #d13030;
  box-shadow: 0 0 0 0 rgba(209,48,48,.6);
  animation: bullbPulse 1.8s ease-out infinite;
}
@keyframes bullbPulse {
  0%   { box-shadow: 0 0 0 0 rgba(209,48,48,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(209,48,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(209,48,48,0); }
}
@media (prefers-reduced-motion: reduce) { .bullb__livedot i { animation: none; } }
/* Sub-Überschrift nur solange die Picks verdeckt sind */
.bullb.is-revealed .bullb__subtitle { display: none; }

/* ════════════════════════════════════════════════════════════
   Banner mode (style="banner") — schlanke Streifen-Version:
   verdunkeltes Titelbild, Headline drauf, kompakter Reveal-CTA.
   ════════════════════════════════════════════════════════════ */
.bullb--banner { border: none; }
.bullb--banner .bullb__strip {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 20px;
  background-color: #141822;
  background-size: cover; background-position: center;
  color: #fff;
}
.bullb--banner .bullb__strip-main { flex: 1; min-width: 0; }
.bullb__strip-kicker {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.72); margin-bottom: 6px;
}
.bullb__strip-badge {
  width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0;
  background: var(--bullb-accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800;
}
.bullb--banner .bullb__live { background: #d13030; color: #fff; }
.bullb__strip-headline {
  margin: 0; font-size: 19px; font-weight: 800; line-height: 1.2;
  letter-spacing: -0.3px; color: #fff; text-wrap: balance;
}
.bullb__strip-headline a { color: #fff; text-decoration: none; }
.bullb__strip-headline a:hover { text-decoration: underline; }
.bullb__strip-teaser {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 10px;
  padding: 7px 14px 7px 8px; border-radius: 999px;
  background: color-mix(in srgb, var(--bullb-accent) 22%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--bullb-accent) 55%, transparent);
  font-size: 13.5px; font-weight: 800; color: #fff;
}
.bullb__strip-arrow {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--bullb-accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  animation: bullbNudge 1.7s ease-in-out infinite;
}
.bullb__strip-arrow svg { width: 14px; height: 14px; }
@keyframes bullbNudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(3px); }
}
@media (prefers-reduced-motion: reduce) { .bullb__strip-arrow { animation: none; } }
.bullb__strip-teaser-tickers { display: inline-flex; gap: 5px; }
.bullb__strip-chip {
  padding: 3px 9px; border-radius: 5px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  background: rgba(255,255,255,.14); color: rgba(255,255,255,.85);
  filter: blur(3.5px); user-select: none;
}
.bullb__strip-teaser-label { color: #fff; }
.bullb__strip-cta { width: 300px; flex-shrink: 0; }
.bullb__strip-cta .bullb__form { margin: 0; display: flex; flex-direction: column; gap: 8px; }
.bullb__strip-cta .bullb__privacy { color: rgba(255,255,255,.6); }
.bullb__strip-cta .bullb__benefit { color: #7ed07e; }
.bullb--banner.is-revealed .bullb__strip-cta { display: none; }

/* Picks-Reihe unter dem Streifen — auch verdeckt sichtbar (geblurrt) */
.bullb__strip-reveal {
  display: grid; gap: 8px;
  position: relative;
  padding: 12px 20px;
  background: #fff;
  border-top: 3px solid var(--bullb-accent);
}
.bullb--banner:not(.is-revealed) .bullb__strip-reveal .bullb__row-wrap {
  filter: blur(5px); opacity: .8; pointer-events: none; user-select: none;
}
.bullb__strip-lock {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.8));
}
.bullb--banner.is-revealed .bullb__strip-lock { display: none; }
.bullb__strip-lock-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--bullb-ink); color: #fff;
  font-size: 11.5px; font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,.22);
}
.bullb__strip-lock-pill svg { width: 14px; height: 14px; color: var(--bullb-accent); }
.bullb--banner.is-revealed .bullb__strip-teaser { display: none; }
.bullb__strip-legal {
  display: flex; gap: 14px; justify-content: flex-end;
  padding: 7px 20px; background: var(--bullb-bg);
  font-size: 9.5px;
}
.bullb__strip-legal a { color: var(--bullb-muted); text-decoration: underline; }

/* Stacked on narrow screens */
@container bullb (max-width: 620px) {
  .bullb--banner .bullb__strip { flex-direction: column; align-items: stretch; gap: 14px; }
  .bullb__strip-cta { width: auto; }
}
/* Wide: reveal picks as a horizontal row */
@container bullb (min-width: 720px) {
  .bullb--banner .bullb__strip-reveal {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
