/* ─────────────────────────────────────────────────────────────────
   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);
}

/* ── PREP state — shared and per-part variants ── */
.sp-mock-prep {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sp-mock-prep-stage {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ielts-honey, #B57A2E);
}

/* Part 1 / 3 — short countdown variant */
.sp-mock-prep-short { text-align: center; padding: 1rem 0; }
.sp-mock-prep-short .sp-mock-question {
  font-family: 'Cormorant Garamond', 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  letter-spacing: -.005em;
  color: var(--ielts-ink, #2A1F12);
  line-height: 1.3;
  margin: .4rem auto 1.4rem;
  max-width: 36ch;
}
.sp-mock-prep-meta {
  font-size: .9rem;
  color: var(--ielts-ink-soft, #5C4A35);
}

/* Part 2 — cue card + scratch notes variant */
.sp-mock-prep-cue {
  align-items: stretch;
}

/* 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;
}

/* Prep foot — clock + progress + primary CTA */
.sp-mock-prep-foot {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.sp-mock-clock-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.sp-mock-clock-l {
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ielts-ink-mute, #8C7757);
}
.sp-mock-clock {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variant-numeric: tabular-nums;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--ielts-ink, #2A1F12);
  line-height: 1;
}
.sp-mock-progress {
  height: 4px;
  background: rgba(74, 58, 38, 0.10);
  border-radius: 2px;
  overflow: hidden;
}
.sp-mock-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--ielts-honey, #B57A2E);
  transition: width 1s linear;
}

/* ── RECORDING state ── */
.sp-mock-rec {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.sp-mock-rec-status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  align-self: flex-start;
  padding: .35rem .85rem;
  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: .78rem;
  font-weight: 600;
  letter-spacing: .005em;
  color: var(--ielts-ember, #B6442C);
}
.sp-mock-rec-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  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.25); opacity: .55; }
}
.sp-mock-rec-label { font-size: .78rem; }

.sp-mock-question-rec {
  font-family: 'Cormorant Garamond', 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--ielts-ink, #2A1F12);
  line-height: 1.3;
  letter-spacing: -.005em;
  padding: 1rem 0 .5rem;
}

.sp-mock-rec-foot {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.sp-mock-rec-foot-p1 {
  align-items: center;
  margin-top: 1rem;
}

/* ── Part 1 recording — hourglass replaces clock + progress bar ──
   The hourglass is the single focal element below the question. Sand
   drains over the full 50s recording cap. Between Part 1 questions
   the hourglass plays a 360° flip; sand state silently resets at the
   180° mid-point (hourglass is symmetric so the reset is invisible).
   ──────────────────────────────────────────────────────────────────── */
.sp-mock-rec-p1 {
  align-items: center;
}
.sp-mock-rec-p1 .sp-mock-question-rec {
  text-align: center;
  max-width: 32ch;
  margin: 0 auto;
}
.sp-mock-hg-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.4rem 0 1rem;
  perspective: 800px;
}
.sp-mock-hg {
  width: 110px;
  height: 154px;
  transform: rotate(0deg);
  transition: filter .2s ease;
  filter: drop-shadow(0 12px 16px rgba(74, 58, 38, 0.18));
}
.sp-mock-hg.is-flipping {
  animation: sp-hg-flip 600ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes sp-hg-flip {
  0%   { transform: rotate(0deg)   scale(1); }
  50%  { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}

.sp-mock-hg-svg {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--ielts-ink-soft, #5C4A35);
  overflow: visible;
}

/* Frame parts */
.sp-hg-cap {
  fill: var(--ielts-ink, #2A1F12);
  opacity: 0.85;
}
.sp-hg-outline {
  stroke: var(--ielts-ink, #2A1F12);
  opacity: 0.78;
}
.sp-hg-glint {
  stroke: rgba(255, 252, 244, 0.85);
}
.sp-hg-stream {
  stroke: var(--ielts-honey, #B57A2E);
  opacity: 0;
  transition: opacity .2s ease;
}
.sp-mock-hg.is-running .sp-hg-stream {
  opacity: 0.9;
  animation: sp-hg-stream-pulse 0.7s ease-in-out infinite;
}
@keyframes sp-hg-stream-pulse {
  0%, 100% { opacity: 0.85; transform: scaleY(1);   }
  50%      { opacity: 1;    transform: scaleY(1.4); }
}

/* Sand — honey colour. Animated via SVG attributes (y + height) rather
   than CSS transforms because transform-box: fill-box on SVG <rect>
   has inconsistent support and was leaving the bottom pile invisible.
   Initial states are set in the markup:
     top: y=12  height=54  (chamber full)
     bot: y=128 height=0   (pile collapsed at chamber floor)
   Drain animation lowers the top sand's surface (height shrinks, y
   drops). Fill animation grows the bottom pile upward (height grows,
   y rises). User sees the pile actually accumulating in real time. */
.sp-hg-sand { fill: #D4A574; }

.sp-mock-hg.is-running .sp-hg-sand-top {
  animation: sp-hg-drain var(--sp-hg-dur, 50s) linear forwards;
}
.sp-mock-hg.is-running .sp-hg-sand-bot {
  animation: sp-hg-fill  var(--sp-hg-dur, 50s) linear forwards;
}
@keyframes sp-hg-drain {
  from { y: 12; height: 54; }
  to   { y: 66; height: 0;  }
}
@keyframes sp-hg-fill {
  from { y: 128; height: 0;  }
  to   { y: 74;  height: 54; }
}

/* Sand surface highlight — settles down with the sand level */
.sp-mock-hg.is-running .sp-hg-glint {
  animation: sp-hg-glint-fade var(--sp-hg-dur, 50s) linear forwards;
}
@keyframes sp-hg-glint-fade {
  0%   { opacity: 0.55; }
  85%  { opacity: 0.20; }
  100% { opacity: 0;    }
}

@media (prefers-reduced-motion: reduce) {
  .sp-mock-hg.is-flipping { animation-duration: 1ms; }
  .sp-mock-hg.is-running .sp-hg-sand-top,
  .sp-mock-hg.is-running .sp-hg-sand-bot {
    animation-timing-function: steps(20);
  }
  .sp-mock-hg.is-running .sp-hg-stream { animation: none; opacity: .7; }
}

/* ── 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; }
