/* ═══════════════════════════════════════════════════════════════════════════
   VISUAL MOCKUP SYSTEM
   CSS-only UI mockups for cards, heroes, and archives.
   Usage: rizve_os_render_mockup( $type, $args )
   Types: booking-calendar · ai-chat · woo-checkout · local-lead ·
          pagespeed · ai-schema · product-trust · before-after ·
          browser · mini-dashboard
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Base container ──────────────────────────────────────────────────────── */

.rj-mock {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: rgba(8, 14, 26, 0.97);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--rj-f-mono);
  user-select: none;
  pointer-events: none;

  /* Per-type accent colour, overridden below */
  --mock-accent-r: 200;
  --mock-accent-g: 255;
  --mock-accent-b: 61;
}

/* Top gradient accent line */
.rj-mock::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--mock-accent-r), var(--mock-accent-g), var(--mock-accent-b), 0.55),
    transparent
  );
  z-index: 2;
}

/* Radial ambient glow */
.rj-mock::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--mock-accent-r), var(--mock-accent-g), var(--mock-accent-b), 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── Per-type accent colours ─────────────────────────────────────────────── */

.rj-mock--booking-calendar { --mock-accent-r: 46;  --mock-accent-g: 230; --mock-accent-b: 224; }
.rj-mock--ai-chat           { --mock-accent-r: 139; --mock-accent-g: 92;  --mock-accent-b: 246; }
.rj-mock--woo-checkout      { --mock-accent-r: 200; --mock-accent-g: 255; --mock-accent-b: 61;  }
.rj-mock--local-lead        { --mock-accent-r: 200; --mock-accent-g: 255; --mock-accent-b: 61;  }
.rj-mock--pagespeed         { --mock-accent-r: 200; --mock-accent-g: 255; --mock-accent-b: 61;  }
.rj-mock--ai-schema         { --mock-accent-r: 139; --mock-accent-g: 92;  --mock-accent-b: 246; }
.rj-mock--product-trust     { --mock-accent-r: 46;  --mock-accent-g: 230; --mock-accent-b: 224; }
.rj-mock--before-after      { --mock-accent-r: 200; --mock-accent-g: 255; --mock-accent-b: 61;  }
.rj-mock--browser           { --mock-accent-r: 46;  --mock-accent-g: 230; --mock-accent-b: 224; }
.rj-mock--mini-dashboard    { --mock-accent-r: 200; --mock-accent-g: 255; --mock-accent-b: 61;  }

/* ── Chrome bar ──────────────────────────────────────────────────────────── */

.rj-mock__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.rj-mock__dots {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}
.rj-mock__dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.rj-mock__dots span:nth-child(1) { background: rgba(255, 95,  87,  0.55); }
.rj-mock__dots span:nth-child(2) { background: rgba(255, 188, 46,  0.55); }
.rj-mock__dots span:nth-child(3) { background: rgba(40,  200, 64,  0.55); }

.rj-mock__url-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rj-mock__label-bar {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(var(--mock-accent-r), var(--mock-accent-g), var(--mock-accent-b), 0.8);
}

/* ── Body ────────────────────────────────────────────────────────────────── */

.rj-mock__body {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* ── Shared atoms ────────────────────────────────────────────────────────── */

.rj-mock__btn {
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  background: rgba(var(--mock-accent-r), var(--mock-accent-g), var(--mock-accent-b), 0.12);
  color: rgb(var(--mock-accent-r), var(--mock-accent-g), var(--mock-accent-b));
  border: 1px solid rgba(var(--mock-accent-r), var(--mock-accent-g), var(--mock-accent-b), 0.3);
  margin-top: auto;
}

.rj-mock__status-row {
  display: flex;
  align-items: center;
  gap: 5px;
}
.rj-mock__status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rj-lime);
  animation: rj-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.rj-mock__status-text {
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════════════════════════════════════════
   1. BOOKING CALENDAR
   ═══════════════════════════════════════════════════════════════════════════ */

.rj-mock-cal__month {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rj-cyan);
}
.rj-mock-cal__week {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.rj-mock-cal__week span {
  font-size: 0.46rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.04em;
}
.rj-mock-cal__dates {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.rj-mock-cal__dates span {
  height: 18px;
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-size: 0.5rem;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
}
.rj-mock-cal__dates .is-taken {
  color: rgba(255, 255, 255, 0.16);
  text-decoration: line-through;
}
.rj-mock-cal__dates .is-open {
  background: rgba(46, 230, 224, 0.08);
  color: var(--rj-cyan);
  border-color: rgba(46, 230, 224, 0.25);
}
.rj-mock-cal__dates .is-selected {
  background: var(--rj-cyan);
  color: #000;
  font-weight: 700;
  border-color: transparent;
}
.rj-mock-cal__time {
  font-size: 0.56rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   2. AI CHAT
   ═══════════════════════════════════════════════════════════════════════════ */

.rj-mock-chat__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  animation: rj-pulse 2s ease-in-out infinite;
}
.rj-mock-chat__bubbles {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  overflow: hidden;
}
.rj-mock-chat__bubble {
  max-width: 87%;
  padding: 5px 8px;
  border-radius: 8px;
  font-size: 0.5rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}
.rj-mock-chat__bubble--bot {
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.24);
  border-radius: 8px 8px 8px 2px;
  align-self: flex-start;
}
.rj-mock-chat__bubble--user {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px 8px 2px 8px;
  align-self: flex-end;
}
.rj-mock-chat__typing {
  font-size: 0.48rem;
  color: rgba(139, 92, 246, 0.55);
  letter-spacing: 0.3em;
  align-self: flex-start;
  padding-left: 2px;
}
.rj-mock-chat__input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.22);
  margin-top: auto;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   3. WOOCOMMERCE CHECKOUT
   ═══════════════════════════════════════════════════════════════════════════ */

.rj-mock-co__title {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rj-mock-co__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
}
.rj-mock-co__row .is-free { color: var(--rj-lime); }
.rj-mock-co__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1px 0;
}
.rj-mock-co__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}
.rj-mock-co__trust {
  font-size: 0.46rem;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
  letter-spacing: 0.06em;
  margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   4. LOCAL LEAD PAGE
   ═══════════════════════════════════════════════════════════════════════════ */

.rj-mock-lead__heading {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.rj-mock-lead__stars {
  font-size: 0.5rem;
  color: var(--rj-lime);
}
.rj-mock-lead__stars span { color: rgba(255, 255, 255, 0.38); }
.rj-mock-lead__field {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.28);
}

/* ═══════════════════════════════════════════════════════════════════════════
   5. PAGESPEED DASHBOARD
   ═══════════════════════════════════════════════════════════════════════════ */

.rj-mock-ps__score-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rj-mock-ps__score {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--rj-lime);
  line-height: 1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.rj-mock-ps__score-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rj-mock-ps__score-label {
  font-size: 0.48rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.rj-mock-ps__score-grade {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--rj-lime);
  letter-spacing: 0.08em;
}
.rj-mock-ps__vitals {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rj-mock-ps__vital {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 7px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid rgba(200, 255, 61, 0.45);
}
.rj-mock-ps__vital span {
  font-size: 0.48rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}
.rj-mock-ps__vital em {
  font-size: 0.52rem;
  font-style: normal;
  font-weight: 600;
  color: var(--rj-lime);
}

/* ═══════════════════════════════════════════════════════════════════════════
   6. AI SEARCH / SCHEMA
   ═══════════════════════════════════════════════════════════════════════════ */

.rj-mock-ais__engine {
  font-size: 0.52rem;
  font-weight: 700;
  color: rgba(139, 92, 246, 0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rj-mock-ais__query {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.52);
  font-style: italic;
  line-height: 1.4;
}
.rj-mock-ais__answer {
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
  background: rgba(139, 92, 246, 0.07);
  border-left: 2px solid rgba(139, 92, 246, 0.38);
  padding: 5px 7px;
  border-radius: 0 5px 5px 0;
  flex: 1;
  overflow: hidden;
}
.rj-mock-ais__source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.rj-mock-ais__cite {
  font-size: 0.48rem;
  color: rgba(139, 92, 246, 0.65);
}
.rj-mock-ais__badge {
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rj-lime);
  background: rgba(200, 255, 61, 0.1);
  border: 1px solid rgba(200, 255, 61, 0.25);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   7. PRODUCT PAGE TRUST
   ═══════════════════════════════════════════════════════════════════════════ */

.rj-mock-prod__name {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rj-mock-prod__stars {
  font-size: 0.5rem;
  color: #f59e0b;
  letter-spacing: 0.04em;
}
.rj-mock-prod__stars span { color: rgba(255, 255, 255, 0.3); }
.rj-mock-prod__price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--rj-cyan);
  letter-spacing: -0.02em;
  line-height: 1;
}
.rj-mock-prod__price small {
  font-size: 0.46rem;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
  vertical-align: middle;
}
.rj-mock-prod__badges {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rj-mock-prod__badges span {
  font-size: 0.46rem;
  color: var(--rj-cyan);
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   8. BEFORE / AFTER
   ═══════════════════════════════════════════════════════════════════════════ */

.rj-mock--before-after .rj-mock__body {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  padding: 0;
}
.rj-mock-ba__col {
  padding: 9px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.rj-mock-ba__divider {
  background: rgba(255, 255, 255, 0.1);
}
.rj-mock-ba__label {
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  padding: 2px 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  width: fit-content;
}
.rj-mock-ba__label--after { color: var(--rj-lime); background: rgba(200, 255, 61, 0.1); }
.rj-mock-ba__nav {
  height: 11px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
}
.rj-mock-ba__nav--new { background: rgba(46, 230, 224, 0.14); }
.rj-mock-ba__bar {
  height: 7px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.09);
  flex-shrink: 0;
}
.rj-mock-ba__bar--short       { width: 65%; }
.rj-mock-ba__bar--new         { background: rgba(200, 255, 61, 0.18); }
.rj-mock-ba__bar--new-short   { background: rgba(200, 255, 61, 0.13); width: 65%; }
.rj-mock-ba__btn {
  margin-top: auto;
  padding: 4px 7px;
  border-radius: 4px;
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  flex-shrink: 0;
}
.rj-mock-ba__btn--old {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.rj-mock-ba__btn--new {
  background: rgba(200, 255, 61, 0.12);
  color: var(--rj-lime);
  border: 1px solid rgba(200, 255, 61, 0.28);
}

/* ═══════════════════════════════════════════════════════════════════════════
   9. BROWSER / CASE STUDY
   ═══════════════════════════════════════════════════════════════════════════ */

.rj-mock-br__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.rj-mock-br__nav-item {
  font-size: 0.46rem;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.04em;
}
.rj-mock-br__nav-cta {
  margin-left: auto;
  background: rgba(46, 230, 224, 0.1);
  color: var(--rj-cyan);
  border: 1px solid rgba(46, 230, 224, 0.25);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.rj-mock-br__hero {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 9px 12px 6px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.rj-mock-br__h1 {
  height: 10px;
  width: 78%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
}
.rj-mock-br__sub {
  height: 7px;
  width: 55%;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.07);
}
.rj-mock-br__cta-btn {
  width: fit-content;
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(200, 255, 61, 0.13);
  color: var(--rj-lime);
  border: 1px solid rgba(200, 255, 61, 0.28);
  margin-top: 2px;
}
.rj-mock-br__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 0 12px 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.rj-mock-br__card {
  height: 26px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* ═══════════════════════════════════════════════════════════════════════════
   10. MINI DASHBOARD
   ═══════════════════════════════════════════════════════════════════════════ */

.rj-mock--mini-dashboard .rj-mock__body,
.rj-mock-dash__body {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  padding: 9px 10px 10px;
}
.rj-mock-dash__sidebar {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 1px;
}
.rj-mock-dash__nav {
  height: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}
.rj-mock-dash__nav.is-active {
  background: rgba(200, 255, 61, 0.14);
  border: 1px solid rgba(200, 255, 61, 0.24);
}
.rj-mock-dash__main {
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow: hidden;
}
.rj-mock-dash__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.rj-mock-dash__stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 4px 3px;
  text-align: center;
}
.rj-mock-dash__num {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--rj-lime);
  letter-spacing: -0.02em;
  line-height: 1;
}
.rj-mock-dash__lbl {
  display: block;
  font-size: 0.4rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  margin-top: 2px;
}
.rj-mock-dash__chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  flex: 1;
  min-height: 36px;
}
.rj-mock-dash__bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(255, 255, 255, 0.09);
  min-height: 6px;
}
.rj-mock-dash__bar--hi   { background: rgba(200, 255, 61, 0.22); }
.rj-mock-dash__bar--peak { background: rgba(200, 255, 61, 0.45); }

/* Bar height classes — avoids inline styles */
.rj-mock-dash__bar--b1 { height: 36%; }
.rj-mock-dash__bar--b2 { height: 62%; }
.rj-mock-dash__bar--b3 { height: 50%; }
.rj-mock-dash__bar--b4 { height: 82%; }
.rj-mock-dash__bar--b5 { height: 96%; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO CONTEXT OVERRIDES
   Larger text and spacing when used in hero panels (not card thumbnails).
   ═══════════════════════════════════════════════════════════════════════════ */

.rj-mock--ctx-hero { min-height: 260px; }

.rj-mock--ctx-hero .rj-mock__chrome  { padding: 10px 14px; }
.rj-mock--ctx-hero .rj-mock__url-bar { font-size: 0.62rem; }
.rj-mock--ctx-hero .rj-mock__label-bar { font-size: 0.65rem; }
.rj-mock--ctx-hero .rj-mock__body    { padding: 14px 16px; gap: 9px; }
.rj-mock--ctx-hero .rj-mock__btn     { font-size: 0.62rem; padding: 7px 14px; }
.rj-mock--ctx-hero .rj-mock__status-text { font-size: 0.56rem; }

.rj-mock--ctx-hero .rj-mock-cal__month    { font-size: 0.65rem; }
.rj-mock--ctx-hero .rj-mock-cal__week span { font-size: 0.56rem; }
.rj-mock--ctx-hero .rj-mock-cal__dates    { gap: 5px; }
.rj-mock--ctx-hero .rj-mock-cal__dates span { height: 24px; font-size: 0.6rem; }
.rj-mock--ctx-hero .rj-mock-cal__time    { font-size: 0.66rem; }

.rj-mock--ctx-hero .rj-mock-chat__bubble { font-size: 0.62rem; padding: 7px 11px; }
.rj-mock--ctx-hero .rj-mock-chat__input  { font-size: 0.58rem; }

.rj-mock--ctx-hero .rj-mock-co__title  { font-size: 0.68rem; }
.rj-mock--ctx-hero .rj-mock-co__row    { font-size: 0.6rem; }
.rj-mock--ctx-hero .rj-mock-co__total  { font-size: 0.7rem; }

.rj-mock--ctx-hero .rj-mock-ps__score  { font-size: 3.4rem; }
.rj-mock--ctx-hero .rj-mock-ps__vital  { padding: 6px 10px; }
.rj-mock--ctx-hero .rj-mock-ps__vital span { font-size: 0.58rem; }
.rj-mock--ctx-hero .rj-mock-ps__vital em   { font-size: 0.64rem; }

.rj-mock--ctx-hero .rj-mock-ais__query  { font-size: 0.6rem; }
.rj-mock--ctx-hero .rj-mock-ais__answer { font-size: 0.58rem; }

.rj-mock--ctx-hero .rj-mock-prod__name  { font-size: 0.72rem; }
.rj-mock--ctx-hero .rj-mock-prod__price { font-size: 1.1rem; }

.rj-mock--ctx-hero .rj-mock-br__h1     { height: 14px; }
.rj-mock--ctx-hero .rj-mock-br__sub    { height: 10px; }
.rj-mock--ctx-hero .rj-mock-br__card   { height: 38px; }

.rj-mock--ctx-hero .rj-mock-dash__num  { font-size: 0.78rem; }
.rj-mock--ctx-hero .rj-mock-dash__chart { min-height: 56px; }
