/* ─────────────────────────────────────────────────────────────────
   IELTS Speaking — Full Mock portal styles.
   Lives at /ielts/speaking/mock. Cream/honey light theme matching
   the rest of the Speaking practice surface. Designed as an
   "exam-room" feel: focused single-card layout, no distractions.
   ───────────────────────────────────────────────────────────── */

.sp-mock-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 2.4rem 1.5rem 4rem;
  color: var(--ielts-ink, #2A1F12);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.sp-mock-card {
  position: relative;
  background: var(--ielts-card-lift, #FFFCF4);
  border: 1px solid var(--ielts-line, rgba(74, 58, 38, .08));
  border-radius: 20px;
  padding: 2.4rem 2.4rem 2.2rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .6) inset,
    0 18px 36px -22px rgba(74, 58, 38, .18);
}
@media (max-width: 720px) {
  .sp-mock-shell { padding: 1.4rem 1rem 3rem; }
  .sp-mock-card  { padding: 1.6rem 1.4rem 1.6rem; border-radius: 16px; }
}

/* ── Eyebrow + headline shared bits ── */
.sp-mock-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ielts-honey, #B57A2E);
  display: block;
  margin-bottom: .8rem;
}
.sp-mock-h {
  font-family: 'Cormorant Garamond', 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.7rem);
  letter-spacing: -.015em;
  color: var(--ielts-ink, #2A1F12);
  line-height: 1.08;
  margin: 0 0 .9rem;
}
.sp-mock-lede {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ielts-ink-soft, #5C4A35);
  margin: 0 0 1.8rem;
  max-width: 60ch;
}

/* ── INTRO state ── */
.sp-mock-rules {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin: 1.8rem 0 2rem;
}
.sp-mock-rule {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 1rem;
  align-items: start;
  padding: .9rem 1rem;
  background: rgba(255, 252, 244, 0.6);
  border: 1px solid var(--ielts-line, rgba(74, 58, 38, .08));
  border-radius: 12px;
  font-size: .92rem;
  color: var(--ielts-ink-soft, #5C4A35);
  line-height: 1.5;
}
.sp-mock-rule strong {
  color: var(--ielts-ink, #2A1F12);
  font-weight: 600;
}
.sp-mock-rule-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(181, 122, 46, 0.14);
  color: var(--ielts-honey, #B57A2E);
  font-family: 'Cormorant Garamond', 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  flex-shrink: 0;
}

/* ── Buttons ── */
.sp-mock-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .8rem 1.4rem;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: filter .15s, transform .15s, box-shadow .15s, background .15s, color .15s;
}
.sp-mock-btn-primary {
  background: var(--ielts-honey, #B57A2E);
  color: #FFFCF4;
  border-color: var(--ielts-honey, #B57A2E);
  box-shadow: 0 6px 14px -10px rgba(181, 122, 46, 0.45);
}
.sp-mock-btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px -10px rgba(181, 122, 46, 0.5);
}
.sp-mock-btn-secondary {
  background: #FFFFFF;
  color: var(--ielts-ink, #2A1F12);
  border-color: var(--ielts-line, rgba(74, 58, 38, .15));
}
.sp-mock-btn-secondary:hover {
  border-color: var(--ielts-honey, #B57A2E);
  color: var(--ielts-honey, #B57A2E);
  transform: translateY(-1px);
}
.sp-mock-btn-ghost {
  background: transparent;
  color: var(--ielts-ink-mute, #8C7757);
  border-color: transparent;
}
.sp-mock-btn-ghost:hover { color: var(--ielts-ink, #2A1F12); }

.sp-mock-cancel {
  display: inline-block;
  margin-top: 1rem;
  font-size: .88rem;
  color: var(--ielts-ink-mute, #8C7757);
  text-decoration: none;
  margin-left: 1rem;
}
.sp-mock-cancel:hover { color: var(--ielts-ink, #2A1F12); }

/* ── Progress header (top of recording/prep states) ── */
.sp-mock-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--ielts-line, rgba(74, 58, 38, .08));
  flex-wrap: wrap;
}
.sp-mock-top-meta {
  font-size: .85rem;
  color: var(--ielts-ink-mute, #8C7757);
  flex: 1;
  min-width: 0;
}
.sp-mock-top-meta strong {
  color: var(--ielts-ink, #2A1F12);
  font-weight: 600;
  margin-left: .25rem;
}
.sp-mock-step-dots {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.sp-mock-step-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(74, 58, 38, 0.10);
  transition: background .2s, transform .2s;
}
.sp-mock-step-dot.is-done {
  background: var(--ielts-honey, #B57A2E);
  opacity: .55;
}
.sp-mock-step-dot.is-active {
  background: var(--ielts-honey, #B57A2E);
  transform: scale(1.4);
}
.sp-mock-quit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 1px solid var(--ielts-line, rgba(74, 58, 38, .15));
  border-radius: 50%;
  color: var(--ielts-ink-mute, #8C7757);
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.sp-mock-quit:hover {
  color: var(--ielts-ink, #2A1F12);
  border-color: rgba(74, 58, 38, 0.4);
}

/* ── Stage layout (shared by prep + recording, every part) ──
   Two columns: question/cue-card content on the left, fixed hourglass
   column on the right. The hourglass NEVER moves between screens —
   same grid cell on Part 1 Q1 prep, Part 2 recording, Part 3 follow-up,
   etc. Mobile (≤720px) collapses to a single column with the hourglass
   above the content. */
.sp-mock-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  gap: 2.4rem;
  align-items: start;
  padding: 0.4rem 0 0.6rem;
  min-height: 320px;
}
@media (max-width: 720px) {
  .sp-mock-stage {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    min-height: 0;
  }
}

.sp-mock-stage-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.sp-mock-stage-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ielts-honey, #B57A2E);
}
.sp-mock-stage-question {
  font-family: 'Cormorant Garamond', 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  letter-spacing: -.005em;
  color: var(--ielts-ink, #2A1F12);
  line-height: 1.28;
  margin: 0;
  max-width: 32ch;
}

/* RIGHT column — hourglass + numeric clock + status pill. Sticky so
   that on tall Part 2 prep (cue card + textarea) the hourglass stays
   in view as the user scrolls notes on small viewports. */
.sp-mock-stage-timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding-top: 0.2rem;
  position: sticky;
  top: 1rem;
}
@media (max-width: 720px) {
  .sp-mock-stage-timer {
    position: static;
    order: -1; /* hourglass first on mobile */
  }
}

.sp-mock-stage-timer-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variant-numeric: tabular-nums;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--ielts-ink, #2A1F12);
  line-height: 1;
  margin-top: 0.15rem;
}

/* Status pill — honey/ember accent depending on prep vs recording */
.sp-mock-stage-status {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  padding: .28rem .7rem;
  background: rgba(182, 68, 44, 0.10);
  border: 1px solid rgba(182, 68, 44, 0.30);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .005em;
  color: var(--ielts-ember, #B6442C);
}
.sp-mock-stage-status.is-prep {
  background: rgba(181, 122, 46, 0.10);
  border-color: rgba(181, 122, 46, 0.28);
  color: var(--ielts-honey, #B57A2E);
}

/* Foot — the single primary CTA, separated from the stage by a soft
   divider so it reads as the only action on the screen. */
.sp-mock-foot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 1.2rem;
  margin-top: 0.4rem;
  border-top: 1px solid var(--ielts-line, rgba(74, 58, 38, .08));
}

/* Shared cue card paper used in prep + recording */
.sp-mock-cuecard {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.50  0 0 0 0 0.32  0 0 0 0 0.16  0 0 0 0.03 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    linear-gradient(180deg, #FFFCF4 0%, #FAF3DE 100%);
  border: 1px solid rgba(181, 122, 46, 0.20);
  border-radius: 14px;
  padding: 1.5rem 1.7rem;
  box-shadow: 0 14px 30px -22px rgba(74, 58, 38, .22);
}
.sp-mock-cuecard-prompt {
  font-family: 'Cormorant Garamond', 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -.005em;
  line-height: 1.32;
  color: var(--ielts-ink, #2A1F12);
  margin: 0 0 1rem;
}
.sp-mock-cuecard-leadin {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ielts-honey, #B57A2E);
  margin: 0 0 .4rem;
}
.sp-mock-cuecard-bullets {
  margin: 0;
  padding: 0 0 0 1.2rem;
  list-style: none;
}
.sp-mock-cuecard-bullets li {
  position: relative;
  padding: .25rem 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ielts-ink, #2A1F12);
}
.sp-mock-cuecard-bullets li::before {
  content: '◆';
  position: absolute;
  left: -1.2rem;
  top: .35rem;
  font-size: .5rem;
  color: var(--ielts-honey, #B57A2E);
  opacity: .8;
}
.sp-mock-cuecard-mini {
  padding: 1.1rem 1.3rem;
}
.sp-mock-cuecard-mini .sp-mock-cuecard-prompt {
  font-size: 1.1rem;
  margin-bottom: .6rem;
}
.sp-mock-cuecard-mini .sp-mock-cuecard-bullets li { font-size: .92rem; padding: .15rem 0; }

/* Scratch notes — lined paper, unsaved */
.sp-mock-notes {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.50  0 0 0 0 0.32  0 0 0 0 0.16  0 0 0 0.03 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>"),
    repeating-linear-gradient(to bottom, transparent 0, transparent 31px, rgba(74, 58, 38, 0.10) 31px, rgba(74, 58, 38, 0.10) 32px),
    var(--ielts-card-lift, #FFFCF4);
  border: 1px solid var(--ielts-line, rgba(74, 58, 38, .08));
  border-radius: 14px;
  padding: 1rem 1.3rem 1.2rem;
}
.sp-mock-notes-label {
  display: block;
  font-family: 'Cormorant Garamond', 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: .95rem;
  color: var(--ielts-ink-mute, #8C7757);
  margin-bottom: .5rem;
}
.sp-mock-notes-ta {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  resize: vertical;
  min-height: 5.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 32px;
  color: var(--ielts-ink, #2A1F12);
}
.sp-mock-notes-ta::placeholder {
  color: var(--ielts-ink-mute, #8C7757);
  font-style: italic;
}

/* Pulsing red dot inside the live-recording status pill */
.sp-mock-rec-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ielts-ember, #B6442C);
  animation: sp-mock-pulse 1.2s ease-in-out infinite;
}
@keyframes sp-mock-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: .55; }
}

/* ── Hourglass — fixed-size focal element in the right column ──
   The hourglass appears in the SAME grid cell on every prep + recording
   screen across Part 1, 2, 3 — never moves between transitions. Sand
   surface rises linearly (visual speed matches the clock tick) with a
   small bell-curve peak in the middle. ──────────────────────────── */
.sp-mock-hg {
  position: relative;
  width: 110px;
  height: 154px;
}

/* The rotating wrapper. Inline style="transform: rotate(Ndeg)" sets
   the current rotation. The transition is opt-in via .is-flipping
   class so the FIRST paint (with whatever cycle's rotation) lands
   instantly — only the JS-driven rotation change runs the smooth
   turn-over. transform-origin: center so the hourglass spins about
   its midpoint. */
.sp-mock-hg-rot {
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  filter: drop-shadow(0 14px 18px rgba(74, 58, 38, 0.22));
}
.sp-mock-hg-rot.is-flipping {
  transition: transform 720ms cubic-bezier(0.6, -0.08, 0.4, 1.08);
}

.sp-mock-hg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  z-index: 1;
}
.sp-mock-hg-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Frame parts */
.sp-hg-cap {
  fill: var(--ielts-ink, #2A1F12);
  opacity: 0.88;
}
.sp-hg-cap-band {
  fill: var(--ielts-honey, #B57A2E);
  opacity: 0.55;
}
.sp-hg-outline {
  fill: rgba(255, 252, 244, 0.22);
  stroke: var(--ielts-ink, #2A1F12);
  stroke-width: 1.4;
  stroke-linejoin: round;
  opacity: 0.86;
}
.sp-hg-neck-ring {
  fill: none;
  stroke: var(--ielts-ink, #2A1F12);
  stroke-width: 0.9;
  opacity: 0.55;
}

/* Sand paths — d attribute is set by JS each frame. fill uses the
   gradient defined inside the SVG <defs>. drop-shadow gives the pile
   a soft seat against the chamber wall. */
.sp-hg-sand {
  fill: url(#sp-hg-sand-grad);
}
.sp-hg-sand-bot {
  filter: drop-shadow(0 1px 0 rgba(127, 80, 38, 0.22));
}

/* Stream — the thin amber line connecting the two chambers through
   the neck. Hidden by default, visible while sand is actively pouring. */
.sp-hg-stream {
  stroke: var(--ielts-honey, #B57A2E);
  opacity: 0;
  transform-origin: 50px 70px;
  transition: opacity 200ms ease;
}
.sp-mock-hg.is-pouring .sp-hg-stream {
  opacity: 0.88;
  animation: sp-hg-stream-sway 1.4s ease-in-out infinite;
}
@keyframes sp-hg-stream-sway {
  0%, 100% { opacity: 0.86; transform: scaleY(1)    skewX(0deg);    }
  25%      { opacity: 0.98; transform: scaleY(1.08) skewX(-1.2deg); }
  50%      { opacity: 0.82; transform: scaleY(0.95) skewX(0deg);    }
  75%      { opacity: 0.96; transform: scaleY(1.06) skewX(1.4deg);  }
}

/* Neck highlight pulse — subtle amber glow at the neck while pouring */
.sp-hg-neck-glow {
  fill: var(--ielts-honey, #B57A2E);
  opacity: 0;
  transition: opacity 200ms ease;
}
.sp-mock-hg.is-pouring .sp-hg-neck-glow {
  opacity: 0.22;
  animation: sp-hg-neck-pulse 1.6s ease-in-out infinite;
}
@keyframes sp-hg-neck-pulse {
  0%, 100% { opacity: 0.18; }
  50%      { opacity: 0.34; }
}

@media (prefers-reduced-motion: reduce) {
  .sp-mock-hg-rot                       { transition: transform 200ms linear; }
  .sp-mock-hg.is-pouring .sp-hg-stream  { animation: none; }
  .sp-mock-hg.is-pouring .sp-hg-neck-glow { animation: none; }
}

/* ── MESSAGE state (mic error / submitting / generic error) ── */
.sp-mock-msg {
  text-align: center;
  padding: 1.5rem 1rem 1rem;
}
.sp-mock-msg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: rgba(181, 122, 46, 0.10);
  color: var(--ielts-honey, #B57A2E);
}
.sp-mock-msg-icon-warn {
  background: rgba(182, 68, 44, 0.10);
  color: var(--ielts-ember, #B6442C);
}
.sp-mock-msg-h {
  font-family: 'Cormorant Garamond', 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: 1.7rem;
  margin: 0 0 .6rem;
  color: var(--ielts-ink, #2A1F12);
}
.sp-mock-msg-p {
  font-size: .98rem;
  line-height: 1.55;
  color: var(--ielts-ink-soft, #5C4A35);
  max-width: 52ch;
  margin: 0 auto 1.2rem;
}
.sp-mock-msg-actions {
  display: flex;
  gap: .8rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Submitting spinner */
.sp-mock-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.2rem;
  border: 3px solid rgba(181, 122, 46, 0.16);
  border-top-color: var(--ielts-honey, #B57A2E);
  border-radius: 50%;
  animation: sp-mock-spin 1s linear infinite;
}
@keyframes sp-mock-spin {
  to { transform: rotate(360deg); }
}

/* ── RESULTS state ── */
.sp-mock-results-head {
  text-align: center;
  padding: .5rem 0 1.6rem;
  border-bottom: 1px solid var(--ielts-line, rgba(74, 58, 38, .08));
  margin-bottom: 1.6rem;
}
.sp-mock-overall {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  padding: 1.2rem 2rem;
  background: linear-gradient(180deg, #FFFCF4 0%, #FAF3DE 100%);
  border: 1px solid rgba(181, 122, 46, 0.22);
  border-radius: 18px;
  margin: .5rem 0 1.2rem;
}
.sp-mock-overall-l {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ielts-honey, #B57A2E);
}
.sp-mock-overall-n {
  font-family: 'Cormorant Garamond', 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: 4.5rem;
  letter-spacing: -.02em;
  color: var(--ielts-ink, #2A1F12);
  line-height: 1;
}
.sp-mock-overall-pm {
  font-size: .78rem;
  color: var(--ielts-ink-mute, #8C7757);
  font-style: italic;
  font-family: 'Source Serif 4', Georgia, serif;
}
.sp-mock-overall-summary {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ielts-ink-soft, #5C4A35);
  max-width: 56ch;
  margin: 0 auto;
}

/* Criteria grid */
.sp-mock-crits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 720px) {
  .sp-mock-crits { grid-template-columns: 1fr; }
}
.sp-mock-crit {
  padding: 1.1rem 1.25rem;
  background: var(--ielts-card-lift, #FFFCF4);
  border: 1px solid var(--ielts-line, rgba(74, 58, 38, .08));
  border-radius: 14px;
  box-shadow: 0 6px 14px -12px rgba(74, 58, 38, .18);
}
.sp-mock-crit-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: .5rem;
}
.sp-mock-crit-label {
  font-family: 'Inter', sans-serif;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ielts-ink, #2A1F12);
}
.sp-mock-crit-band {
  font-family: 'Cormorant Garamond', 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: 1.65rem;
  letter-spacing: -.005em;
  color: var(--ielts-honey, #B57A2E);
  line-height: 1;
}
.sp-mock-crit-fb {
  font-size: .9rem;
  line-height: 1.55;
  color: var(--ielts-ink-soft, #5C4A35);
  margin: 0;
}

/* Per-part transcripts */
.sp-mock-parts {
  margin-top: 1.6rem;
}
.sp-mock-parts-h {
  font-family: 'Cormorant Garamond', 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -.01em;
  color: var(--ielts-ink, #2A1F12);
  margin: 0 0 1rem;
}
.sp-mock-part {
  background: rgba(255, 252, 244, 0.5);
  border: 1px solid var(--ielts-line, rgba(74, 58, 38, .08));
  border-radius: 14px;
  padding: 1.2rem 1.3rem;
  margin-bottom: .9rem;
}
.sp-mock-part-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .8rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--ielts-line, rgba(74, 58, 38, .08));
}
.sp-mock-part-label {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ielts-honey, #B57A2E);
}
.sp-mock-part-band {
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: .92rem;
  color: var(--ielts-ink-soft, #5C4A35);
}
.sp-mock-ans {
  padding: .5rem 0 .7rem;
  border-bottom: 1px dashed var(--ielts-line, rgba(74, 58, 38, .10));
}
.sp-mock-ans:last-of-type { border-bottom: none; }
.sp-mock-ans-q {
  font-size: .92rem;
  color: var(--ielts-ink, #2A1F12);
  font-weight: 600;
  margin-bottom: .35rem;
  display: flex;
  gap: .55rem;
  align-items: baseline;
}
.sp-mock-ans-q-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  font-family: 'Cormorant Garamond', 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ielts-honey, #B57A2E);
}
.sp-mock-ans-t {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ielts-ink-soft, #5C4A35);
  padding-left: 2.05rem;
}
.sp-mock-part-fb {
  margin: .8rem 0 0;
  padding-top: .7rem;
  border-top: 1px dashed var(--ielts-line, rgba(74, 58, 38, .10));
  font-size: .9rem;
  line-height: 1.55;
  color: var(--ielts-ink-soft, #5C4A35);
  font-style: italic;
  font-family: 'Source Serif 4', Georgia, serif;
}

.sp-mock-results-foot {
  display: flex;
  gap: .8rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--ielts-line, rgba(74, 58, 38, .08));
  flex-wrap: wrap;
}

/* ── Card practice results — no overall band, just criteria + transcript.
   Deliberate: drilling one card to "Band 7" isn't transferable to a
   random-card exam. We show per-criterion only to keep practice
   diagnostic, not gamified. */
.sp-cp-results-head {
  text-align: center;
  padding: .8rem 0 1.6rem;
  border-bottom: 1px solid var(--ielts-line, rgba(74, 58, 38, .08));
  margin-bottom: 1.6rem;
}
.sp-cp-results-title {
  font-family: 'Cormorant Garamond', 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: -.01em;
  color: var(--ielts-ink, #2A1F12);
  line-height: 1.15;
  margin: .4rem 0 .8rem;
}
.sp-cp-results-summary {
  font-size: .98rem;
  line-height: 1.6;
  color: var(--ielts-ink-soft, #5C4A35);
  max-width: 56ch;
  margin: 0 auto;
}
.sp-cp-shell .sp-mock-card { padding-top: 1.8rem; }
