/* ============================================================
   RUTAS DE ESPAÑA — hoja de estilos (mobile-first)
   ============================================================ */

:root {
  color-scheme: light;
  --c-bg: #f6f2ea;
  --c-surface: #ffffff;
  --c-ink: #21291f;
  --c-muted: #5d6a55;
  --c-brand: #bf5328;
  --c-brand-strong: #9c411e;
  --c-brand-soft: #f6e3d1;
  --c-teal: #166b5b;
  --c-teal-deep: #0d4338;
  --c-gold: #d99a33;
  --c-line: #e6dcc9;
  --c-line-soft: #eee7d8;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-sm: 10px;
  --shadow-1: 0 6px 18px -8px rgba(33,41,31,.14);
  --shadow-2: 0 20px 55px -14px rgba(33,41,31,.22);
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --container: 1160px;
  --header-h: 68px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

[data-theme="dark"] {
  color-scheme: dark;
  --c-bg: #111a14;
  --c-surface: #1b2620;
  --c-ink: #ecf1e6;
  --c-muted: #a5b1a2;
  --c-brand: #e07b45;
  --c-brand-strong: #f29a63;
  --c-brand-soft: #3a2718;
  --c-teal: #37a080;
  --c-gold: #e0ab4a;
  --c-line: #2c3a31;
  --c-line-soft: #26312a;
  --shadow-1: 0 6px 18px -8px rgba(0,0,0,.55);
  --shadow-2: 0 20px 55px -14px rgba(0,0,0,.6);
}

/* ---------- Reset y base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--c-bg); color: var(--c-ink);
  font-family: var(--font-sans); font-size: 1rem; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-teal); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
ul, ol { padding-left: 1.3em; }
h1, h2, h3, h4 {
  font-family: var(--font-serif); line-height: 1.15; margin: 0 0 .45em;
  color: var(--c-ink); font-weight: 700; text-wrap: balance;
}
h1 { font-size: clamp(2rem, 6vw, 3.1rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.1em; }
img { border-radius: var(--radius); }
:focus-visible { outline: 3px solid var(--c-brand); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--c-teal); color: #fff; }

/* Utilidades */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.1rem; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 200;
  background: var(--c-brand); color: #fff; padding: .6rem 1rem;
  border-radius: var(--radius-sm); font-weight: 600; transition: top .25s var(--ease);
}
.skip-link:focus { top: .75rem; color: #fff; text-decoration: none; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-brand); margin: 0 0 .6em;
}
.section { padding-block: 3.5rem; }
.section-alt { background: var(--c-surface); border-block: 1px solid var(--c-line-soft); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.section-head h2 { margin-bottom: 0; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.4rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  line-height: 1.2; border: 2px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--c-teal); color: #fff; box-shadow: var(--shadow-1); }
.btn-primary:hover { background: var(--c-teal-deep); color: #fff; }
.btn-ghost { border-color: var(--c-line); color: var(--c-ink); background: transparent; }
.btn-ghost:hover { border-color: var(--c-brand); color: var(--c-brand); }
.btn-light { background: #fff; color: var(--c-teal-deep); }
.btn-light:hover { background: var(--c-brand-soft); color: var(--c-ink); }
.btn-sm { padding: .55rem 1rem; font-size: .88rem; }
.empty-state { color: var(--c-muted); padding: 2rem 0; }

/* ---------- Cabecera ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--c-surface) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--c-line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-h); gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .55rem; color: var(--c-ink); }
.brand:hover { text-decoration: none; }
.brand-mark { color: var(--c-brand); display: grid; place-items: center; }
.brand-name { font-family: var(--font-serif); font-weight: 800; font-size: 1.15rem; }
.brand-name em { font-style: normal; color: var(--c-brand); }
.header-actions { display: flex; align-items: center; gap: .4rem; }

.theme-toggle {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: none; border-radius: 50%; background: transparent; color: var(--c-ink);
  cursor: pointer; transition: background .2s var(--ease), transform .2s var(--ease);
}
.theme-toggle:hover { background: var(--c-line-soft); transform: rotate(15deg); }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 9px; border: 0; border-radius: 12px;
  background: transparent; cursor: pointer; color: var(--c-ink);
}
.nav-toggle-bar {
  display: block; height: 2.5px; width: 100%;
  background: currentColor; border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.site-nav {
  position: absolute; top: var(--header-h); left: 0; right: 0;
  background: var(--c-surface); border-bottom: 1px solid var(--c-line-soft);
  box-shadow: var(--shadow-2);
  visibility: hidden; opacity: 0; transform: translateY(-12px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.nav-list { list-style: none; margin: 0; padding: .6rem 0; }
.nav-list li + li { border-top: 1px solid var(--c-line-soft); }
.nav-link { display: block; padding: .95rem 1.2rem; font-weight: 600; color: var(--c-ink); font-size: 1.02rem; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--c-brand); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  padding: 2.6rem 0 3.2rem;
  background:
    radial-gradient(1200px 500px at 85% -10%, var(--c-brand-soft), rgba(0,0,0,0) 55%),
    radial-gradient(900px 420px at -10% 110%, color-mix(in srgb, var(--c-teal) 14%, transparent), rgba(0,0,0,0) 60%),
    var(--c-bg);
  border-bottom: 1px solid var(--c-line-soft);
}
.hero-grid { display: grid; gap: 2.2rem; align-items: center; }
.hero-accent { color: var(--c-brand); font-style: italic; font-weight: 800; }
.hero-lead { font-size: 1.08rem; color: var(--c-muted); max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.hero-art { justify-self: center; }
.hero-art img { border-radius: var(--radius-lg); box-shadow: var(--shadow-2); }

/* ---------- Tarjetas ---------- */
.card-grid { display: grid; gap: 1.5rem; grid-template-columns: minmax(0,1fr); }
.featured-grid { display: grid; gap: 1.5rem; }
.card {
  display: flex; flex-direction: column; background: var(--c-surface);
  border: 1px solid var(--c-line-soft); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-1);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.card-media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--c-line-soft); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { padding: 1.2rem 1.3rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.card-cat { margin: 0 0 .5rem; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.card-cat a { color: var(--c-brand); }
.card-title { font-size: 1.28rem; margin-bottom: .45rem; }
.card-title a { color: var(--c-ink); }
.card-title a:hover { color: var(--c-brand); text-decoration: none; }
.card-excerpt { color: var(--c-muted); font-size: .95rem; flex: 1; margin-bottom: 1rem; }
.card-meta {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  font-size: .82rem; color: var(--c-muted);
}
.dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }

/* ---------- Pasos y banda CTA ---------- */
.steps-grid { display: grid; gap: 1.4rem; grid-template-columns: minmax(0,1fr); }
.step { background: var(--c-surface); border: 1px solid var(--c-line-soft); border-radius: var(--radius); padding: 1.5rem; }
.step-num {
  display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-brand-soft); color: var(--c-brand-strong);
  font-family: var(--font-serif); font-weight: 800; font-size: 1.1rem; margin-bottom: .8rem;
}
.step h3 { font-size: 1.1rem; }
.cta-band { padding: 3.5rem 0; background: linear-gradient(120deg, var(--c-teal) 0%, var(--c-teal-deep) 90%); color: #fff; }
.cta-inner { display: grid; gap: 1.5rem; align-items: center; }
.cta-inner h2 { color: #fff; }
.cta-inner .eyebrow { color: var(--c-gold); }
.cta-inner p { color: rgba(255,255,255,.85); margin: 0; }
.cta-inner .btn { justify-self: start; }

/* ---------- Cabeceras de página ---------- */
.page-head { padding: 2.4rem 0 .6rem; }
.page-head h1 { margin-bottom: .4rem; }
.page-intro { color: var(--c-muted); max-width: 62ch; }
.term-count { font-size: .9rem; color: var(--c-muted); margin-top: .4rem; }
.tag-cloud { list-style: none; display: flex; flex-wrap: wrap; gap: .7rem; padding: 1.6rem 0 3rem; margin: 0; }
.tag-cloud a {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: 999px; padding: .5rem .95rem; font-weight: 600; color: var(--c-ink);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.tag-cloud a:hover { border-color: var(--c-brand); color: var(--c-brand); transform: translateY(-2px); text-decoration: none; }
.tag-cloud .count { background: var(--c-brand-soft); color: var(--c-brand-strong); font-size: .75rem; border-radius: 999px; padding: .05rem .5rem; }

/* ---------- Migas de pan ---------- */
.breadcrumbs { padding-top: 1.4rem; font-size: .82rem; color: var(--c-muted); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; margin: 0; padding: 0; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: .35rem; }
.breadcrumbs li + li::before { content: "/"; color: var(--c-line); }
.breadcrumbs a { color: var(--c-muted); }
.breadcrumbs a:hover { color: var(--c-brand); }
.breadcrumbs [aria-current="page"] { color: var(--c-ink); font-weight: 600; }

/* ---------- Artículo (single) ---------- */
.post { padding-bottom: 3.5rem; }

.post-header { padding: 1.4rem 0 1rem; max-width: var(--maxw-prose); }
.post-cat { margin: 0 0 .4rem; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.post-cat a { color: var(--c-brand); }
.post-header h1 { font-size: clamp(1.85rem, 5.2vw, 2.7rem); margin-bottom: .6rem; }
.post-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: .45rem;
  font-size: .88rem; color: var(--c-muted);
}
.post-author { font-weight: 600; color: var(--c-ink); }

.post-cover { margin: 1.6rem 0 2.2rem; }
.post-cover img {
  width: 100%; max-width: none; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-2);
}

.post-layout {
  display: grid; gap: 2.4rem;
  grid-template-columns: minmax(0, 1fr);
  max-width: var(--maxw-prose);
}

/* Índice de contenidos */
.toc {
  background: var(--c-surface); border: 1px solid var(--c-line-soft);
  border-radius: var(--radius); padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-1);
}
.toc-title {
  font-family: var(--font-serif); font-weight: 700; font-size: 1.02rem;
  margin-bottom: .5rem;
}
.toc nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .15rem; }
.toc nav ul ul { padding-left: 1rem; margin-top: .2rem; }
.toc a {
  display: block; padding: .35rem .55rem; margin-left: -.55rem; margin-right: -.55rem;
  border-radius: var(--radius-sm); color: var(--c-muted); font-size: .92rem;
  border-left: 2px solid transparent;
}
.toc a:hover { color: var(--c-brand); background: var(--c-line-soft); text-decoration: none; }
.toc .active { color: var(--c-brand); border-left-color: var(--c-brand); font-weight: 600; }

/* Compartir */
.share { margin-top: 1.6rem; }
.share-title { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: .5rem; }
.share-links { display: flex; flex-wrap: wrap; gap: .5rem; }
.share-links a {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .85rem; border-radius: 999px;
  background: var(--c-surface); border: 1px solid var(--c-line);
  font-size: .85rem; font-weight: 600; color: var(--c-ink);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.share-links a:hover { border-color: var(--c-brand); color: var(--c-brand); transform: translateY(-2px); text-decoration: none; }

/* ---------- Cuerpo del texto (prose) ---------- */
.post-main {
  font-size: var(--fs-prose);
  line-height: 1.78;
  min-width: 0;
}
.post-main h2 {
  margin-top: 2.4rem; padding-top: .4rem; scroll-margin-top: calc(var(--header-h) + 1rem);
}
.post-main h3 {
  margin-top: 1.8rem; scroll-margin-top: calc(var(--header-h) + 1rem);
  font-size: 1.32rem;
}
.post-main h2 + h3 { margin-top: 1.2rem; }
.post-main p { margin-bottom: 1.25em; }
.post-main > p:first-of-type { font-size: 1.12rem; color: var(--c-muted); }
.post-main ul, .post-main ol { margin-bottom: 1.4em; }
.post-main li { margin-bottom: .55em; }
.post-main strong { color: var(--c-ink); }
.post-main figcaption { font-size: .85rem; color: var(--c-muted); text-align: center; margin-top: .5rem; }
.post-main > figure { margin: 2rem 0; }
.post-main img { border-radius: var(--radius-lg); box-shadow: var(--shadow-1); width: 100%; height: auto; }

.post-main blockquote {
  margin: 1.8rem 0; padding: 1rem 1.35rem;
  background: var(--c-surface); border: 1px solid var(--c-line-soft);
  border-left: 4px solid var(--c-brand);
  border-radius: var(--radius);
  color: var(--c-ink);
}
.post-main blockquote p { margin: 0; }
.post-main blockquote strong { color: var(--c-brand-strong); }

.post-main hr { border: 0; border-top: 1px solid var(--c-line); margin: 2.4rem 0; }

.post-main table {
  display: block; width: 100%; overflow-x: auto;
  border-collapse: collapse; margin: 1.8rem 0;
  font-size: .95rem; background: var(--c-surface);
  border: 1px solid var(--c-line-soft); border-radius: var(--radius);
  border-spacing: 0; white-space: nowrap;
}
.post-main th {
  text-align: left; background: var(--c-brand-soft); color: var(--c-brand-strong);
  font-weight: 700; padding: .7rem .9rem;
}
.post-main td { padding: .7rem .9rem; border-top: 1px solid var(--c-line-soft); }
.post-main tbody tr:nth-child(even) { background: color-mix(in srgb, var(--c-bg) 55%, var(--c-surface)); }

/* ---------- FAQ ---------- */
.faq { margin-top: 2.8rem; }
.faq h2 { font-size: 1.6rem; }
.faq-list { display: grid; gap: .8rem; }
.faq-item {
  background: var(--c-surface); border: 1px solid var(--c-line-soft);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-1);
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.05rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; color: var(--c-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: 0 0 auto; font-size: 1.4rem; font-weight: 400;
  color: var(--c-brand); transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 1.25rem 1.15rem; color: var(--c-muted); }

/* ---------- Caja CTA del artículo ---------- */
.cta-box {
  margin-top: 3rem; padding: 1.8rem 1.6rem;
  background: linear-gradient(120deg, var(--c-teal) 0%, var(--c-teal-deep) 90%);
  color: #fff; border-radius: var(--radius-lg);
}
.cta-box h2 { color: #fff; font-size: 1.5rem; }
.cta-box p { color: rgba(255,255,255,.85); }
.cta-box-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .4rem; }
.cta-box .btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.cta-box .btn-ghost:hover { border-color: #fff; color: var(--c-gold); }

/* ---------- Página estática ---------- */
.page-single { padding-bottom: 3.5rem; }
.page-body.prose { max-width: 72ch; padding-bottom: 2rem; }
.prose h2 { margin-top: 2rem; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Pie de página ---------- */
.site-footer { background: var(--c-teal-deep); color: #dfe9e2; margin-top: 4rem; }
.footer-grid {
  display: grid; gap: 2.2rem; padding-block: 3rem 2.2rem;
  grid-template-columns: minmax(0,1fr);
}
.footer-brand-name {
  font-family: var(--font-serif); font-weight: 800; font-size: 1.35rem; color: #fff; margin-bottom: .4rem;
}
.footer-tagline { color: #b9c9bf; font-size: .95rem; max-width: 34ch; }
.footer-title {
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-gold); margin-bottom: .8rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-col a { color: #dfe9e2; font-size: .95rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.1rem; }
.footer-bottom-inner {
  display: flex; flex-direction: column; gap: .5rem; align-items: flex-start;
  font-size: .85rem; color: #b9c9bf;
}
.footer-bottom-inner p { margin: 0; }
.footer-links a { color: #b9c9bf; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   RESPONSIVE — progresivo hacia tablet y escritorio
   ============================================================ */

/* ---------- ≥ 720 px ---------- */
@media (min-width: 720px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-inner { grid-template-columns: 1fr auto; text-align: left; }
  .cta-inner .btn { justify-self: end; }
  .hero { padding: 3.4rem 0 4rem; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 3rem; }
  .hero-copy { order: 1; }
  .page-head { padding-top: 3rem; }
}

/* ---------- Escritorio ---------- */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static; left: auto; right: auto; top: auto;
    visibility: visible; opacity: 1; transform: none;
    background: transparent; border: 0; box-shadow: none;
    transition: none;
  }
  .nav-list { display: flex; align-items: center; gap: .4rem; padding: 0; }
  .nav-list li + li { border-top: 0; }
  .nav-link {
    padding: .55rem .9rem; font-size: .95rem; border-radius: 999px;
  }
  .nav-link:hover, .nav-link[aria-current="page"] { background: var(--c-line-soft); color: var(--c-ink); }

  .header-inner > .site-nav { margin-left: auto; }

  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .featured-grid { grid-template-columns: minmax(0, 1fr); max-width: 640px; }

  .post-header { text-align: left; }
  .post-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    max-width: var(--container);
    justify-content: start;
    column-gap: 3.2rem;
  }
  .post-aside { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
  .post-main { max-width: var(--maxw-prose); }
  .post-cover .container { max-width: var(--container); }

  .footer-grid { grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr)); }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ---------- Preferencias de movimiento ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}