/* Option-breakdown text is full sentences here, not short option labels —
   undo the bold the shared quiz stylesheet applies. */
.emf-taster .emf-exp-opt-text { font-weight: 400; }

/* EMF Free Taster — layout only.
   Everything inside a runner (stem, options, explanation, progress bar) is
   styled by emf-quiz.css, which this file depends on. No red anywhere:
   #C1272D is urgency/danger only and nothing here is urgent. */

.emf-taster {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px 64px;
}

/* ══ Hero ═════════════════════════════════════════════════ */
.emf-taster-hero {
  background: var(--emf-purple);
  color: var(--emf-white);
  border: var(--emf-border);
  border-radius: var(--emf-radius);
  box-shadow: var(--emf-shadow-lg);
  padding: 40px 32px;
  margin: 32px 0 40px;
}
.emf-taster-eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 12px;
  opacity: .85;
}
.emf-taster-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  color: var(--emf-white);
}
.emf-taster-sub {
  margin: 0 0 24px;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 60ch;
}
.emf-taster-note { margin: 14px 0 0; font-size: .9rem; opacity: .9; }
.emf-taster-hero .emf-taster-note a { color: var(--emf-white); text-decoration: underline; }

/* ══ Blocks ═══════════════════════════════════════════════ */
.emf-taster-block { margin: 0 0 48px; }
.emf-taster-block h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 6px;
  font-size: 1.5rem;
}
.emf-taster-count {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--emf-purple-lt);
  color: var(--emf-purple);
  border: 2px solid var(--emf-purple);
  border-radius: 4px;
  padding: 3px 9px;
}
.emf-taster-blurb {
  margin: 0 0 20px;
  color: var(--emf-grey);
  line-height: 1.55;
  max-width: 65ch;
}

/* ══ Runner ═══════════════════════════════════════════════ */
.emf-taster-runner {
  background: var(--emf-bg);
  border: var(--emf-border);
  border-radius: var(--emf-radius);
  box-shadow: var(--emf-shadow);
  padding: 20px;
}
.emf-taster-counter {
  font-size: .85rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--emf-black);
}
.emf-taster-next { margin-top: 8px; }
.emf-taster-loading {
  margin: 0;
  padding: 24px 0;
  text-align: center;
  color: var(--emf-grey);
}

/* ══ End-of-set summary ═════════════════════════════════════ */
.emf-taster-summary { text-align: center; padding: 24px 0 8px; }
.emf-taster-score {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--emf-purple);
}
.emf-taster-score span { font-size: 1.5rem; color: var(--emf-grey); }
.emf-taster-score-pct { margin: 8px 0 20px; color: var(--emf-grey); }
.emf-taster-summary .emf-btn-primary,
.emf-taster-summary .emf-btn-secondary { margin: 0 6px 8px; }

/* ══ Station / card grid ════════════════════════════════════ */
.emf-taster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.emf-taster-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--emf-white);
  border: var(--emf-border);
  border-radius: var(--emf-radius);
  box-shadow: var(--emf-shadow-sm);
  padding: 16px;
  text-decoration: none;
  color: var(--emf-black);
  transition: transform .12s ease, box-shadow .12s ease;
}
.emf-taster-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--emf-shadow);
  color: var(--emf-black);
}
.emf-taster-tag {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--emf-purple);
  align-self: flex-start;
  background: var(--emf-purple-lt);
  border-radius: 3px;
  padding: 2px 7px;
}
.emf-taster-card-title { font-weight: 700; line-height: 1.35; }
.emf-taster-card-more {
  justify-content: center;
  background: var(--emf-purple-lt);
  border-style: dashed;
}

/* ══ Closing CTA ══════════════════════════════════════════ */
.emf-taster-cta {
  background: var(--emf-white);
  border: var(--emf-border);
  border-radius: var(--emf-radius);
  box-shadow: var(--emf-shadow-lg);
  padding: 36px 32px;
  text-align: center;
}
.emf-taster-cta h2 { margin: 0 0 12px; font-size: clamp(1.4rem, 3vw, 1.9rem); }
.emf-taster-cta p { margin: 0 0 20px; color: var(--emf-grey); line-height: 1.55; }
.emf-taster-cta .emf-taster-note { color: var(--emf-grey); }

@media (max-width: 640px) {
  .emf-taster-hero { padding: 28px 20px; }
  .emf-taster-runner { padding: 14px; }
  .emf-taster-cta { padding: 26px 20px; }
}
