:root {
  --blue-950: #061b5b;
  --blue-900: #08266f;
  --blue-800: #073fa1;
  --blue-700: #075bc4;
  --blue-600: #087fe0;
  --sky-500: #1ebeea;
  --sky-300: #7ee4fa;
  --surface: #ffffff;
  --text: #071657;
  --muted: #46547c;
  --pink: #f43f7a;
  --pink-soft: #ffd6e4;
  --purple: #7557e9;
  --purple-soft: #e5dcff;
  --mint: #129b8d;
  --mint-soft: #b8f4e9;
  --sport: #0b77db;
  --sport-soft: #cde8ff;
  --shadow-sm: 0 5px 12px rgba(18, 67, 114, .16);
  --shadow-md: 0 13px 30px rgba(19, 84, 127, .2);
  --radius-lg: 28px;
  --radius-md: 20px;
  --focus: 0 0 0 4px rgba(255, 255, 255, .94), 0 0 0 7px #08266f;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: #f8fcff;
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
a {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--blue-950);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform .18s ease;
}

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

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.site-header {
  position: relative;
  z-index: 20;
  color: #fff;
  background: linear-gradient(105deg, #086bc7 0%, #058fdc 57%, #0577ce 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.header-inner {
  width: min(100% - 44px, 1580px);
  min-height: 94px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  text-transform: none;
  font-family: "Fredoka", "Arial Rounded MT Bold", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: .015em;
  text-shadow: 0 2px 1px rgba(2, 47, 119, .22);
}

.brand-mark {
  width: clamp(46px, 4vw, 62px);
  height: auto;
  flex: 0 0 auto;
}

.grownups-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, .94);
  border: 0;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-weight: 900;
  font-size: 1.04rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.grownups-button svg {
  width: 29px;
  height: 24px;
}

.grownups-button:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 9px 20px rgba(3, 46, 110, .24);
}

.hero {
  position: relative;
  min-height: calc(100vh - 94px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 17%, rgba(98, 229, 255, .85) 0, rgba(34, 197, 238, .42) 28%, transparent 52%),
    linear-gradient(180deg, #15b5ec 0%, #5edbf5 40%, #eafbff 73%, #fff 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(100% - 44px, 1548px);
  margin-inline: auto;
  padding: 25px 0 24px;
}

h1 {
  max-width: 1100px;
  margin: 0 auto 18px;
  color: var(--blue-950);
  font-family: "Fredoka", "Arial Rounded MT Bold", sans-serif;
  font-size: clamp(2.25rem, 3.7vw, 4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.025em;
  text-align: center;
  text-wrap: balance;
}

.search {
  position: relative;
  width: min(100%, 860px);
  margin: 0 auto 17px;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 24px;
  width: 31px;
  color: #7782a2;
  transform: translateY(-50%);
  pointer-events: none;
}

.search input {
  width: 100%;
  height: 68px;
  padding: 0 62px 0 72px;
  color: var(--blue-950);
  background: #fff;
  border: 2px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  box-shadow: 0 7px 15px rgba(8, 87, 135, .25);
  font-size: 1.25rem;
  font-weight: 600;
  transition: box-shadow .18s ease, border-color .18s ease;
}

.search input::placeholder {
  color: #687496;
  opacity: 1;
}

.search input:focus {
  outline: none;
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .92), 0 0 0 7px rgba(8, 63, 161, .75), var(--shadow-md);
}

.clear-search {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 38px;
  height: 38px;
  padding: 0 0 3px;
  color: #536181;
  background: #edf3f8;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
  transform: translateY(-50%);
}

.filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.filter-chip {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 27px;
  color: var(--blue-950);
  background: rgba(255, 255, 255, .94);
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 900;
  transition: transform .16s ease, color .16s ease, background .16s ease, box-shadow .16s ease;
}

.filter-chip span {
  font-size: 1.35rem;
  line-height: 1;
}

.filter-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(18, 67, 114, .2);
}

.filter-chip.is-active {
  color: #fff;
  background: linear-gradient(180deg, #158dea, #0865d2);
  border-color: #fff;
}

.results-bar {
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6px;
}

.results-bar p {
  margin: 0;
  color: var(--blue-900);
  font-size: .93rem;
  font-weight: 800;
}

.featured-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1.48fr) repeat(3, minmax(205px, .62fr));
  gap: 12px;
  align-items: stretch;
}

.featured-layout[hidden],
.no-results[hidden] {
  display: none;
}

.guide-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 5px solid rgba(255, 255, 255, .96);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 0 rgba(5, 76, 128, .08), 0 10px 24px rgba(42, 120, 155, .16);
  transition: transform .18s ease, box-shadow .18s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 3px 0 rgba(5, 76, 128, .08), 0 17px 30px rgba(42, 120, 155, .22);
}

.guide-card--featured {
  min-height: 468px;
  display: grid;
  grid-template-columns: 56% 44%;
  grid-template-rows: 1fr auto;
  background: linear-gradient(135deg, #ffe7ef, #fff5f8 62%, #fff);
}

.featured-badge {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  color: var(--pink);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(244, 63, 122, .22);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-weight: 900;
}

.guide-visual {
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px 16px 0;
  background: var(--card-tint, #eaf7ff);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.guide-visual:focus-visible {
  outline: 4px solid #ffb000;
  outline-offset: -5px;
}

.guide-visual img { transition: transform .18s ease, filter .18s ease; }
.guide-visual:hover img,
.guide-visual:focus-visible img { transform: scale(1.035); filter: drop-shadow(0 11px 5px rgba(22,58,97,.18)); }

.guide-name-link {
  color: inherit;
  text-decoration: none;
  border-radius: 5px;
}

.guide-name-link:hover,
.guide-name-link:focus-visible { color: #087bd5; text-decoration: underline; text-underline-offset: 4px; }

.guide-card--featured .guide-visual {
  grid-row: 1 / -1;
  min-height: 100%;
  padding: 58px 16px 18px;
  background: transparent;
}

.guide-visual img {
  width: 100%;
  height: 245px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 8px 4px rgba(22, 58, 97, .11));
}

.guide-card--featured .guide-visual img {
  height: 350px;
}

.guide-details {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px 17px;
  text-align: center;
}

.guide-card--featured .guide-details {
  align-items: flex-start;
  justify-content: center;
  padding: 58px 28px 20px 4px;
  text-align: left;
}

.role-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  margin-top: -41px;
  padding: 6px 22px;
  color: var(--pill-text, var(--blue-900));
  background: var(--pill-bg, #dcecff);
  border: 3px solid #fff;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.guide-card--featured .role-pill {
  margin: 0 0 13px;
  border-width: 2px;
  font-size: 1.03rem;
}

.role-pill span {
  font-size: 1.08rem;
}

.guide-details h2,
.guide-details h3 {
  margin: 10px 0 5px;
  color: var(--blue-950);
  font-family: "Fredoka", "Arial Rounded MT Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1;
}

.guide-details h2 {
  font-size: clamp(2rem, 2.5vw, 2.65rem);
}

.guide-details h3 {
  font-size: clamp(1.45rem, 1.8vw, 2rem);
}

.guide-description {
  margin: 8px 0 17px;
  color: var(--blue-900);
  font-weight: 700;
  line-height: 1.35;
  text-wrap: balance;
}

.guide-card--featured .guide-description {
  max-width: 260px;
  font-size: 1.04rem;
}

.guide-actions {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.chat-button {
  min-height: 52px;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  color: #fff;
  background: linear-gradient(180deg, #0a91ec, #0765d4);
  border-radius: 14px;
  box-shadow: 0 8px 16px rgba(7, 101, 212, .2);
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 900;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

.chat-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #087fd4, #054fb5);
  box-shadow: 0 11px 20px rgba(7, 101, 212, .28);
}

.favorite-button {
  width: 51px;
  height: 51px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--favorite, var(--sport));
  background: #fff;
  border: 2px solid currentColor;
  border-radius: 14px;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  transition: transform .16s ease, color .16s ease, background .16s ease;
}

.favorite-button:hover {
  transform: scale(1.06) rotate(-4deg);
}

.favorite-button[aria-pressed="true"] {
  color: #fff;
  background: var(--favorite, var(--sport));
}

.prompt-link {
  grid-column: 1 / -1;
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 16px 14px;
  padding: 10px 16px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(244, 63, 122, .18);
  border-radius: 15px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .16s ease, background .16s ease;
}

.prompt-link:hover {
  transform: translateX(3px);
  background: #fff;
}

.prompt-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--pink);
  border-radius: 50%;
  font-size: 1rem;
}

.all-guides-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.all-guides-grid[hidden] {
  display: none;
}

.all-guides-grid .guide-card {
  min-height: 445px;
  display: flex;
  flex-direction: column;
}

.all-guides-grid .guide-details {
  flex: 1;
}

.all-guides-grid .guide-description {
  min-height: 44px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.loading-card {
  min-height: 468px;
  border: 5px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius-md);
  background: linear-gradient(100deg, rgba(255,255,255,.52) 24%, rgba(255,255,255,.94) 37%, rgba(255,255,255,.52) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

.no-results {
  max-width: 570px;
  margin: 12px auto 0;
  padding: 45px 24px;
  text-align: center;
  background: rgba(255, 255, 255, .9);
  border: 4px solid #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.no-results > span {
  font-size: 2.8rem;
}

.no-results h2 {
  margin: 8px 0 2px;
  font-family: "Fredoka", sans-serif;
}

.no-results p {
  margin: 0 0 16px;
  color: var(--muted);
}

.no-results button,
.dialog-primary {
  padding: 11px 22px;
  color: #fff;
  background: var(--blue-700);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
}

.gallery-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-top: 15px;
}

.safety-note {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--blue-900);
  font-weight: 800;
}

.safety-note svg {
  width: 32px;
  flex: 0 0 auto;
}

.more-guides-button {
  min-width: 360px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 30px;
  color: var(--blue-700);
  background: rgba(255, 255, 255, .92);
  border: 2px solid var(--blue-600);
  border-radius: 17px;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
  transition: transform .16s ease, color .16s ease, background .16s ease;
}

.more-guides-button span:first-child {
  font-size: 1.8rem;
  line-height: 1;
}

.more-guides-button:hover {
  color: #fff;
  background: var(--blue-700);
  transform: translateY(-2px);
}

.grownups-dialog {
  width: min(90vw, 570px);
  padding: 0;
  color: var(--blue-950);
  background: #fff;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(4, 22, 70, .42);
}

.grownups-dialog::backdrop {
  background: rgba(4, 22, 70, .62);
  backdrop-filter: blur(5px);
}

.grownups-dialog form {
  position: relative;
  padding: 34px;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0 0 3px;
  color: var(--blue-900);
  background: #eef6fb;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
}

.dialog-icon {
  font-size: 2.4rem;
}

.grownups-dialog h2 {
  margin: 4px 0 8px;
  font-family: "Fredoka", sans-serif;
  font-size: 2rem;
}

.grownups-dialog p,
.grownups-dialog li {
  color: #35456c;
  line-height: 1.55;
}

.grownups-dialog ul {
  padding-left: 22px;
}

.dialog-primary {
  width: 100%;
  margin-top: 8px;
}

.sky-decoration {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.star {
  position: absolute;
  color: rgba(255, 255, 255, .94);
  text-shadow: 0 0 10px rgba(255, 255, 255, .75);
  animation: twinkle 3s ease-in-out infinite;
}

.star-1 { top: 28px; left: 29%; font-size: 18px; }
.star-2 { top: 54px; left: 52%; font-size: 13px; animation-delay: -.8s; }
.star-3 { top: 28px; right: 19%; font-size: 17px; animation-delay: -1.3s; }
.star-4 { top: 145px; left: 14%; font-size: 14px; animation-delay: -2.1s; }
.star-5 { top: 130px; right: 9%; font-size: 15px; animation-delay: -.35s; }
.star-6 { top: 72px; left: 7%; font-size: 17px; }
.star-7 { top: 98px; right: 37%; font-size: 17px; }

@keyframes twinkle {
  0%, 100% { opacity: .58; transform: scale(.88); }
  50% { opacity: 1; transform: scale(1.15); }
}

.cloud {
  position: absolute;
  width: 125px;
  height: 55px;
  top: 160px;
  background: rgba(235, 250, 255, .72);
  border-radius: 999px;
  filter: blur(.2px);
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: inherit;
  border-radius: 50%;
}

.cloud::before {
  width: 95px;
  height: 95px;
  left: -25px;
}

.cloud::after {
  width: 80px;
  height: 80px;
  right: -35px;
}

.cloud-left {
  left: -50px;
  box-shadow: 90px 36px 0 rgba(235, 250, 255, .72), 180px 70px 0 rgba(235, 250, 255, .68);
}

.cloud-right {
  right: -42px;
  box-shadow: -85px 34px 0 rgba(235, 250, 255, .72), -170px 70px 0 rgba(235, 250, 255, .65);
}

@media (max-width: 1330px) {
  .hero-inner {
    width: min(100% - 32px, 1180px);
  }

  .featured-layout {
    grid-template-columns: minmax(470px, 1.25fr) repeat(3, minmax(180px, .55fr));
  }

  .guide-card--featured {
    grid-template-columns: 53% 47%;
  }

  .guide-card--featured .guide-visual img {
    height: 315px;
  }

  .filter-chip {
    padding-inline: 20px;
  }
}

@media (max-width: 1080px) {
  .hero-inner {
    padding-top: 28px;
  }

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

  .guide-card--featured {
    grid-column: 1 / -1;
    min-height: 390px;
    grid-template-columns: minmax(340px, 1fr) 1fr;
  }

  .guide-card--featured .guide-visual img {
    height: 300px;
  }

  .guide-card--featured .guide-details {
    padding-right: 40px;
  }

  .all-guides-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .header-inner {
    width: min(100% - 28px, 760px);
    min-height: 78px;
  }

  .brand {
    gap: 10px;
    font-size: 1.65rem;
  }

  .brand-mark {
    width: 43px;
  }

  .grownups-button {
    min-height: 47px;
    padding-inline: 14px;
  }

  .hero {
    min-height: calc(100vh - 78px);
  }

  .hero-inner {
    width: min(100% - 24px, 760px);
  }

  h1 {
    font-size: clamp(2.2rem, 8vw, 3.15rem);
  }

  .search input {
    height: 61px;
  }

  .filters {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 4px 10px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter-chip {
    flex: 0 0 auto;
    min-height: 49px;
    scroll-snap-align: start;
  }

  .featured-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .guide-card--featured {
    grid-column: 1 / -1;
  }

  .featured-layout > .guide-card:not(.guide-card--featured):last-child {
    grid-column: 1 / -1;
  }

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

  .gallery-footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .safety-note {
    grid-row: 2;
  }

  .footer-spacer {
    display: none;
  }
}

@media (max-width: 590px) {
  .header-inner {
    width: min(100% - 20px, 560px);
  }

  .brand {
    font-size: 1.28rem;
  }

  .brand-mark {
    width: 38px;
  }

  .grownups-button {
    min-width: 46px;
    min-height: 44px;
    padding-inline: 10px;
    border-radius: 13px;
  }

  .grownups-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
  }

  .grownups-button svg {
    width: 25px;
  }

  .hero-inner {
    width: min(100% - 18px, 560px);
    padding-top: 23px;
  }

  h1 {
    margin-bottom: 17px;
    font-size: clamp(2.1rem, 10.5vw, 2.75rem);
    line-height: 1.03;
  }

  .search-icon {
    left: 18px;
    width: 27px;
  }

  .search input {
    height: 57px;
    padding-left: 57px;
    font-size: 1.05rem;
  }

  .filter-chip {
    min-height: 46px;
    padding-inline: 17px;
    font-size: .94rem;
  }

  .featured-layout,
  .all-guides-grid {
    grid-template-columns: 1fr;
  }

  .featured-layout > .guide-card:not(.guide-card--featured):last-child {
    grid-column: auto;
  }

  .guide-card--featured {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .guide-card--featured .guide-visual {
    min-height: 300px;
    padding-top: 58px;
  }

  .guide-card--featured .guide-visual img {
    height: 270px;
  }

  .guide-card--featured .guide-details {
    align-items: center;
    padding: 18px 18px 14px;
    text-align: center;
  }

  .guide-card--featured .guide-description {
    max-width: 330px;
  }

  .guide-card--featured .role-pill {
    margin-top: -40px;
  }

  .prompt-link {
    min-height: 58px;
    margin: 0 12px 12px;
  }

  .guide-visual img {
    height: 230px;
  }

  .more-guides-button {
    width: 100%;
    min-width: 0;
  }

  .safety-note {
    font-size: .94rem;
  }

  .grownups-dialog form {
    padding: 28px 22px 24px;
  }
}

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