/* ============================================================
   Аль-Манхадж — дизайн-система
   Эстетика: исламская рукопись / библиотека медресе.
   Пергамент, глубокий изумруд, золото, арабская каллиграфия.
   ============================================================ */

:root {
  --paper: #f4ecd6;
  --paper-2: #efe4c7;
  --paper-card: #fbf6e9;
  --ink: #1b2a22;
  --ink-soft: #44564b;
  --ink-faint: #6b7a70;
  --emerald: #0c3b2e;
  --emerald-2: #0f4a39;
  --emerald-deep: #082a20;
  --gold: #b58a36;
  --gold-bright: #d8b251;
  --gold-soft: #c9a227;
  --line: rgba(12, 59, 46, 0.16);
  --line-strong: rgba(12, 59, 46, 0.32);
  --shadow: 0 22px 48px -28px rgba(8, 42, 32, 0.55);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Lora", Georgia, serif;
  --font-arabic: "Amiri", "Times New Roman", serif;
  --font-kufi: "Reem Kufi", "Amiri", serif;

  --measure: 68ch;
  --radius: 6px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--ink);
  background-color: var(--paper);
  position: relative;
  overflow-x: hidden;
}

/* Тонкая геометрическая текстура (гирих) поверх пергамента */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/assets/pattern.svg");
  background-size: 120px 120px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

main,
header,
footer,
.shell {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--emerald);
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold);
}

::selection {
  background: var(--emerald);
  color: var(--paper);
}

/* ---------- Layout ---------- */
.shell {
  width: min(1180px, 100% - 3rem);
  margin-inline: auto;
}

.reading {
  width: min(740px, 100% - 2.5rem);
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 0.6rem;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--emerald);
  color: var(--paper);
  border-bottom: 3px solid var(--gold-soft);
  position: relative;
  z-index: 60;
}

.topbar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.95rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--paper);
}

.brand:hover {
  color: var(--paper);
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex: none;
}

.brand__ar {
  font-family: var(--font-kufi);
  font-size: 1.55rem;
  line-height: 1;
  color: var(--gold-bright);
}

.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
}

.brand__name span {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244, 236, 214, 0.72);
}

.nav {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.nav a {
  color: rgba(244, 236, 214, 0.88);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold-bright);
  border-color: var(--gold-soft);
}

.nav__toggle {
  display: none;
}

/* Правый кластер: навигация + селектор языка + бургер */
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

/* ---------- Селектор языка ---------- */
.lang {
  position: relative;
  flex: none;
}

.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--paper);
  background: rgba(244, 236, 214, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: 999px;
  padding: 0.4rem 0.65rem 0.4rem 0.55rem;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.lang__btn:hover {
  background: rgba(201, 162, 39, 0.18);
  border-color: var(--gold-soft);
}

.lang__btn:active {
  transform: scale(0.97);
}

.fi.lang__flag {
  width: 1.58em;
  height: 1.18em;
  border-radius: 0.28em;
  flex: none;
  display: inline-block;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.lang__code {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold-bright);
}

.lang__chev {
  width: 11px;
  height: 8px;
  color: rgba(244, 236, 214, 0.75);
  transition: transform 0.25s ease;
}

.lang.is-open .lang__chev {
  transform: rotate(180deg);
}

.lang__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
  min-width: 200px;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: var(--paper-card);
  border: 1px solid var(--gold-soft);
  border-radius: 16px;
  box-shadow: 0 26px 50px -22px rgba(8, 42, 32, 0.65);
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 80;
}

/* Декоративный «клювик» дропдауна */
.lang__menu::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 18px;
  width: 12px;
  height: 12px;
  background: var(--paper-card);
  border-left: 1px solid var(--gold-soft);
  border-top: 1px solid var(--gold-soft);
  transform: rotate(45deg);
}

.lang.is-open .lang__menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang__opt {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.7rem;
  border-radius: 11px;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.95rem;
  position: relative;
  transition: background 0.18s ease, color 0.18s ease;
}

.lang__opt + .lang__opt {
  margin-top: 2px;
}

.lang__opt:hover,
.lang__opt:focus-visible {
  background: rgba(12, 59, 46, 0.08);
  outline: none;
}

.lang__opt[aria-selected="true"] {
  background: var(--emerald);
  color: var(--paper);
}

.lang__opt[aria-selected="true"] .lang__label {
  font-weight: 600;
}

.lang__opt[aria-selected="true"]::after {
  content: "۞";
  margin-left: auto;
  color: var(--gold-bright);
  font-size: 0.9rem;
}

.lang__opt .fi.lang__flag {
  width: 1.7em;
  height: 1.275em;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(120% 130% at 50% -10%, var(--emerald-2) 0%, var(--emerald) 45%, var(--emerald-deep) 100%);
  color: var(--paper);
  text-align: center;
  padding: 5.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/pattern.svg");
  background-size: 150px 150px;
  filter: invert(1);
  opacity: 0.06;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__ar {
  font-family: var(--font-arabic);
  direction: rtl;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--gold-bright);
  line-height: 1.2;
  margin: 0 0 0.4rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin: 0.2rem 0 0.8rem;
  letter-spacing: 0.01em;
}

.hero p {
  max-width: 46ch;
  margin: 0 auto;
  color: rgba(244, 236, 214, 0.85);
  font-size: 1.1rem;
}

.hero .rule {
  margin: 1.6rem auto 0;
}

/* ---------- Ornamental divider ---------- */
.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: min(320px, 80%);
  color: var(--gold-soft);
}

.rule::before,
.rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, currentColor);
}

.rule::after {
  background: linear-gradient(90deg, currentColor, transparent);
}

.rule__star {
  width: 18px;
  height: 18px;
  flex: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid var(--gold-soft);
  background: var(--gold-soft);
  color: var(--emerald-deep);
  font-weight: 600;
  transition: transform 0.18s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--gold-bright);
  color: var(--emerald-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--gold-bright);
}

.btn--ghost:hover {
  background: rgba(201, 162, 39, 0.14);
  color: var(--gold-bright);
}

/* ---------- Section heading ---------- */
.section {
  padding: 4.5rem 0;
}

.section__head {
  text-align: center;
  margin-bottom: 2.8rem;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: 0.2rem 0 0.6rem;
  color: var(--emerald);
}

.section__head p {
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto;
}

/* ---------- Article grid (mihrab cards) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}

.card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 14px 14px var(--radius) var(--radius);
  padding: 2rem 1.7rem 1.7rem;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

/* Арка-михраб сверху карточки */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.card.is-feature {
  grid-column: 1 / -1;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-soft);
}

.card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.card__ar {
  font-family: var(--font-arabic);
  direction: rtl;
  font-size: 1.5rem;
  color: var(--emerald-2);
  margin-bottom: 0.4rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.25;
  margin: 0 0 0.6rem;
  color: var(--emerald);
}

.card.is-feature h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.card p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.card__meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--ink-faint);
  letter-spacing: 0.03em;
}

.card__more {
  margin-left: auto;
  color: var(--gold);
  font-weight: 600;
}

.card.is-feature .card__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.card__quote {
  font-family: var(--font-arabic);
  direction: rtl;
  text-align: center;
  font-size: 1.35rem;
  line-height: 2;
  color: var(--emerald-2);
  background: rgba(12, 59, 46, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
}

/* ---------- Article page ---------- */
.article {
  padding: 3.5rem 0 1rem;
}

.article__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.article__header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: var(--emerald);
  margin: 0.4rem auto 0.7rem;
  max-width: 18ch;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.2rem;
  font-size: 0.86rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

.article__meta strong {
  color: var(--ink-soft);
  font-weight: 600;
}

.prose {
  font-size: 1.12rem;
  line-height: 1.85;
}

.prose > p,
.prose > ul,
.prose > ol,
.prose > h2,
.prose > h3,
.prose > .rule,
.prose > .note,
.prose > figure {
  margin-inline: auto;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--emerald);
  margin: 2.6rem auto 0.9rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--emerald-2);
  margin: 1.8rem auto 0.6rem;
}

.prose p {
  margin: 0 auto 1.2rem;
}

.prose ul,
.prose ol {
  padding-left: 1.3rem;
  margin: 0 auto 1.3rem;
}

.prose li {
  margin-bottom: 0.55rem;
}

.prose li::marker {
  color: var(--gold);
}

/* Буквица */
.prose > p.lead:first-letter {
  font-family: var(--font-display);
  float: left;
  font-size: 3.6rem;
  line-height: 0.78;
  padding: 0.35rem 0.6rem 0 0;
  color: var(--gold);
}

.prose .lead {
  font-size: 1.22rem;
  color: var(--ink-soft);
}

/* Арабский блок цитаты */
.quote-ar {
  direction: rtl;
  text-align: center;
  font-family: var(--font-arabic);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  line-height: 2.05;
  color: var(--emerald);
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.08), rgba(12, 59, 46, 0.05));
  border: 1px solid var(--gold-soft);
  border-radius: 10px;
  padding: 2rem 1.6rem;
  margin: 2rem auto;
  position: relative;
}

.quote-ar::before,
.quote-ar::after {
  content: "۞";
  position: absolute;
  color: var(--gold-soft);
  font-size: 1.3rem;
  left: 50%;
  transform: translateX(-50%);
}

.quote-ar::before {
  top: -0.85rem;
  background: var(--paper);
  padding: 0 0.5rem;
}

.quote-ar::after {
  bottom: -0.95rem;
  background: var(--paper);
  padding: 0 0.5rem;
}

/* Русский перевод цитаты */
.quote-ru {
  border-left: 4px solid var(--gold-soft);
  background: var(--paper-card);
  padding: 1.3rem 1.5rem;
  margin: 1.5rem auto;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}

.quote-ru cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Информационная врезка */
.note {
  background: rgba(12, 59, 46, 0.05);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: 1.8rem auto;
  font-size: 1rem;
}

.note h4 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  color: var(--emerald);
  font-size: 1.1rem;
}

.note--gold {
  background: rgba(201, 162, 39, 0.1);
  border-color: var(--gold-soft);
}

/* Колонки "за и против" */
.debate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin: 1.8rem auto;
}

.debate .pane {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  background: var(--paper-card);
}

.debate .pane h4 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--emerald);
}

.debate .pane.is-for {
  border-top: 4px solid var(--emerald-2);
}

.debate .pane.is-against {
  border-top: 4px solid var(--gold);
}

.debate .pane ul {
  padding-left: 1.1rem;
  margin: 0;
}

.debate .pane li {
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
}

/* Сноски / источники */
.sources {
  margin: 2.5rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.sources h2 {
  border: none;
  margin-bottom: 0.6rem;
}

.sources ol {
  padding-left: 1.3rem;
}

/* Навигация назад / далее */
.article-foot {
  margin: 3rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--emerald-deep);
  color: rgba(244, 236, 214, 0.8);
  margin-top: 4rem;
  border-top: 3px solid var(--gold-soft);
}

.footer .shell {
  padding: 3rem 0 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer h4 {
  font-family: var(--font-display);
  color: var(--gold-bright);
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
}

.footer a {
  color: rgba(244, 236, 214, 0.82);
  text-decoration: none;
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

.footer a:hover {
  color: var(--gold-bright);
}

.footer__ar {
  font-family: var(--font-arabic);
  direction: rtl;
  font-size: 1.5rem;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
}

.footer__bottom {
  border-top: 1px solid rgba(244, 236, 214, 0.14);
  text-align: center;
  font-size: 0.82rem;
  padding: 1.2rem 0;
  color: rgba(244, 236, 214, 0.6);
}

/* ---------- Reveal on load ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 0.7s ease forwards;
}

.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }
.reveal:nth-child(5) { animation-delay: 0.32s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .topbar .shell {
    width: min(100% - 2rem, 1180px);
  }

  .nav {
    gap: 1rem;
  }

  .nav a {
    font-size: 0.86rem;
  }

  .brand__name span {
    letter-spacing: 0.18em;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 1.5rem, 1180px);
  }

  .reading {
    width: min(100% - 1.5rem, 740px);
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--emerald-2);
    border-bottom: 3px solid var(--gold-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav.is-open {
    max-height: 340px;
  }

  .nav a {
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid rgba(244, 236, 214, 0.1);
  }

  .topbar .shell {
    position: relative;
  }

  .topbar__actions {
    gap: 0.7rem;
  }

  .lang__btn {
    padding: 0.35rem 0.5rem;
  }

  .nav__toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: 1px solid var(--gold-soft);
    border-radius: 6px;
    padding: 8px 9px;
    cursor: pointer;
  }

  .nav__toggle span {
    width: 20px;
    height: 2px;
    background: var(--gold-bright);
  }

  .card.is-feature .card__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 4.25rem 0 4rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .card {
    padding: 1.7rem 1.35rem 1.35rem;
  }

  .article {
    padding-top: 2.6rem;
  }

  .article__header {
    margin-bottom: 2rem;
  }

  .prose {
    font-size: 1.04rem;
  }

  .debate {
    grid-template-columns: 1fr;
  }

  .footer .shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .topbar .shell {
    gap: 0.75rem;
    padding-block: 0.75rem;
  }

  .brand {
    gap: 0.6rem;
    min-width: 0;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand__ar {
    font-size: 1.15rem;
  }

  .brand__name b {
    font-size: 1rem;
  }

  .brand__name span:not(.brand__ar) {
    display: none;
  }

  .lang__btn {
    gap: 0.42rem;
    padding: 0.38rem 0.52rem;
  }

  .lang__menu {
    right: -2.8rem;
    min-width: 185px;
  }

  .lang__menu::before {
    right: 64px;
  }

  .hero__ar {
    font-size: clamp(2rem, 14vw, 3.1rem);
  }

  .hero h1 {
    font-size: clamp(1.8rem, 11vw, 2.6rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .quote-ar {
    padding: 1.7rem 1rem;
    line-height: 1.85;
  }

  .quote-ru {
    padding: 1.1rem 1.15rem;
  }

  .article-foot {
    flex-direction: column;
  }

  .article-foot .btn {
    justify-content: center;
  }

}

@media (max-width: 380px) {
  .lang__code {
    display: none;
  }

  .lang__btn {
    padding-inline: 0.48rem;
  }

  .lang__menu {
    right: -3.45rem;
  }

  .lang__menu::before {
    right: 72px;
  }
}

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