/* Pearl PoUW report visuals — matches AGTI reports dark / red palette */

.pearl-report-shell {
  margin-top: 12px;
  min-width: 0;
}

.pearl-report-shell * {
  box-sizing: border-box;
}

.pearl-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 34px;
}

.pearl-scorecard {
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(145deg, rgba(255, 45, 32, 0.12), transparent 42%),
    rgba(8, 12, 12, 0.88);
  padding: 18px 18px 16px;
  min-height: 118px;
}

.pearl-scorecard .label {
  display: block;
  color: var(--muted);
  font: 900 10px var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pearl-scorecard .value {
  display: block;
  margin-top: 10px;
  font: 800 clamp(22px, 2.4vw, 30px)/1.05 var(--sans);
  color: var(--text);
}

.pearl-scorecard .hint {
  display: block;
  margin-top: 8px;
  color: rgba(220, 229, 224, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.pearl-scorecard.good {
  border-color: rgba(110, 229, 143, 0.42);
  background:
    linear-gradient(145deg, rgba(110, 229, 143, 0.12), transparent 42%),
    rgba(8, 12, 12, 0.88);
}

.pearl-scorecard.warn {
  border-color: rgba(255, 159, 69, 0.45);
  background:
    linear-gradient(145deg, rgba(255, 159, 69, 0.12), transparent 42%),
    rgba(8, 12, 12, 0.88);
}

.pearl-scorecard.bad {
  border-color: rgba(255, 45, 32, 0.5);
}

.pearl-figure {
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 34%),
    rgba(6, 10, 10, 0.84);
  padding: clamp(18px, 2.5vw, 28px);
  margin: 32px 0;
  overflow: hidden;
}

.pearl-figure-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pearl-figure-head h3 {
  margin: 0;
  font: 800 clamp(18px, 2vw, 24px)/1.15 var(--sans);
  color: var(--text);
}

.pearl-figure-head .tag {
  border: 1px solid rgba(255, 45, 32, 0.45);
  color: var(--red-2);
  font: 900 10px var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.pearl-figure-caption {
  margin: 14px 0 0;
  color: rgba(220, 229, 224, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.pearl-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pearl-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  padding: 16px;
  min-height: 100%;
}

.pearl-panel h4 {
  margin: 0 0 12px;
  font: 800 13px var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pearl-panel.good h4 { color: #6ee58f; }
.pearl-panel.bad h4 { color: var(--red-2); }
.pearl-panel.neutral h4 { color: var(--amber); }

.pearl-panel ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(232, 238, 235, 0.86);
  font-size: 14px;
  line-height: 1.55;
}

.pearl-panel li + li { margin-top: 6px; }

.pearl-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.pearl-flow-step {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 10px;
  text-align: center;
  min-height: 92px;
}

.pearl-flow-step .num {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 45, 32, 0.55);
  color: var(--red-2);
  font: 900 11px var(--mono);
  margin-bottom: 8px;
}

.pearl-flow-step strong {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: var(--text);
}

.pearl-flow-step span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--muted);
}

.pearl-flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 45, 32, 0.75);
  font: 900 14px var(--mono);
  z-index: 2;
}

.pearl-bar-chart {
  display: grid;
  gap: 14px;
}

.pearl-bar-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) 52px;
  gap: 12px;
  align-items: center;
}

.pearl-bar-row .name {
  font: 700 12px var(--mono);
  letter-spacing: 0.06em;
  color: rgba(232, 238, 235, 0.86);
}

.pearl-bar-track {
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.pearl-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 45, 32, 0.85), rgba(255, 159, 69, 0.75));
}

.pearl-bar-fill.green {
  background: linear-gradient(90deg, rgba(70, 190, 120, 0.9), rgba(110, 229, 143, 0.75));
}

.pearl-bar-fill.amber {
  background: linear-gradient(90deg, rgba(255, 159, 69, 0.9), rgba(255, 210, 120, 0.75));
}

.pearl-bar-fill.muted {
  background: linear-gradient(90deg, rgba(120, 130, 128, 0.75), rgba(160, 170, 168, 0.55));
}

.pearl-bar-row .pct {
  font: 900 12px var(--mono);
  color: var(--red-2);
  text-align: right;
}

.pearl-matrix {
  width: 100%;
  height: auto;
  display: block;
}

.pearl-quadrant-wrap {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) 34px;
  gap: 8px;
  align-items: stretch;
}

.pearl-quadrant-y {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font: 900 10px var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pearl-quadrant-x {
  grid-column: 2;
  text-align: center;
  color: var(--muted);
  font: 900 10px var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pearl-quadrant {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  min-height: 280px;
}

.pearl-quadrant-cell {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px;
  background: rgba(0, 0, 0, 0.22);
}

.pearl-quadrant-cell.highlight {
  border-color: rgba(255, 45, 32, 0.55);
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 45, 32, 0.18), transparent 38%),
    rgba(0, 0, 0, 0.28);
}

.pearl-quadrant-cell h5 {
  margin: 0 0 8px;
  font: 800 13px var(--sans);
}

.pearl-quadrant-cell p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(220, 229, 224, 0.78);
}

.pearl-verdict-banner {
  border: 1px solid rgba(255, 45, 32, 0.48);
  background:
    linear-gradient(90deg, rgba(255, 45, 32, 0.14), transparent 58%),
    rgba(8, 10, 10, 0.92);
  padding: 20px 22px;
  margin: 34px 0;
}

.pearl-verdict-banner strong {
  display: block;
  color: var(--red-2);
  font: 900 11px var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pearl-verdict-banner p {
  margin: 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.45;
  color: var(--text);
}

.pearl-mermaid {
  margin-top: 8px;
  padding: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.24);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.pearl-mermaid .mermaid {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.pearl-mermaid svg {
  max-width: 100%;
  height: auto;
}

/* Markdown prose inside pearl reports */
.pearl-report-shell > h2 {
  margin: 42px 0 18px;
  font: 800 clamp(24px, 3vw, 34px)/1.12 var(--sans);
  letter-spacing: -0.02em;
}

.pearl-report-shell > h2:first-of-type {
  margin-top: 28px;
}

.pearl-report-shell > p,
.pearl-report-shell > ul,
.pearl-report-shell > ol {
  color: rgba(232, 238, 235, 0.88);
}

.pearl-report-shell > hr {
  margin: 36px 0;
  border: 0;
  border-top: 1px solid var(--line-strong);
}

.pearl-report-shell > table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 8px 0 28px;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.pearl-report-shell > table thead,
.pearl-report-shell > table tbody {
  display: table;
  width: 100%;
  min-width: 520px;
}

.pearl-report-shell > table th,
.pearl-report-shell > table td {
  border: 1px solid var(--line-strong);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.pearl-report-shell > table th {
  background: rgba(255, 45, 32, 0.08);
  color: var(--red-2);
  font: 800 11px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pearl-source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.pearl-source-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.26);
  padding: 14px;
  min-height: 118px;
}

.pearl-source-card .src-label {
  display: block;
  color: var(--muted);
  font: 900 10px var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pearl-source-card .src-stat {
  display: block;
  margin-top: 8px;
  font: 800 22px/1.1 var(--sans);
  color: var(--text);
}

.pearl-source-card .src-note {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(220, 229, 224, 0.72);
}

.pearl-source-card a {
  color: var(--red-2);
  border-bottom: 1px solid rgba(255, 90, 66, 0.35);
}

.pearl-adoption-ladder {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.pearl-adoption-rung {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 88px;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 14px;
}

.pearl-adoption-rung strong {
  font: 800 12px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 238, 235, 0.9);
}

.pearl-adoption-rung span {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(220, 229, 224, 0.78);
}

.pearl-adoption-rung em {
  font: 900 11px var(--mono);
  font-style: normal;
  text-align: right;
  color: var(--amber);
}

.pearl-adoption-rung.highlight {
  border-color: rgba(110, 229, 143, 0.42);
  background: rgba(110, 229, 143, 0.06);
}

.pearl-adoption-rung.highlight em {
  color: #6ee58f;
}

.pearl-adoption-rung.dim em {
  color: var(--muted);
}

@media (max-width: 980px) {
  .pearl-source-grid {
    grid-template-columns: 1fr;
  }

  .pearl-adoption-rung {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pearl-adoption-rung em {
    text-align: left;
  }
}

.pearl-primer-box {
  border: 1px solid rgba(110, 229, 143, 0.35);
  background:
    linear-gradient(135deg, rgba(110, 229, 143, 0.08), transparent 42%),
    rgba(6, 10, 10, 0.9);
  padding: clamp(20px, 3vw, 28px);
  margin: 28px 0 34px;
}

.pearl-primer-box > p:first-of-type {
  margin-top: 0;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(232, 238, 235, 0.9);
}

.pearl-persona-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.pearl-persona {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  padding: 16px;
}

.pearl-persona .who {
  display: block;
  font: 800 11px var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-2);
}

.pearl-persona .buys {
  display: block;
  margin-top: 8px;
  font: 800 18px/1.2 var(--sans);
  color: var(--text);
}

.pearl-persona .story {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(220, 229, 224, 0.78);
}

.pearl-world-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.pearl-world-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
  min-height: 220px;
}

.pearl-world-panel.today {
  background: rgba(255, 45, 32, 0.06);
  border-color: rgba(255, 45, 32, 0.35);
}

.pearl-world-panel.vision {
  background: rgba(110, 229, 143, 0.06);
  border-color: rgba(110, 229, 143, 0.35);
}

.pearl-world-panel h4 {
  margin: 0 0 12px;
  font: 800 13px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pearl-world-panel.today h4 { color: var(--red-2); }
.pearl-world-panel.vision h4 { color: #6ee58f; }

.pearl-world-panel ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(220, 229, 224, 0.82);
}

.pearl-realism-meter {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.pearl-realism-row {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 72px;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}

.pearl-realism-row .label {
  color: rgba(232, 238, 235, 0.88);
  font-weight: 600;
}

.pearl-realism-row .track {
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pearl-realism-row .fill {
  height: 100%;
  background: linear-gradient(90deg, #ff5a42, #ff9f45);
}

.pearl-realism-row .fill.green {
  background: linear-gradient(90deg, #3a9d62, #6ee58f);
}

.pearl-realism-row .score {
  font: 900 11px var(--mono);
  color: var(--amber);
  text-align: right;
}

@media (max-width: 980px) {
  .pearl-persona-grid,
  .pearl-world-split {
    grid-template-columns: 1fr;
  }

  .pearl-realism-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pearl-realism-row .score {
    text-align: left;
  }
}

.pearl-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 14px;
}

.pearl-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(220, 229, 224, 0.78);
}

.pearl-legend-swatch {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 980px) {
  .pearl-hero-grid,
  .pearl-split,
  .pearl-flow {
    grid-template-columns: 1fr;
  }

  .pearl-flow-step:not(:last-child)::after {
    content: "↓";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -14px;
    transform: translateX(-50%);
  }

  .pearl-bar-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .pearl-bar-row .pct {
    text-align: left;
  }

  .pearl-sim-grid {
    grid-template-columns: 1fr;
  }
}

/* Fleet economics simulation charts */
.pearl-sim-intro {
  margin: 0 0 18px;
  color: #b8c4bf;
  font-size: 0.95rem;
  line-height: 1.55;
}

.pearl-sim-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.pearl-sim-card {
  background: #121816;
  border: 1px solid #243028;
  border-radius: 8px;
  overflow: hidden;
}

.pearl-sim-card.highlight {
  border-color: #6ee58f;
  box-shadow: 0 0 0 1px rgba(110, 229, 143, 0.15);
}

.pearl-sim-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 10px 12px 0;
}

.pearl-sim-card-head h4 {
  margin: 0;
  font-size: 0.92rem;
  color: #e8eeeb;
}

.pearl-sim-card-head .tag {
  font-family: monospace;
  font-size: 0.68rem;
  color: #8aa898;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pearl-sim-chart img {
  display: block;
  width: 100%;
  height: auto;
  background: #0a0e0c;
}

.pearl-sim-caption {
  margin: 0;
  padding: 8px 12px 12px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #8aa898;
}

.pearl-sim-caption strong {
  color: #ffb4a8;
}

.pearl-code-ref {
  margin: 14px 0 0;
  padding: 12px 14px;
  background: #0d1210;
  border: 1px solid #243028;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #9dffc8;
  overflow-x: auto;
}

.pearl-code-ref .path a {
  color: #ff9f45;
  text-decoration: none;
}

.pearl-code-ref .path a:hover {
  text-decoration: underline;
}

/* ── Mobile / narrow viewports ── */

.report-content.pearl-report-shell {
  min-width: 0;
  overflow-wrap: anywhere;
}

.report-content.pearl-report-shell img,
.pearl-report-shell img {
  max-width: 100%;
  height: auto;
}

.report-content.pearl-report-shell pre {
  margin: 16px 0 24px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 12px;
  line-height: 1.5;
}

.report-content.pearl-report-shell pre code {
  border: 0;
  background: transparent;
  padding: 0;
  white-space: pre;
  word-break: normal;
}

@media (max-width: 680px) {
  .report-content.pearl-report-shell {
    font-size: 16px;
    line-height: 1.62;
    margin-top: 28px;
  }

  .pearl-hero-grid {
    margin: 20px 0 24px;
    gap: 10px;
  }

  .pearl-scorecard {
    min-height: 0;
    padding: 14px 14px 12px;
  }

  .pearl-scorecard .value {
    font-size: 20px;
  }

  .pearl-scorecard .hint {
    font-size: 12px;
  }

  .pearl-verdict-banner {
    padding: 16px;
    margin: 24px 0;
  }

  .pearl-verdict-banner p {
    font-size: 16px;
  }

  .pearl-primer-box {
    padding: 16px;
    margin: 20px 0 24px;
  }

  .pearl-primer-box > p:first-of-type {
    font-size: 15px;
  }

  .pearl-figure {
    padding: 14px;
    margin: 24px 0;
  }

  .pearl-figure-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 14px;
  }

  .pearl-figure-head h3 {
    font-size: 17px;
  }

  .pearl-figure-caption {
    font-size: 13px;
  }

  .pearl-report-shell > h2 {
    margin: 32px 0 14px;
    font-size: clamp(22px, 6.5vw, 28px);
  }

  .pearl-report-shell > h3 {
    margin: 24px 0 10px;
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.25;
  }

  .pearl-report-shell > table {
    margin: 8px 0 20px;
    font-size: 13px;
  }

  .pearl-report-shell > table thead,
  .pearl-report-shell > table tbody {
    min-width: 480px;
  }

  .pearl-report-shell > table th,
  .pearl-report-shell > table td {
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.4;
  }

  .pearl-report-shell > table th {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .pearl-quadrant-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 6px;
  }

  .pearl-quadrant-y {
    writing-mode: horizontal-tb;
    transform: none;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .pearl-quadrant-x {
    grid-column: 1;
    text-align: left;
    padding-top: 4px;
  }

  .pearl-quadrant {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    min-height: 0;
    gap: 10px;
  }

  .pearl-quadrant-cell {
    padding: 12px;
  }

  .pearl-quadrant-cell h5 {
    font-size: 12px;
  }

  .pearl-quadrant-cell p {
    font-size: 12px;
  }

  .pearl-mermaid {
    padding: 8px;
    margin-left: -2px;
    margin-right: -2px;
  }

  .pearl-mermaid .mermaid {
    font-size: 12px;
  }

  .pearl-mermaid svg {
    min-width: 0 !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .pearl-code-ref {
    padding: 10px 12px;
    font-size: 11px;
    line-height: 1.45;
  }

  .pearl-sim-intro {
    font-size: 14px;
  }

  .pearl-sim-grid {
    gap: 12px;
  }

  .pearl-sim-card-head {
    flex-wrap: wrap;
    padding: 8px 10px 0;
  }

  .pearl-sim-card-head h4 {
    font-size: 0.85rem;
  }

  .pearl-sim-caption {
    font-size: 0.72rem;
    padding: 8px 10px 10px;
  }

  .pearl-persona .buys {
    font-size: 16px;
  }

  .pearl-persona .story {
    font-size: 12px;
  }

  .pearl-world-panel {
    min-height: 0;
    padding: 14px;
  }

  .pearl-panel {
    padding: 12px;
  }

  .pearl-panel ul {
    font-size: 13px;
  }

  .pearl-flow-step {
    min-height: 0;
    padding: 14px 12px;
  }

  .pearl-flow-step:not(:last-child) {
    margin-bottom: 18px;
  }

  .pearl-source-card .src-stat {
    font-size: 18px;
  }

  .pearl-split {
    gap: 12px;
  }
}

@media (max-width: 400px) {
  .pearl-report-shell > table thead,
  .pearl-report-shell > table tbody {
    min-width: 420px;
  }

  .pearl-scorecard .value {
    font-size: 18px;
  }

  .article-meta span,
  .article-meta time {
    font-size: 11px;
    padding: 6px 8px;
  }
}
