
.fs-teaser-locked { position: relative; }
.fs-teaser-locked > .fs-teaser-veil {
  position: absolute; inset: 0; z-index: 40;
  display: block;
  backdrop-filter: blur(9px) saturate(0.85);
  -webkit-backdrop-filter: blur(9px) saturate(0.85);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(20,20,26,0.18));
  text-decoration: none;
  /* The top of the section reads clean; the blur fades in below it. */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 35%, #000 55%);
  mask-image: linear-gradient(180deg, transparent 0%, transparent 35%, #000 55%);
}
.fs-teaser-locked > .fs-teaser-veil .fs-teaser-gate {
  position: absolute; left: 0; right: 0; bottom: 0; top: 55%;
  display: flex; flex-direction: column; gap: 14px;
  align-items: center; justify-content: center;
}
.fs-teaser-locked > .fs-teaser-veil .fs-teaser-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: rgba(17,17,22,0.88); color: #f5f2ea;
  font: 600 13px/1.2 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.02em; box-shadow: 0 10px 30px -12px rgba(0,0,0,0.5);
  pointer-events: none; text-align: center; max-width: 82%;
}
/* A dot drawn in CSS, not a lock emoji: the glyph rendered as a different
   picture on every platform and as a blank box on some Linux hosts. */
.fs-teaser-locked > .fs-teaser-veil .fs-teaser-chip::before {
  content: ''; flex: none; width: 6px; height: 6px;
  border-radius: 50%; background: currentColor; opacity: 0.72;
}

/* Link state: the whole veil is clickable, with a real button as the affordance. */
a.fs-teaser-veil { cursor: pointer; }
a.fs-teaser-veil .fs-teaser-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  background: #f5f2ea; color: #111116;
  font: 700 14px/1.2 ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0.01em; pointer-events: none;
  box-shadow: 0 14px 34px -14px rgba(0,0,0,0.65);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
a.fs-teaser-veil .fs-teaser-cta::after { content: '→'; }
a.fs-teaser-veil:hover .fs-teaser-cta,
a.fs-teaser-veil:focus-visible .fs-teaser-cta {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px -14px rgba(0,0,0,0.75);
}
a.fs-teaser-veil:focus-visible {
  outline: 3px solid #f5f2ea; outline-offset: -6px;
}
@media (prefers-reduced-motion: reduce) {
  a.fs-teaser-veil .fs-teaser-cta { transition: none; }
}
