:root {
  --paper: #f7f3ea;
  --paper-light: #fffcf6;
  --ink: #2c2925;
  --ink-soft: #676159;
  --moss: #78966b;
  --moss-dark: #465240;
  --sage: #c8d8c0;
  --line: #d8d0c2;
  --warm: #c98d68;
  --shadow: 0 18px 55px rgba(71, 61, 48, 0.08);
  --serif: "Songti SC", "STSong", "Noto Serif SC", Georgia, serif;
  --sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 8%, rgba(184, 192, 173, 0.2), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(97, 112, 90, 0.35);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 8px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(216, 208, 194, 0.78);
}

.wordmark {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  gap: 32px;
  color: var(--ink-soft);
  font-size: 15px;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--moss-dark);
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
  padding-block: 88px 112px;
}

.hero-copy {
  max-width: 770px;
  animation: enter 500ms ease-out both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--moss-dark);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-strip h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 96px);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-tag {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 5px 13px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
  line-height: 1.4;
  animation: tag-enter 420ms ease-out both;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.profile-tag-identity {
  border-color: rgba(70, 82, 64, 0.24);
  background: var(--moss-dark);
  color: var(--paper-light);
}

.profile-tag-identity:hover {
  background: #53624c;
}

.profile-tag-focus {
  border-color: rgba(120, 150, 107, 0.28);
  background: rgba(200, 216, 192, 0.6);
  color: var(--moss-dark);
}

.profile-tag-focus:hover {
  border-color: rgba(120, 150, 107, 0.5);
  background: rgba(200, 216, 192, 0.9);
}

.hero-tag-groups {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.hero-identity-tags .profile-tag:nth-child(2) {
  animation-delay: 70ms;
}

.hero-identity-tags .profile-tag:nth-child(3) {
  animation-delay: 140ms;
}

.hero-focus-tags .profile-tag:nth-child(1) {
  animation-delay: 200ms;
}

.hero-focus-tags .profile-tag:nth-child(2) {
  animation-delay: 270ms;
}

.hero-focus-tags .profile-tag:nth-child(3) {
  animation-delay: 340ms;
}

.hero-note {
  max-width: 590px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.button-primary {
  background: var(--moss-dark);
  color: var(--paper-light);
  box-shadow: 0 8px 24px rgba(70, 82, 64, 0.18);
  transition: transform 180ms ease, background-color 180ms ease;
}

.button-primary:hover {
  background: #364030;
  transform: translateY(-2px);
}

.text-link,
.story-link {
  color: var(--moss-dark);
  font-size: 15px;
  font-weight: 600;
}

.hero-garden {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(97, 112, 90, 0.2);
  border-radius: 180px 180px 20px 20px;
  background: rgba(255, 252, 246, 0.56);
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: enter 500ms 100ms ease-out both;
}

.hero-garden::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 54px;
  height: 1px;
  background: var(--line);
}

.hero-garden p {
  position: absolute;
  right: 28px;
  bottom: 74px;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

.sun-dot {
  position: absolute;
  top: 64px;
  right: 52px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e9c696;
  box-shadow: 0 0 0 12px rgba(233, 198, 150, 0.16);
}

.garden-stem {
  position: absolute;
  bottom: 54px;
  width: 2px;
  background: var(--moss);
  transform-origin: bottom;
}

.garden-stem-one {
  left: 31%;
  height: 226px;
  transform: rotate(-5deg);
}

.garden-stem-two {
  left: 57%;
  height: 150px;
  transform: rotate(7deg);
}

.garden-leaf {
  position: absolute;
  width: 58px;
  height: 30px;
  border: 2px solid var(--moss);
  border-radius: 100% 0 100% 0;
}

.leaf-one {
  left: 20%;
  bottom: 194px;
  transform: rotate(10deg);
}

.leaf-two {
  left: 31%;
  bottom: 264px;
  transform: rotate(180deg);
}

.leaf-three {
  left: 55%;
  bottom: 142px;
  transform: rotate(175deg) scale(0.78);
}

.garden-seed {
  position: absolute;
  color: var(--warm);
}

.seed-one {
  left: 22%;
  top: 96px;
  font-size: 24px;
}

.seed-two {
  left: 65%;
  top: 172px;
  font-size: 42px;
}

.featured-section {
  padding-block: 112px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.section-heading h2,
.about-strip h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
}

.botanical-mark {
  color: var(--moss);
  font-family: var(--serif);
  font-size: 48px;
}

.lead-story {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(216, 208, 194, 0.9);
  border-radius: 3px 56px 3px 3px;
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.lead-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: var(--ink-soft);
  font-size: 13px;
}

.category {
  color: var(--moss-dark);
  font-weight: 600;
}

.lead-story h3 {
  max-width: 790px;
  margin: 28px 0 18px;
  font-family: var(--serif);
  font-size: clamp(31px, 4.6vw, 56px);
  font-weight: 600;
  line-height: 1.2;
}

.lead-story h3 a {
  text-decoration: none;
}

.lead-story p {
  max-width: 760px;
  margin: 0 0 26px;
  color: var(--ink-soft);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.story-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-top: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.34);
}

.story-card-topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 18px;
  color: var(--ink-soft);
  font-size: 13px;
}

.story-card h3 {
  margin: 28px 0 14px;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.35;
}

.story-card h3 a {
  text-decoration: none;
}

.story-card p {
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 15px;
}

.story-card .story-link {
  margin-top: auto;
}

.section-action {
  margin-top: 40px;
  text-align: right;
}

.about-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
  gap: clamp(48px, 8vw, 112px);
  padding-block: 112px 144px;
  border-top: 1px solid var(--line);
}

.about-copy {
  padding-top: 36px;
  color: var(--ink-soft);
}

.about-copy p:first-child {
  margin-top: 0;
}

.site-footer {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

/* Article index */

.page-hero {
  max-width: 900px;
  padding-block: 96px 72px;
}

.page-hero h1,
.article-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 80px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.page-hero > p:last-child {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-block: 24px;
  border-block: 1px solid var(--line);
}

.garden-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 0.45fr)) minmax(280px, 1.65fr);
  gap: 1px;
  margin-bottom: 104px;
  border: 1px solid var(--line);
  background: var(--line);
}

.garden-summary > * {
  margin: 0;
  background: var(--paper-light);
}

.garden-summary > div {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.garden-summary strong {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

.garden-summary span {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 13px;
}

.garden-summary > p {
  display: flex;
  align-items: center;
  padding: 30px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 17px;
}

.garden-categories {
  padding-bottom: 104px;
}

.compact-heading {
  margin-bottom: 36px;
}

.compact-heading h2,
.list-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.2;
}

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

.category-overview-card {
  position: relative;
  min-height: 260px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.44);
}

.category-overview-card > span {
  color: var(--moss);
  font-family: var(--serif);
  font-size: 30px;
}

.category-overview-card h3 {
  margin: 32px 0 12px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.category-overview-card p {
  max-width: 450px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.category-overview-card small {
  position: absolute;
  right: 28px;
  top: 28px;
  color: var(--ink-soft);
}

.list-intro {
  padding-top: 8px;
}

.filter-button {
  appearance: none;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font: 14px/1.4 var(--sans);
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--moss);
  background: var(--moss-dark);
  color: var(--paper-light);
}

.article-list {
  padding-block: 48px 112px;
}

.article-list-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
}

.article-list-card[hidden] {
  display: none;
}

.article-list-meta {
  color: var(--ink-soft);
  font-size: 13px;
}

.article-list-meta span {
  display: block;
}

.article-list-card h2 {
  margin: -4px 0 10px;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.32;
}

.article-list-card h2 a {
  text-decoration: none;
}

.article-list-card p {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.article-arrow {
  color: var(--moss);
  font-size: 24px;
  text-decoration: none;
}

/* Article detail */

.article-hero {
  max-width: 920px;
  padding-block: 72px 64px;
}

.back-link {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--moss-dark);
  font-size: 14px;
}

.article-hero h1 {
  font-size: clamp(42px, 6.5vw, 76px);
}

.article-deck {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 27px);
  line-height: 1.65;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 13px;
}

.article-rule {
  width: min(1160px, calc(100% - 48px));
  height: 1px;
  margin: 0 auto;
  background: var(--line);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(120px, 190px) minmax(0, 720px);
  justify-content: center;
  gap: clamp(32px, 7vw, 96px);
  padding-block: 72px 112px;
}

.article-aside {
  color: var(--ink-soft);
  font-size: 13px;
}

.article-aside p {
  position: sticky;
  top: 32px;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.prose {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 2;
}

.prose > :first-child {
  margin-top: 0;
}

.prose p {
  margin: 0 0 1.5em;
}

.prose h2 {
  margin: 2.6em 0 0.9em;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 36px);
  font-weight: 600;
  line-height: 1.35;
}

.prose strong {
  color: var(--moss-dark);
  font-weight: 700;
  background: linear-gradient(transparent 68%, rgba(184, 192, 173, 0.4) 0);
}

.prose blockquote {
  margin: 2em 0;
  padding: 8px 0 8px 28px;
  border-left: 2px solid var(--sage);
  color: var(--ink-soft);
  font-size: 0.95em;
}

.prose blockquote p,
.prose blockquote br {
  margin-bottom: 0.4em;
}

.prose ul,
.prose ol {
  margin: 0 0 1.8em;
  padding-left: 1.5em;
}

.prose li {
  margin-bottom: 0.8em;
  padding-left: 0.35em;
}

.article-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-block: 0 112px;
}

/* About page */

.about-page-hero {
  min-height: auto;
  padding-block: 96px;
}

.not-found h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.about-page-intro {
  max-width: 900px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 3px 48px 3px 3px;
  background: var(--paper-light);
  box-shadow: var(--shadow);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.8;
}

.about-page-intro h1 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.about-page-intro p {
  margin: 0;
}

.about-page-intro p + p {
  margin-top: 22px;
}

.about-page-intro strong {
  color: var(--moss-dark);
  font-weight: 600;
}

.about-page-intro .identity-tags {
  color: var(--moss-dark);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.12em;
  margin: 0;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1.65fr);
  gap: clamp(40px, 8vw, 112px);
  padding-block: 104px;
  border-top: 1px solid var(--line);
}

.about-section-label > span {
  color: var(--sage);
  font-family: var(--serif);
  font-size: 54px;
}

.about-section-label .eyebrow {
  margin-top: 8px;
}

.about-section-content {
  max-width: 850px;
}

.about-section-content h2 {
  margin: 0 0 36px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 600;
  line-height: 1.25;
}

.about-section-content > p {
  max-width: 730px;
  margin: 0 0 22px;
  color: var(--ink-soft);
}

.about-section-content .large-copy {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(23px, 2.5vw, 31px);
  line-height: 1.72;
}

.about-section-content > .button {
  margin-top: 18px;
}

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

.focus-grid article {
  min-height: 280px;
  padding: 26px;
  border-top: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.3);
}

.focus-grid article > span {
  color: var(--moss);
  font-size: 24px;
}

.focus-grid h3 {
  margin: 36px 0 14px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.4;
}

.focus-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

/* 404 */

.not-found-page {
  min-height: 100vh;
}

.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 64px;
}

.not-found-mark {
  position: absolute;
  right: 8vw;
  top: 10vh;
  color: rgba(97, 112, 90, 0.09);
  font-family: var(--serif);
  font-size: clamp(140px, 28vw, 420px);
  line-height: 1;
  pointer-events: none;
}

.not-found > p:not(.eyebrow) {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--ink-soft);
}

.next-card {
  display: block;
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.42);
  text-decoration: none;
}

.next-card span {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
}

.next-card strong {
  display: block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tag-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(680px, calc(100% - 32px));
  }

  .site-header {
    min-height: 72px;
  }

  .site-nav {
    gap: 18px;
    font-size: 14px;
  }

  .site-nav a:first-child {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 72px 88px;
  }

  .hero-garden {
    min-height: 340px;
    max-width: 440px;
    width: 100%;
    margin-inline: auto;
  }

  .story-grid,
  .about-strip,
  .about-page-hero {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 620px;
    padding-top: 0;
  }

  .article-list-card {
    grid-template-columns: 1fr auto;
  }

  .article-list-meta {
    grid-column: 1 / -1;
  }

  .article-list-meta span {
    display: inline;
  }

  .article-list-meta span + span::before {
    content: " · ";
  }

  .article-layout {
    grid-template-columns: 1fr;
    width: min(720px, calc(100% - 40px));
    padding-top: 48px;
  }

  .article-aside {
    display: none;
  }

  .garden-summary {
    grid-template-columns: repeat(3, minmax(90px, 1fr));
  }

  .garden-summary > p {
    grid-column: 1 / -1;
  }

  .about-page-hero {
    min-height: auto;
    padding-block: 80px;
  }

  .about-section {
    grid-template-columns: 110px minmax(0, 1fr);
  }

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

  .focus-grid article {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    width: 100%;
  }

  .featured-section,
  .about-strip {
    padding-block: 80px;
  }

  .story-grid,
  .article-next,
  .category-overview {
    grid-template-columns: 1fr;
  }

  .story-card {
    min-height: 280px;
    padding-inline: 12px;
  }

  .page-hero,
  .article-hero {
    padding-block: 64px 48px;
  }

  .article-rule {
    width: calc(100% - 32px);
  }

  .prose {
    font-size: 17px;
    line-height: 1.95;
  }

  .article-next {
    padding-bottom: 80px;
  }

  .site-footer {
    min-height: 120px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .garden-summary {
    grid-template-columns: 1fr;
    margin-bottom: 80px;
  }

  .garden-summary > div {
    min-height: 108px;
  }

  .garden-summary > p {
    grid-column: auto;
  }

  .garden-categories {
    padding-bottom: 80px;
  }

  .about-page-intro {
    padding: 28px;
    font-size: 20px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 80px;
  }

  .about-section-label {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .about-section-label > span {
    font-size: 38px;
  }

  .about-section-label .eyebrow {
    margin: 0;
  }
}

@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;
  }
}
