/* ---------------------------------------------------------------
   CyberSecDaily.news — editorial design system
   Inspired by Stripe/Vercel restraint + The Verge/MIT Tech Review
   editorial typography. Built for long-form security advisories.
   Supports light + dark mode via prefers-color-scheme.
--------------------------------------------------------------- */

:root {
  color-scheme: light dark;

  /* Type stacks */
  --font-serif: "Source Serif Pro", "Charter", "Iowan Old Style",
    "Apple Garamond", "Georgia", "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI",
    "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "JetBrains Mono", "SF Mono", "Menlo",
    "Consolas", monospace;

  /* LIGHT theme tokens */
  --ink: #0b0f14;
  --ink-2: #1f2937;
  --ink-3: #374151;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --hairline: #e5e7eb;
  --hairline-soft: #eef0f3;
  --soft: #f7f8fa;
  --soft-2: #f1f3f6;
  --paper: #ffffff;
  --paper-trans: rgba(255, 255, 255, 0.86);
  --bg-glow: radial-gradient(1200px 600px at 50% -200px, #f3f5f8 0%, transparent 60%);
  --cta-surface: #0b0f14;
  --cta-text: rgba(255, 255, 255, 0.92);
  --cta-text-muted: rgba(255, 255, 255, 0.78);
  --cta-note: rgba(255, 255, 255, 0.6);
  --cta-grid-line: rgba(255, 255, 255, 0.04);

  /* Accents (stable across themes) */
  --advisory: #d92e2e;
  --advisory-bg: #fff1f1;
  --advisory-ring: rgba(217, 46, 46, 0.18);
  --link: #1d4ed8;
  --link-hover: #1e3a8a;
  --cta: #0f7a3a;
  --cta-hover: #0a5a2b;
  --cta-ring: rgba(15, 122, 58, 0.22);

  /* Layout */
  --shell: 1200px;
  --measure: 680px;
  --measure-wide: 880px;
  --nav-height: 64px;

  /* Radius / shadow */
  --r-2: 2px;
  --r-4: 4px;
  --r-6: 6px;
  --r-10: 10px;
  --r-14: 14px;
  --shadow-soft: 0 1px 2px rgba(11, 15, 20, 0.04),
    0 8px 24px rgba(11, 15, 20, 0.06);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f4f5f7;
    --ink-2: #d1d5db;
    --ink-3: #b3bac3;
    --muted: #8a93a0;
    --muted-2: #5a6371;
    --hairline: #232a34;
    --hairline-soft: #1a2029;
    --soft: #131820;
    --soft-2: #181f29;
    --paper: #0b0f14;
    --paper-trans: rgba(11, 15, 20, 0.78);
    --bg-glow: radial-gradient(1200px 600px at 50% -200px, #131923 0%, transparent 60%);
    --cta-surface: #0a0e13;
    --cta-grid-line: rgba(255, 255, 255, 0.05);

    --advisory: #ff5a5a;
    --advisory-bg: rgba(217, 46, 46, 0.12);
    --advisory-ring: rgba(255, 90, 90, 0.22);
    --link: #93b4ff;
    --link-hover: #c6d6ff;
    --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.4),
      0 8px 24px rgba(0, 0, 0, 0.45);
  }
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-serif);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  font-size: 18px;
  line-height: 1.6;
  background: var(--bg-glow), var(--paper);
}

img, svg, video { display: block; max-width: 100%; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); text-decoration: underline; text-underline-offset: 3px; }

/* ---------------------------- A11Y ----------------------------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 0 0 var(--r-6) 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
  text-decoration: none;
  color: var(--paper);
}

/* ----------------------- READ PROGRESS ------------------------- */

.read-progress {
  position: fixed;
  left: 0; right: 0; top: 0;
  height: 2px;
  z-index: 40;
  pointer-events: none;
  background: transparent;
}
.read-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--advisory), #ff8a4d);
  transition: width .08s linear;
}

/* ----------------------------- NAV ----------------------------- */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--nav-height);
  background: var(--paper-trans);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.site-nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  height: 100%;
  width: min(100% - 32px, var(--shell));
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand__mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--advisory);
  box-shadow: 0 0 0 4px var(--advisory-ring);
  flex: 0 0 auto;
}

.brand__wordmark { line-height: 1; }
.brand__tld { color: var(--muted); font-weight: 600; }

.site-nav__links {
  display: flex;
  gap: 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
}
.site-nav__links a {
  color: var(--ink-3);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.site-nav__links a:hover { color: var(--ink); text-decoration: none; }
.site-nav__links a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.site-nav__date {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}

/* ---------------------------- PAGE ----------------------------- */

.page {
  width: min(100% - 32px, var(--shell));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.article {
  display: grid;
  gap: 40px;
}

/* ------------------------- ARTICLE HEAD ------------------------ */

.article__head {
  max-width: var(--measure-wide);
  margin: 0 auto;
  width: 100%;
}

.kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag--advisory {
  color: var(--advisory);
  background: var(--advisory-bg);
  border-color: rgba(217, 46, 46, 0.22);
}

.tag__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--advisory);
  box-shadow: 0 0 0 3px var(--advisory-ring);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px var(--advisory-ring); }
  50% { box-shadow: 0 0 0 6px rgba(217, 46, 46, 0.08); }
}

.article__title {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.article__dek {
  margin: 0 0 32px;
  color: var(--ink-3);
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  max-width: 64ch;
  text-wrap: pretty;
}

/* ---------------------------- BYLINE --------------------------- */

.byline {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.byline picture { display: block; }

.byline__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 70% 37%;
  border: 1px solid var(--hairline);
  background: var(--soft);
}

.byline__body { min-width: 0; }

.byline__name {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.byline__meta {
  margin: 3px 0 0;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
}
.byline__sep { color: var(--muted-2); }

/* ----------------------------- PROSE --------------------------- */

.prose {
  max-width: var(--measure);
  margin: 0 auto;
  width: 100%;
  color: var(--ink-2);
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.72;
}

.prose p { margin: 0 0 24px; text-wrap: pretty; }
.prose em { font-style: italic; color: var(--ink); }

.prose__lead {
  font-size: 22px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin-bottom: 28px !important;
}

.prose__h2 {
  margin: 44px 0 16px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.pullquote {
  margin: 36px 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--ink);
}
.pullquote p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.42;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-wrap: balance;
}

code, .prose code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  padding: 2px 6px;
  border-radius: var(--r-4);
  background: var(--soft-2);
  color: var(--ink);
  border: 1px solid var(--hairline);
}

/* ---------------------------- FIGURE --------------------------- */

.figure {
  margin: 36px 0;
}
.figure img,
.figure__video {
  width: 100%;
  height: auto;
  border-radius: var(--r-10);
  background: #0a0a0a;
  border: 1px solid var(--hairline);
  display: block;
}
.figure figcaption,
.figure__caption-label {
  display: flex;
  gap: 4px 10px;
  flex-wrap: wrap;
  align-items: baseline;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.5;
}
.figure__caption-label {
  display: inline;
  font-weight: 700;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  margin: 0;
}

/* --------------------------- CALLOUT --------------------------- */

.callout {
  max-width: var(--measure-wide);
  margin: 0 auto;
  width: 100%;
  padding: 32px;
  border-radius: var(--r-14);
  background: var(--soft);
  border: 1px solid var(--hairline);
}

.callout__label {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--advisory);
}

.callout__heading {
  margin: 0 0 22px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.checklist__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--r-10);
}

.checklist__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.checklist__title {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.checklist__body {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-3);
}

/* ---------------------- BROWSER SECURITY PROBE ---------------- */

.browser-probe {
  max-width: var(--measure-wide);
  width: 100%;
  margin: 0 auto;
  font-family: var(--font-mono);
}

.browser-probe__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(34, 197, 94, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(100% 90% at 100% 0%, rgba(245, 158, 11, 0.1), transparent 56%),
    linear-gradient(180deg, rgba(5, 13, 10, 0.96), #020403 68%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.8),
    0 24px 70px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: #d6ffe3;
}

.browser-probe__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.035) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 95%);
  opacity: 0.8;
}

.browser-probe__panel > * {
  position: relative;
}

.browser-probe__topbar {
  display: grid;
  grid-template-columns: 12px 12px 12px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(34, 197, 94, 0.22);
  background: rgba(0, 0, 0, 0.36);
}

.browser-probe__light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-probe__light--red { background: #ff4d5f; }
.browser-probe__light--amber { background: #f59e0b; }
.browser-probe__light--green { background: #22c55e; }

.browser-probe__path,
.browser-probe__status {
  color: rgba(214, 255, 227, 0.72);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
}

.browser-probe__path {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-probe__status {
  justify-self: end;
  padding: 5px 8px;
  border: 1px solid rgba(245, 158, 11, 0.38);
  border-radius: 999px;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.08);
  font-weight: 700;
}

.browser-probe__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 20px;
  align-items: end;
  padding: 24px 24px 18px;
}

.browser-probe__eyebrow {
  grid-column: 1 / -1;
  margin: 0;
  color: #fbbf24;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.browser-probe__heading {
  margin: 0;
  color: #ecfdf5;
  font-family: var(--font-mono);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0;
}

.browser-probe__run {
  appearance: none;
  border: 1px solid rgba(34, 197, 94, 0.62);
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.14);
  color: #bbf7d0;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  padding: 12px 14px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 24px rgba(34, 197, 94, 0.1);
  transition: background .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.browser-probe__run:hover {
  background: rgba(34, 197, 94, 0.22);
  color: #ffffff;
  transform: translateY(-1px);
}

.browser-probe__run:disabled {
  cursor: wait;
  color: rgba(187, 247, 208, 0.52);
  border-color: rgba(34, 197, 94, 0.24);
  transform: none;
}

.browser-probe__run:focus-visible,
.browser-probe__cta:focus-visible {
  outline: 2px solid rgba(251, 191, 36, 0.75);
  outline-offset: 3px;
}

.browser-probe__screen {
  height: 310px;
  margin: 0 24px 18px;
  overflow: auto;
  border: 1px solid rgba(34, 197, 94, 0.24);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(1, 8, 5, 0.88), rgba(0, 0, 0, 0.94)),
    #020403;
  box-shadow: inset 0 0 38px rgba(34, 197, 94, 0.05);
}

.browser-probe__log {
  margin: 0;
  min-height: 100%;
  padding: 16px;
  color: #86efac;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.54;
  letter-spacing: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  text-shadow: 0 0 12px rgba(34, 197, 94, 0.16);
}

.browser-probe__log span {
  display: block;
}

.browser-probe__log .line--cmd { color: #fbbf24; }
.browser-probe__log .line--muted { color: rgba(134, 239, 172, 0.68); }
.browser-probe__log .line--warn { color: #fbbf24; }
.browser-probe__log .line--stop { color: #fecaca; font-weight: 800; }
.browser-probe__log .line--info { color: #bfdbfe; }
.browser-probe__log .line--action { color: #fef08a; font-weight: 800; }

.browser-probe__verdict {
  margin: 0 24px 18px;
  padding: 14px 16px;
  border: 1px solid rgba(248, 113, 113, 0.42);
  border-left: 4px solid #ef4444;
  border-radius: 6px;
  background: rgba(127, 29, 29, 0.24);
  color: #fecaca;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0;
  white-space: pre-wrap;
}

.browser-probe__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 48px);
  margin: 0 24px 24px;
  min-height: 52px;
  padding: 14px 18px;
  border: 1px solid rgba(187, 247, 208, 0.84);
  border-radius: 6px;
  background: #0f8f3a;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(15, 143, 58, 0.45),
    0 0 32px rgba(34, 197, 94, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: probe-cta-pulse 1.35s ease-in-out infinite;
}

.browser-probe__cta:hover {
  color: #ffffff;
  background: #12a348;
  text-decoration: none;
}

.browser-probe__cta[hidden],
.browser-probe__verdict[hidden] {
  display: none;
}

@keyframes probe-cta-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(15, 143, 58, 0.45),
      0 0 24px rgba(34, 197, 94, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(187, 247, 208, 0.75),
      0 0 42px rgba(34, 197, 94, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }
}

/* --------------------------- FOOTER ---------------------------- */

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--hairline);
  background: var(--paper);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  width: min(100% - 32px, var(--shell));
  margin: 0 auto;
  padding: 32px 0;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.site-footer__meta {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
}

/* -------------------------- RESPONSIVE ------------------------- */

@media (max-width: 880px) {
  .site-nav__inner { gap: 16px; }
  .site-nav__links { display: none; }

  .page { padding: 36px 0 56px; }
  .article { gap: 32px; }

  .article__title { font-size: clamp(30px, 7vw, 42px); }
  .article__dek { font-size: 18px; }

  .byline { grid-template-columns: 48px 1fr; }
  .byline__avatar { width: 48px; height: 48px; }

  .prose { font-size: 18px; }
  .prose__lead { font-size: 20px; }
  .pullquote p { font-size: 21px; }

  .callout { padding: 24px; }
  .checklist__item { padding: 14px; grid-template-columns: 36px 1fr; gap: 12px; }
  .checklist__num { width: 32px; height: 32px; font-size: 12px; }

  .browser-probe__intro {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 20px 18px 16px;
  }
  .browser-probe__screen {
    height: 280px;
    margin: 0 18px 16px;
  }
  .browser-probe__verdict {
    margin: 0 18px 16px;
  }
  .browser-probe__cta {
    width: calc(100% - 36px);
    margin: 0 18px 20px;
  }
}

@media (max-width: 520px) {
  body { font-size: 17px; }
  .site-nav__date { display: none; }
  .article__title { font-size: clamp(28px, 8vw, 36px); }
  .prose { font-size: 17px; line-height: 1.7; }
  .prose__lead { font-size: 19px; }
  .pullquote { padding-left: 16px; }
  .pullquote p { font-size: 19px; }
  .checklist__title { font-size: 14px; }
  .checklist__body { font-size: 15px; }
  .browser-probe__topbar {
    grid-template-columns: 10px 10px 10px minmax(0, 1fr);
  }
  .browser-probe__status {
    display: none;
  }
  .browser-probe__heading {
    font-size: 18px;
  }
  .browser-probe__run,
  .browser-probe__cta {
    font-size: 13px;
  }
  .browser-probe__log {
    font-size: 12px;
  }
}

/* -------------------------- A11Y / MOTION ---------------------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .figure__video { /* pause autoplay impression */ }
}

::selection { background: rgba(217, 46, 46, 0.18); color: var(--ink); }

@media print {
  .site-nav, .read-progress, .site-footer { display: none; }
  body { background: #fff; color: #000; }
  .figure img { box-shadow: none; }
  .browser-probe__panel { background: #f5f5f5 !important; color: #000 !important; border: 1px solid #ccc; }
  .browser-probe__panel * { color: #000 !important; }
}
