/* ================= preview-gate.css =================
   Styling that only the free-preview twins need (v21/preview/**).
   The generic gating mechanics — .blur-always, .blur-gate, .gate-note —
   live in assets/style.css; everything here is preview-only chrome.
   Loaded after style.css and v26.css on every preview twin. */

/* ---- the "Unlock this…" box: three perks under the headline ---- */
.preview-cta .cta-perks {
  display: grid;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto 22px;
  text-align: left;
}
.preview-cta .cta-perks span {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
  color: #dfe7f7;
}
.preview-cta .cta-perks i {
  font-style: normal;
  font-weight: 800;
  color: #6b9dff;
  flex-shrink: 0;
}

/* ---- v34: the "Unlock this…" offer is a sidebar card ----
   It sits at the top of .lesson-sidebar, so it has to survive both the later
   .side-card rule in style.css (which would repaint it light) and the wide
   .preview-cta band styling it inherits. Everything here is scoped to
   .side-unlock so the in-column band is untouched wherever it is still used. */
.preview-cta.side-unlock {
  background: var(--panel-dark);
  border: 0;
  border-radius: var(--r-lg, 18px);
  padding: 22px 20px 20px;
  margin: 0 0 18px;
  text-align: left;
  color: #b7c1d9;
  overflow: hidden;
}
.preview-cta.side-unlock h2 {
  font-size: 18.5px;
  line-height: 1.28;
  margin: 0 0 13px;
  letter-spacing: -0.01em;
}
.preview-cta.side-unlock .eyebrow {
  display: inline-block;
  margin-bottom: 10px;
}
.preview-cta.side-unlock .cta-perks {
  max-width: none;
  margin: 0 0 16px;
  gap: 7px;
}
.preview-cta.side-unlock .cta-perks span { font-size: 13.5px; line-height: 1.45; }
.preview-cta.side-unlock .row { display: grid; gap: 9px; }
.preview-cta.side-unlock .row .btn { width: 100%; justify-content: center; }

/* Under 1000px the sidebar drops below the content and runs full width, so the
   card can breathe again. */
@media (max-width: 1000px) {
  .preview-cta.side-unlock { padding: 26px 22px 22px; margin-top: 6px; }
  .preview-cta.side-unlock h2 { font-size: 21px; }
  .preview-cta.side-unlock .row { grid-auto-flow: column; grid-auto-columns: 1fr; }
}
@media (max-width: 560px) {
  .preview-cta.side-unlock .row { grid-auto-flow: row; }
}

/* ---- text-only twins: a blurred taste of the article ---- */
.art-sample { margin: 22px 0 6px; }
.art-sample .art-sample-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg, 14px);
  padding: 18px 20px;
  max-height: 210px;
  overflow: hidden;
}
.art-sample .art-sample-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.art-sample .art-sample-cap {
  margin-top: 9px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
}

/* ---- tune twins: the blurred transcript teaser ---- */
.tr-teaser { margin: 26px 0 6px; }
.tr-teaser .tt-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.tr-teaser .tt-head h2 { font-size: 20px; font-weight: 800; margin: 0; }
.tr-teaser .tt-rows {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg, 14px);
  padding: 6px 4px;
  overflow: hidden;
}
.tr-teaser .tt-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
}
.tr-teaser .tt-row:last-child { border-bottom: 0; }
.tr-teaser .tt-t {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-muted);
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 52px;
}
.tr-teaser .tt-x {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  min-width: 0;
}
.tr-teaser .tt-cap {
  margin-top: 9px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
}

/* ---- the free sample clip has not been cut yet ---- */
.ica.ica-missing { opacity: 0.72; }
.ica.ica-missing .ica-head { align-items: center; }
.ica.ica-missing .ica-missing-ic { font-size: 20px; line-height: 1; flex-shrink: 0; }
.ica.ica-missing .ica-title { font-style: italic; }

/* ---- gated download cards are links now, not divs ---- */
a.dl-card,
a.dl-card:hover,
a.dl-card:visited { text-decoration: none; color: inherit; }

/* ---- blurred chapter titles keep the row's own click target ---- */
.chapter-row .c.blur-always,
.tm-row .tm-t.blur-always,
.tm-row .tm-x.blur-always { cursor: pointer; }

@media (max-width: 560px) {
  .tr-teaser .tt-row { padding: 9px 11px; gap: 9px; }
  .tr-teaser .tt-t { min-width: 46px; font-size: 11.5px; }
  .art-sample .art-sample-box { padding: 15px 16px; }
}
