/* JobSwyft Blog — static stylesheet, independent of the React app.
   Mirrors the OKLCH design tokens used in @jobswyft/ui (Indigo hue 264, Space Grotesk + DM Sans).
   Goal: premium editorial typography, calm light theme, fast first paint. */

@font-face {
  font-family: "Space Grotesk";
  src: url("/fonts/space-grotesk-latin-wght-normal.woff2") format("woff2-variations"),
       url("/fonts/space-grotesk-latin-wght-normal.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/dm-sans-latin-wght-normal.woff2") format("woff2-variations"),
       url("/fonts/dm-sans-latin-wght-normal.woff2") format("woff2");
  font-weight: 300 800;
  font-display: swap;
  font-style: normal;
}

:root {
  --background: oklch(0.99 0.005 285);
  --foreground: oklch(0.18 0.04 285);
  --card: oklch(1 0 0);
  --muted: oklch(0.96 0.01 285);
  --muted-foreground: oklch(0.46 0.02 285);
  --border: oklch(0.91 0.015 285);
  --border-soft: oklch(0.94 0.012 285);
  --primary: oklch(0.55 0.27 264);
  --primary-soft: oklch(0.96 0.04 264);
  --primary-foreground: oklch(1 0 0);
  --ring: oklch(0.55 0.27 264 / 0.35);
  --success: oklch(0.65 0.16 163);
  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.04);
  --shadow-md: 0 8px 24px -8px oklch(0.30 0.04 285 / 0.10);
  --shadow-lg: 0 24px 60px -20px oklch(0.30 0.04 285 / 0.18);
  --radius: 14px;
  --radius-sm: 10px;
  --content-w: 720px;
  --wide-w: 1120px;
  --font-heading: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--ring); outline-offset: 3px; border-radius: 4px; }

.muted { color: var(--muted-foreground); }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  max-width: var(--wide-w);
  margin: 0 auto;
  padding: 16px 24px;
  background: oklch(1 0 0 / 0.75);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.site-nav .brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 700; font-size: 18px;
  color: var(--foreground);
}
.site-nav .brand:hover { text-decoration: none; }
.site-nav nav { display: inline-flex; align-items: center; gap: 22px; }
.site-nav nav a { color: var(--foreground); font-weight: 500; font-size: 15px; }
.site-nav nav a:hover { color: var(--primary); text-decoration: none; }
.site-nav nav a.active { color: var(--primary); }
.site-nav nav a.cta {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 16px -6px var(--primary);
  transition: transform .15s ease, box-shadow .15s ease;
}
.site-nav nav a.cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -8px var(--primary); text-decoration: none; }

/* ---------- Post page ---------- */
.post {
  max-width: var(--wide-w);
  margin: 0 auto;
  padding: 32px 24px 80px;
}
.breadcrumbs {
  font-size: 13px;
  color: var(--muted-foreground);
  margin-bottom: 24px;
}
.breadcrumbs a { color: var(--muted-foreground); }
.breadcrumbs a:hover { color: var(--primary); text-decoration: none; }
.breadcrumbs span { margin: 0 8px; }
.breadcrumbs .current { color: var(--foreground); }

.post-header {
  max-width: var(--content-w);
  margin: 0 auto 40px;
  text-align: left;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 16px;
}
.post-header h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--foreground);
  margin: 0 0 16px;
}
.post-header .lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted-foreground);
  margin: 0 0 24px;
}
.byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 14px;
  color: var(--muted-foreground);
}
.byline strong { color: var(--foreground); font-weight: 600; }
.byline .dot { opacity: 0.5; }

.post-hero {
  max-width: var(--wide-w);
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 0 auto 40px;
  box-shadow: var(--shadow-md);
}

.post-body {
  max-width: var(--content-w);
  margin: 0 auto;
}
.post-body h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 56px 0 16px;
  color: var(--foreground);
}
.post-body h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.3;
  margin: 36px 0 12px;
  color: var(--foreground);
}
.post-body h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  margin: 28px 0 8px;
}
.post-body p { margin: 0 0 20px; }
.post-body ul, .post-body ol { padding-left: 22px; margin: 0 0 24px; }
.post-body li { margin: 0 0 10px; }
.post-body li::marker { color: var(--primary); }
.post-body strong { color: var(--foreground); font-weight: 600; }
.post-body em { font-style: italic; }
.post-body a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: oklch(0.55 0.27 264 / 0.35);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: text-decoration-color .15s ease;
}
.post-body a:hover { text-decoration-color: var(--primary); }
.post-body blockquote {
  border-left: 3px solid var(--primary);
  background: var(--primary-soft);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
  font-style: normal;
  color: var(--foreground);
}
.post-body blockquote p:last-child { margin-bottom: 0; }
.post-body code {
  font-family: ui-monospace, "JetBrains Mono", "SF Mono", Menlo, monospace;
  font-size: 0.92em;
  background: var(--muted);
  padding: 2px 6px;
  border-radius: 5px;
  color: var(--foreground);
}
.post-body pre {
  background: oklch(0.18 0.04 285);
  color: oklch(0.95 0.01 285);
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.6;
}
.post-body pre code { background: transparent; padding: 0; color: inherit; }
.post-body hr {
  border: 0; border-top: 1px solid var(--border);
  margin: 48px auto;
  width: 80px;
}
.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.post-body th, .post-body td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.post-body th {
  background: var(--muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}
.post-body tr:last-child td { border-bottom: 0; }
.post-body img {
  border-radius: var(--radius-sm);
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}

/* ---------- FAQ ---------- */
.faq {
  max-width: var(--content-w);
  margin: 64px auto 0;
}
.faq h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.faq dl { margin: 0; }
.faq-item {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item dt {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--foreground);
  margin: 0 0 8px;
}
.faq-item dd { margin: 0; color: var(--muted-foreground); }

/* ---------- CTA ---------- */
.post-cta {
  max-width: var(--content-w);
  margin: 64px auto 0;
  padding: 32px;
  background: linear-gradient(135deg, var(--primary-soft), oklch(0.97 0.025 245));
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  text-align: center;
}
.post-cta h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.post-cta p { color: var(--muted-foreground); margin: 0 0 20px; }
.post-cta .btn,
.btn {
  display: inline-block;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 14px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  box-shadow: 0 12px 28px -10px var(--primary);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px var(--primary); text-decoration: none; }

/* ---------- Author card ---------- */
.author-card {
  max-width: var(--content-w);
  margin: 56px auto 0;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.author-card h2 {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 600;
  margin: 0 0 12px;
}
.author-card strong {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
}
.author-card p { margin: 6px 0 0; }
.author-card p.role { font-size: 14px; margin-bottom: 8px; }
.author-card a { font-size: 14px; }

/* ---------- Related ---------- */
.related {
  max-width: var(--wide-w);
  margin: 80px auto 0;
}
.related h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}
.related ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px;
}
.related li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.related li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.related a {
  display: block; padding: 20px;
  color: var(--foreground);
  text-decoration: none;
}
.related .tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.related strong { display: block; font-family: var(--font-heading); font-size: 17px; line-height: 1.35; margin: 0 0 8px; }
.related .muted { font-size: 14px; line-height: 1.5; }

/* ---------- Blog index ---------- */
.blog-index {
  max-width: var(--wide-w);
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.index-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.index-header h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 16px 0;
  background: linear-gradient(135deg, var(--foreground), oklch(0.40 0.20 264));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.index-header .lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted-foreground);
  margin: 0;
}
.post-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px;
}
.post-grid li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.post-grid li:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.post-grid a {
  display: block; padding: 24px;
  color: var(--foreground); text-decoration: none;
}
.post-grid .tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.post-grid h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.post-grid .muted { font-size: 14px; line-height: 1.55; margin: 0 0 16px; }
.post-grid time { font-size: 13px; color: var(--muted-foreground); }

/* ---------- Category nav (on /blog/ and /blog/category/<slug>/) ---------- */
.category-nav {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 0 0 40px;
  justify-content: center;
}
.category-nav a {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--foreground);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.category-nav a:hover { color: var(--primary); border-color: var(--primary); text-decoration: none; }
.category-nav .count {
  font-size: 12px; font-weight: 500;
  color: var(--muted-foreground);
  background: var(--muted);
  padding: 2px 8px;
  border-radius: 999px;
}

/* ---------- Author page ---------- */
.author-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.author-header h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 16px 0 8px;
}
.author-header .role {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.author-header .lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted-foreground);
  margin: 0 0 16px;
}
.author-header .expertise {
  font-size: 13px;
  letter-spacing: 0.02em;
}
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  background: transparent;
  transition: background .15s ease, color .15s ease;
}
.btn-outline:hover { background: var(--primary); color: var(--primary-foreground); text-decoration: none; }

.section-h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  text-align: center;
}

/* Pillar page prose — max-width matches post body */
.pillar-body {
  max-width: var(--content-w);
  margin: 0 auto 48px;
}

/* Post grid h3 (used on author pages) */
.post-grid h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  margin-top: 80px;
}
.site-footer .cols {
  max-width: var(--wide-w);
  margin: 0 auto;
  padding: 56px 24px 32px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}
.site-footer .cols > div { display: flex; flex-direction: column; gap: 10px; }
.site-footer .cols p { font-size: 14px; line-height: 1.55; margin: 4px 0 0; }
.site-footer h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 600;
  margin: 0 0 4px;
}
.site-footer a {
  color: var(--foreground);
  font-size: 14px;
}
.site-footer a:hover { color: var(--primary); text-decoration: none; }
.site-footer .legal {
  max-width: var(--wide-w);
  margin: 0 auto;
  padding: 16px 24px 32px;
  font-size: 13px;
  border-top: 1px solid var(--border-soft);
}

/* ---------- Responsive: tablet ---------- */
@media (max-width: 960px) {
  .site-nav { padding: 14px 18px; }
  .site-nav nav { gap: 16px; }
  .post { padding: 28px 20px 72px; }
  .post-header h1 { font-size: clamp(28px, 6vw, 44px); }
  .blog-index { padding: 36px 20px 72px; }
  .index-header h1 { font-size: clamp(32px, 6vw, 48px); }
  .related ul, .post-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

/* ---------- Responsive: phone ---------- */
@media (max-width: 720px) {
  body { font-size: 16.5px; line-height: 1.65; }
  .site-nav { padding: 12px 16px; gap: 8px; }
  .site-nav .brand span { display: none; }
  .site-nav nav { gap: 12px; }
  .site-nav nav a:not(.cta) { display: none; }
  .site-nav nav a.cta {
    padding: 9px 14px;
    font-size: 13px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  .post { padding: 20px 16px 56px; }
  .breadcrumbs { font-size: 12px; margin-bottom: 18px; line-height: 1.7; }
  .breadcrumbs span { margin: 0 6px; }

  .post-header { margin-bottom: 32px; }
  .post-header h1 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .post-header .lede { font-size: 16px; line-height: 1.55; margin-bottom: 18px; }
  .byline { font-size: 13px; gap: 6px; line-height: 1.5; }
  .byline .dot { display: none; }

  .post-hero { margin-bottom: 28px; border-radius: 10px; }

  .post-body { font-size: 16.5px; line-height: 1.7; }
  .post-body h2 { font-size: 22px; margin: 40px 0 12px; line-height: 1.25; }
  .post-body h3 { font-size: 18px; margin: 28px 0 8px; }
  .post-body p { margin-bottom: 16px; }
  .post-body ul, .post-body ol { padding-left: 20px; margin-bottom: 18px; }
  .post-body li { margin-bottom: 8px; }
  .post-body blockquote {
    padding: 14px 16px;
    margin: 22px 0;
    font-size: 16px;
  }
  .post-body pre {
    padding: 14px 16px;
    font-size: 13px;
    margin: 18px -4px;
    border-radius: 8px;
  }
  .post-body table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 14px;
    margin: 18px -4px;
    width: calc(100% + 8px);
  }
  .post-body th, .post-body td { padding: 10px 12px; }

  .faq { margin-top: 48px; }
  .faq h2 { font-size: 22px; margin-bottom: 16px; }
  .faq-item { padding: 18px 0; }
  .faq-item dt { font-size: 16px; }
  .faq-item dd { font-size: 15px; line-height: 1.6; }

  .post-cta { padding: 24px 20px; margin-top: 48px; border-radius: 12px; }
  .post-cta h3 { font-size: 20px; line-height: 1.25; margin-bottom: 8px; }
  .post-cta p { font-size: 15px; margin-bottom: 16px; }
  .btn, .post-cta .btn {
    padding: 12px 22px;
    font-size: 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .author-card { padding: 18px 20px; margin-top: 40px; border-radius: 12px; }
  .author-card h2 { font-size: 11px; }
  .author-card strong { font-size: 16px; }

  .related { margin-top: 56px; }
  .related h2 { font-size: 20px; margin-bottom: 14px; }
  .related ul, .post-grid { grid-template-columns: 1fr; gap: 12px; }
  .related a, .post-grid a { padding: 18px; }
  .post-grid h2 { font-size: 18px; }
  .post-grid h3 { font-size: 17px; }

  .blog-index { padding: 28px 16px 56px; }
  .index-header { margin-bottom: 32px; }
  .index-header h1 {
    font-size: clamp(28px, 9vw, 40px);
    line-height: 1.1;
    margin-bottom: 12px;
  }
  .index-header .lede { font-size: 16px; line-height: 1.55; }

  /* Horizontal scrollable category pills on mobile */
  .category-nav {
    gap: 8px;
    margin-bottom: 28px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 8px;
    margin-left: -4px;
    margin-right: -4px;
  }
  .category-nav::-webkit-scrollbar { display: none; }
  .category-nav a { flex-shrink: 0; font-size: 13px; padding: 8px 12px; }
  .category-nav .count { font-size: 11px; padding: 1px 6px; }

  .author-header { margin-bottom: 32px; }
  .author-header h1 { font-size: clamp(28px, 8vw, 40px); margin: 12px 0 6px; }
  .author-header .lede { font-size: 16px; }

  .site-footer { margin-top: 56px; }
  .site-footer .cols {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 18px 20px;
    text-align: left;
  }
  .site-footer .legal { padding: 14px 18px 24px; text-align: center; }
}

/* ---------- Responsive: very small phone (iPhone SE etc.) ---------- */
@media (max-width: 380px) {
  body { font-size: 16px; }
  .site-nav nav a.cta { padding: 8px 12px; font-size: 12.5px; }
  .post { padding: 16px 14px 48px; }
  .post-header h1 { font-size: 24px; }
  .post-body { font-size: 16px; }
  .post-body h2 { font-size: 20px; }
  .post-cta { padding: 20px 16px; }
  .post-cta h3 { font-size: 18px; }
}

/* ---------- Reduced motion preference ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
