/* Signal teaser toast — right-side notification for non-subscribers */
.ta-signal-teaser {
  --st-bg: rgba(18, 18, 22, 0.96);
  --st-border: rgba(255, 215, 0, 0.35);
  --st-gold: #ffd700;
  --st-text: #f2f2f2;
  --st-muted: rgba(242, 242, 242, 0.72);

  position: fixed;
  right: 1.25rem;
  bottom: 6.5rem;
  z-index: 1040;
  width: min(340px, calc(100vw - 1.5rem));
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 14px;
  background: var(--st-bg);
  border: 1px solid var(--st-border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  color: var(--st-text);
  font-family: inherit;
  animation: ta-st-in 0.38s ease both;
}

.ta-signal-teaser[hidden] {
  display: none !important;
}

@keyframes ta-st-in {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.ta-signal-teaser__close {
  position: absolute;
  top: 0.45rem;
  right: 0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(242, 242, 242, 0.55);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.ta-signal-teaser__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.ta-signal-teaser__badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1400;
  background: linear-gradient(135deg, #ffe566, var(--st-gold));
}

.ta-signal-teaser__title {
  margin: 0 0 0.35rem;
  padding-right: 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.ta-signal-teaser__meta {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  color: var(--st-muted);
}

.ta-signal-teaser__body {
  margin: 0 0 0.85rem;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--st-muted);
}

.ta-signal-teaser__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.45rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  color: #1a1400;
  background: linear-gradient(135deg, #ffe566, var(--st-gold));
  transition: filter 0.15s ease, transform 0.15s ease;
}

.ta-signal-teaser__cta:hover {
  filter: brightness(1.06);
  color: #1a1400;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .ta-signal-teaser {
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
    bottom: 5.5rem;
  }
}
