:root {
  --bg: #f6f1e8;
  --bg-alt: #eee4d6;
  --bg-soft: rgba(255, 255, 255, 0.68);
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-dark: #172235;
  --text: #111c2b;
  --muted: #5e6b7d;
  --accent: #e76f51;
  --accent-2: #335cff;
  --accent-3: #1db5a3;
  --line: rgba(17, 28, 43, 0.1);
  --line-strong: rgba(17, 28, 43, 0.16);
  --shadow: 0 30px 80px rgba(27, 39, 60, 0.14);
  --shadow-soft: 0 16px 40px rgba(27, 39, 60, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --font-sans: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", sans-serif;
  --font-display: "Fraunces", "Noto Serif SC", "Songti SC", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 12% 12%, rgba(231, 111, 81, 0.22), transparent 22%),
    radial-gradient(circle at 88% 10%, rgba(51, 92, 255, 0.16), transparent 20%),
    radial-gradient(circle at 82% 88%, rgba(29, 181, 163, 0.14), transparent 18%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 36%, var(--bg-alt) 100%);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.35;
}

body::before {
  width: 300px;
  height: 300px;
  top: 4%;
  left: 2%;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.34), transparent 68%);
}

body::after {
  width: 360px;
  height: 360px;
  right: 0;
  bottom: 8%;
  background: radial-gradient(circle, rgba(51, 92, 255, 0.22), transparent 68%);
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

p {
  line-height: 1.8;
}

.site-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 32px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px 14px 14px;
  margin-bottom: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    linear-gradient(115deg, rgba(231, 111, 81, 0.1), rgba(51, 92, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: white;
  font-weight: 900;
  background: linear-gradient(145deg, var(--accent), #ff9b72 55%, #ffb06f);
  box-shadow: 0 14px 28px rgba(231, 111, 81, 0.28);
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small,
.eyebrow {
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy small {
  font-size: 0.78rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.site-main {
  display: grid;
  gap: 30px;
}

.hero,
.page-hero,
.note-banner,
.article,
.section-grid {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -6% -18% auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(51, 92, 255, 0.12), transparent 68%);
  pointer-events: none;
}

.hero h1,
.page-hero h1,
.article-header h1,
.section-heading h2,
.note-banner h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(3.3rem, 8vw, 6.6rem);
  max-width: 9ch;
}

.hero-lead,
.page-lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 58ch;
}

.search-box {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  max-width: 680px;
  padding: 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    linear-gradient(135deg, rgba(51, 92, 255, 0.1), rgba(29, 181, 163, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(27, 41, 59, 0.12);
}

.search-box--inline {
  margin-top: 0;
  max-width: none;
}

.search-slab {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 26px 28px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 244, 239, 0.94), rgba(241, 246, 255, 0.94)),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(27, 41, 59, 0.12);
}

.search-slab__copy {
  display: grid;
  gap: 8px;
}

.search-slab__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
}

.search-slab__copy h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.search-slab__copy p {
  margin: 0;
  color: var(--muted);
  max-width: 30ch;
}

.search-box__intro {
  display: grid;
  gap: 6px;
}

.search-box__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
}

.search-box__label {
  color: var(--text);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.2;
  font-weight: 700;
}

.search-box__field {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(248, 250, 255, 0.92);
  border: 1px solid rgba(17, 28, 43, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.search-box__field:focus-within {
  border-color: rgba(51, 92, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 5px rgba(51, 92, 255, 0.08);
  transform: translateY(-1px);
}

.search-box__icon {
  position: relative;
  width: 18px;
  height: 18px;
}

.search-box__icon::before,
.search-box__icon::after {
  content: "";
  position: absolute;
}

.search-box__icon::before {
  inset: 0;
  border: 2px solid rgba(27, 41, 59, 0.45);
  border-radius: 50%;
}

.search-box__icon::after {
  right: -1px;
  bottom: 0;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(27, 41, 59, 0.45);
  transform: rotate(45deg);
  transform-origin: center;
}

.search-box__input {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1.02rem;
}

.search-box__input:focus {
  outline: none;
}

.search-box__input::placeholder {
  color: rgba(68, 79, 102, 0.68);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #ff8b68 60%, #ffb06f);
  box-shadow: 0 16px 34px rgba(231, 111, 81, 0.3);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.hero-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 14px;
  border-radius: calc(var(--radius-xl) - 4px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.64)),
    linear-gradient(135deg, rgba(231, 111, 81, 0.08), rgba(51, 92, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.hero-panel__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 16px 6px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel__header strong {
  color: var(--text);
  letter-spacing: 0;
  text-transform: none;
}

.stat {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 28, 43, 0.08);
  box-shadow: var(--shadow-soft);
}

.stat span,
.post-card__meta,
.article-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.stat strong {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
}

.hero-signature {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 22px;
  padding: 16px 18px;
  max-width: 28rem;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(231, 111, 81, 0.1), rgba(51, 92, 255, 0.08)),
    rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 28, 43, 0.08);
  box-shadow: var(--shadow-soft);
}

.hero-signature__label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-signature strong {
  font-size: 1.02rem;
  line-height: 1.6;
}

.section-grid {
  display: grid;
  gap: 22px;
  position: relative;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card-grid--featured {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.external-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    linear-gradient(135deg, rgba(231, 111, 81, 0.06), rgba(51, 92, 255, 0.06));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.external-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 92, 255, 0.16), transparent 70%);
}

.external-card:hover {
  transform: translateY(-5px);
  border-color: rgba(231, 111, 81, 0.24);
  box-shadow: 0 22px 52px rgba(27, 41, 59, 0.12);
}

.external-card strong,
.external-card p,
.external-card__eyebrow,
.external-card__cta {
  position: relative;
  z-index: 1;
}

.external-card strong {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.external-card p {
  margin: 0;
  color: var(--muted);
}

.external-card__eyebrow {
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.external-card__cta {
  align-self: end;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--accent), #ff8b68 60%, #ffb06f);
  box-shadow: 0 14px 24px rgba(231, 111, 81, 0.24);
}

.post-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  min-height: 252px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, rgba(231, 111, 81, 0.05), rgba(51, 92, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  border-color: rgba(231, 111, 81, 0.24);
  box-shadow: 0 22px 52px rgba(27, 41, 59, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88)),
    linear-gradient(135deg, rgba(231, 111, 81, 0.08), rgba(51, 92, 255, 0.05));
}

.post-card h3 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.24;
}

.post-card p {
  margin: 0;
  color: var(--muted);
}

.post-card__meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.post-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
}

.archive-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.archive-item {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    linear-gradient(135deg, rgba(51, 92, 255, 0.05), rgba(29, 181, 163, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.archive-item:hover {
  transform: translateY(-4px);
  border-color: rgba(51, 92, 255, 0.2);
  box-shadow: 0 22px 52px rgba(27, 41, 59, 0.12);
}

.archive-item h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.26;
}

.archive-item p {
  margin: 0;
  color: var(--muted);
  word-break: break-all;
}

.archive-item__meta,
.archive-item__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.archive-item__meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.archive-item__footer {
  justify-content: space-between;
}

.archive-item__cta {
  color: var(--accent-2);
  font-weight: 700;
}

.search-empty {
  margin: 0;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.search-results {
  display: grid;
  gap: 12px;
}

.search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.search-result strong {
  font-size: 1rem;
}

.search-result span {
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.tag,
.tag-cloud__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 28, 43, 0.05);
  color: var(--muted);
}

.note-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(140deg, rgba(231, 111, 81, 0.14), rgba(51, 92, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.66));
  position: relative;
  overflow: hidden;
}

.note-banner::after {
  content: "";
  position: absolute;
  right: -50px;
  top: -30px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 181, 163, 0.18), transparent 70%);
}

.note-banner h2 {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.page-hero,
.article-header {
  display: grid;
  gap: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(231, 111, 81, 0.12), transparent 70%);
}

.page-hero h1,
.article-header h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  max-width: 11ch;
}

.page-hero .page-lead {
  max-width: 44ch;
}

.page-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.page-hero__stats span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(17, 28, 43, 0.08);
  color: var(--muted);
}

.article {
  padding: 0;
}

.article-header,
.article-body,
.article-footer {
  padding: 32px 36px;
}

.article-header__rule {
  width: 100%;
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, rgba(231, 111, 81, 0.5), rgba(51, 92, 255, 0.18), transparent);
}

.article-body {
  border-top: 1px solid rgba(17, 28, 43, 0.08);
  border-bottom: 1px solid rgba(17, 28, 43, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.3)),
    rgba(255, 255, 255, 0.2);
  font-size: 1.04rem;
  line-height: 1.95;
}

.article-body a {
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-body :first-child {
  margin-top: 0;
}

.article-body :last-child {
  margin-bottom: 0;
}

.article-body h2,
.article-body h3 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  margin-top: 2.2em;
  margin-bottom: 0.7em;
}

.article-body h2 {
  font-size: 1.9rem;
}

.article-body h3 {
  font-size: 1.4rem;
}

.article-body p,
.article-body ul,
.article-body ol {
  max-width: 72ch;
}

.article-body ul,
.article-body ol {
  padding-left: 1.3em;
}

.article-body li + li {
  margin-top: 0.5em;
}

.article-body img {
  max-width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.article-body blockquote {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  color: var(--muted);
  background: rgba(231, 111, 81, 0.08);
  border-radius: 0 18px 18px 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.article-body pre {
  padding: 18px 20px;
  overflow: auto;
  border-radius: 18px;
  background: #101827;
  color: #eef2ff;
  box-shadow: var(--shadow-soft);
}

.article-body code {
  padding: 0.15em 0.4em;
  border-radius: 8px;
  background: rgba(17, 28, 43, 0.07);
}

.article-body pre code {
  padding: 0;
  background: transparent;
  color: inherit;
}

.article-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-nav a,
.article-footer > a,
.pagination a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 28, 43, 0.08);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-cloud__item span {
  color: var(--text);
}

::selection {
  background: rgba(231, 111, 81, 0.24);
}

@media (max-width: 900px) {
  .hero,
  .note-banner,
  .card-grid,
  .card-grid--featured,
  .external-grid,
  .archive-list {
    grid-template-columns: 1fr;
  }

  .search-slab {
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }

  .site-header {
    border-radius: 26px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 18px, 1140px);
    padding-top: 10px;
  }

  .site-header,
  .hero,
  .page-hero,
  .note-banner,
  .section-grid {
    padding: 20px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    top: 10px;
  }

  .nav {
    width: 100%;
  }

  .nav-link {
    padding-inline: 12px;
  }

  .article-header,
  .article-body,
  .article-footer {
    padding: 22px 20px;
  }

  .hero h1,
  .page-hero h1,
  .article-header h1 {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
