:root {
  --brand-ink: #12263a;
  --brand-primary: #155e75;
  --brand-primary-deep: #123f52;
  --brand-accent: #c79a3b;
  --brand-paper: #f5f2ea;
  --brand-surface: #fff;
  --brand-muted: #e4e9e8;
  --brand-text: #263746;
  --brand-subtle: #607487;
  --brand-on-primary: #fff;
  --shadow-sm: 0 1px 2px rgb(18 38 58 / 7%), 0 5px 16px rgb(18 38 58 / 5%);
  --shadow-md: 0 18px 50px rgb(18 38 58 / 13%);
  --radius: .35rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-paper), white 30%), var(--brand-paper));
  color: var(--brand-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  margin: 0;
}

a { color: var(--brand-primary); text-underline-offset: .2em; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--brand-accent);
  outline-offset: 3px;
}

.container {
  margin-inline: auto;
  max-width: 1220px;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.skip-link {
  background: var(--brand-surface);
  color: var(--brand-ink);
  left: 1rem;
  padding: .75rem 1rem;
  position: fixed;
  top: -10rem;
  z-index: 100;
}

.skip-link:focus { top: 1rem; }

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

.prototype-notice {
  background: color-mix(in srgb, var(--brand-accent), white 66%);
  color: color-mix(in srgb, var(--brand-ink), black 15%);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .02em;
  padding: .38rem 1rem;
  text-align: center;
}

.topbar {
  background: var(--brand-ink);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  color: var(--brand-on-primary);
  font-size: .75rem;
  letter-spacing: .045em;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  padding-block: .5rem;
}

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

.site-header {
  background: var(--brand-surface);
  border-bottom: 1px solid var(--brand-muted);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 20;
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: 1.35rem;
  justify-content: space-between;
  min-height: 92px;
}

.brand {
  align-items: center;
  color: var(--brand-ink);
  display: flex;
  gap: .8rem;
  min-width: 16rem;
  text-decoration: none;
}

.brand__logo {
  height: 62px;
  object-fit: contain;
  width: 62px;
}

.brand__text strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.05;
}

.brand__text small {
  color: var(--brand-subtle);
  display: block;
  font-size: .69rem;
  letter-spacing: .025em;
  margin-top: .25rem;
  max-width: 210px;
}

.main-nav {
  display: flex;
  font-size: .86rem;
  font-weight: 720;
  gap: .2rem;
}

.main-nav a {
  border-bottom: 2px solid transparent;
  color: var(--brand-ink);
  padding: .65rem .45rem;
  text-decoration: none;
}

.main-nav a:hover {
  border-bottom-color: var(--brand-accent);
  color: var(--brand-primary);
}

.header-search { display: flex; }

.header-search input {
  background: var(--brand-surface);
  border: 1px solid color-mix(in srgb, var(--brand-subtle), white 40%);
  border-radius: var(--radius) 0 0 var(--radius);
  max-width: 118px;
  padding: .58rem;
}

.header-search button {
  background: var(--brand-primary);
  border: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--brand-on-primary);
  padding: .58rem .72rem;
}

.mobile-nav { display: none; position: relative; }

.mobile-nav summary {
  border: 1px solid var(--brand-muted);
  border-radius: var(--radius);
  color: var(--brand-ink);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
  padding: .55rem .75rem;
}

.mobile-nav summary::-webkit-details-marker { display: none; }

.mobile-nav nav {
  background: var(--brand-surface);
  border: 1px solid var(--brand-muted);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: grid;
  min-width: 250px;
  padding: .6rem;
  position: absolute;
  right: 0;
  top: calc(100% + .5rem);
  z-index: 30;
}

.mobile-nav nav a {
  border-radius: .2rem;
  color: var(--brand-ink);
  padding: .65rem;
  text-decoration: none;
}

.mobile-nav nav a:hover { background: var(--brand-muted); }

.hero,
.page-hero {
  background: linear-gradient(105deg, var(--brand-ink), var(--brand-primary-deep) 58%, var(--brand-primary));
  color: var(--brand-on-primary);
  overflow: hidden;
  position: relative;
}

.hero::before,
.page-hero::before {
  background-image:
    linear-gradient(135deg, rgb(255 255 255 / 3%) 25%, transparent 25%),
    linear-gradient(315deg, rgb(255 255 255 / 3%) 25%, transparent 25%);
  background-position: 0 0, 22px 22px;
  background-size: 44px 44px;
  content: "";
  inset: 0;
  position: absolute;
}

.hero::after,
.page-hero::after {
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 50%;
  content: "";
  height: 36rem;
  position: absolute;
  right: -11rem;
  top: -18rem;
  width: 36rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .85fr);
  min-height: 580px;
  position: relative;
  z-index: 2;
}

.hero__content {
  align-self: center;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.hero h1,
.page-hero h1 {
  color: var(--brand-on-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 5.35rem);
  letter-spacing: -.025em;
  line-height: 1.02;
  margin: .45rem 0 1.25rem;
  max-width: 13ch;
}

.hero__lead {
  color: rgb(255 255 255 / 86%);
  font-size: 1.22rem;
  max-width: 650px;
}

.hero__visual {
  min-height: 100%;
  position: relative;
}

.hero__visual > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.hero__visual::before {
  background:
    linear-gradient(90deg, var(--brand-primary-deep), transparent 42%),
    linear-gradient(0deg, rgb(18 38 58 / 58%), transparent 58%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero__note {
  backdrop-filter: blur(12px);
  background: rgb(255 255 255 / 9%);
  border: 1px solid rgb(255 255 255 / 17%);
  bottom: 2.2rem;
  color: var(--brand-on-primary);
  max-width: 18rem;
  padding: 1rem 1.1rem;
  position: absolute;
  right: 1rem;
  z-index: 2;
}

.hero__note strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.3;
}

.eyebrow,
.card__kicker {
  font-size: .71rem;
  font-weight: 820;
  letter-spacing: .18em;
  margin: 0;
  text-transform: uppercase;
}

.eyebrow {
  color: color-mix(in srgb, var(--brand-accent), white 35%);
}

.card__kicker {
  color: var(--brand-primary);
}

.eyebrow--dark { color: var(--brand-primary); }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.button {
  background: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  border-radius: var(--radius);
  color: var(--brand-on-primary);
  display: inline-block;
  font-weight: 760;
  padding: .78rem 1.15rem;
  text-decoration: none;
}

.button:hover { background: var(--brand-primary-deep); }

.button--outline {
  background: transparent;
  border-color: rgb(255 255 255 / 75%);
}

.quick-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -2.25rem;
  position: relative;
  z-index: 4;
}

.card,
.news-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-muted);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card {
  border-top: 4px solid var(--brand-accent);
  padding: 1.65rem;
}

.card:hover,
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  transition: .2s;
}

.card h2,
.card h3 {
  color: var(--brand-ink);
  font-family: Georgia, "Times New Roman", serif;
  margin: .55rem 0;
}

.card a { font-weight: 750; }

.place-story {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--brand-paper), white 32%), var(--brand-paper));
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.place-story__grid {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
}

.place-story__copy h2 {
  color: var(--brand-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -.025em;
  line-height: 1.04;
  margin: .5rem 0 1.4rem;
}

.place-story__copy > p:not(.eyebrow) {
  font-size: 1.08rem;
  max-width: 35rem;
}

.place-story__archive {
  border-left: 3px solid var(--brand-accent);
  color: var(--brand-subtle);
  font-size: .83rem !important;
  margin-top: 2rem;
  padding-left: 1rem;
}

.place-story__visual {
  min-height: 450px;
  position: relative;
}

.place-story figure {
  margin: 0;
  overflow: hidden;
}

.place-story figure img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.place-story figcaption {
  background: var(--brand-ink);
  bottom: 0;
  color: var(--brand-on-primary);
  font-size: .72rem;
  font-weight: 750;
  left: 0;
  letter-spacing: .06em;
  padding: .55rem .8rem;
  position: absolute;
  text-transform: uppercase;
}

.place-story__territory {
  box-shadow: var(--shadow-md);
  height: 360px;
  margin-left: 10% !important;
  position: relative;
  width: 90%;
}

.place-story__chamber {
  border: 8px solid var(--brand-surface);
  bottom: 0;
  box-shadow: var(--shadow-md);
  height: 190px;
  left: 0;
  position: absolute;
  width: 58%;
}

.section { padding-block: clamp(4rem, 8vw, 7rem); }

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.7rem;
}

.section-heading h2,
.section h2 {
  color: var(--brand-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: .35rem 0;
}

.news-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(3, 1fr);
}

.news-card img,
.news-card__placeholder {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.news-card img { object-fit: cover; }

.news-card__placeholder {
  align-items: center;
  background: linear-gradient(145deg, var(--brand-muted), color-mix(in srgb, var(--brand-muted), white 55%));
  color: color-mix(in srgb, var(--brand-primary), transparent 72%);
  display: flex;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  justify-content: center;
}

.news-card__body { padding: 1.4rem; }

.news-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.2;
}

.news-card h3 a { color: var(--brand-ink); text-decoration: none; }

.meta {
  color: var(--brand-subtle);
  font-size: .72rem;
  font-weight: 760;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.read-more { font-weight: 750; }

.documents-band {
  background: color-mix(in srgb, var(--brand-ink), var(--brand-primary) 18%);
  color: var(--brand-on-primary);
  padding-block: 5.5rem;
}

.documents-band h2,
.documents-band a { color: var(--brand-on-primary); }

.document-list { border-top: 1px solid rgb(255 255 255 / 18%); }

.document-row {
  align-items: center;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.document-row h3 { margin: .2rem 0; }
.document-row h3 a { color: inherit; text-decoration: none; }
.document-row p { margin: .2rem 0; }
.document-row__action { font-size: 1.5rem; text-decoration: none; }

.continuity-band {
  background: var(--brand-surface);
  border-bottom: 1px solid var(--brand-muted);
  border-top: 1px solid var(--brand-muted);
  padding-block: 4.5rem;
}

.continuity-grid {
  align-items: start;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.5fr 1fr 1fr;
}

.continuity-grid h2 {
  color: var(--brand-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: .4rem 0;
}

.continuity-item {
  border-left: 3px solid var(--brand-accent);
  padding-left: 1.2rem;
}

.continuity-item strong {
  color: var(--brand-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.page-hero .container {
  padding-block: clamp(3.8rem, 8vw, 6.5rem);
  position: relative;
  z-index: 2;
}

.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
.page-hero p { font-size: 1.1rem; max-width: 720px; }

.page-hero--light {
  background: color-mix(in srgb, var(--brand-muted), white 35%);
  color: var(--brand-text);
}

.page-hero--light::after { border-color: color-mix(in srgb, var(--brand-primary), transparent 86%); }
.page-hero--light h1 { color: var(--brand-ink); }

.article-detail {
  max-width: 840px;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.article-detail h1 {
  color: var(--brand-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -.025em;
  line-height: 1.06;
}

.article-detail__date { color: var(--brand-subtle); }
.article-detail__lead { font-size: 1.25rem; font-weight: 550; }

.article-detail__image {
  border-radius: var(--radius);
  margin: 1rem 0 2rem;
  max-height: 620px;
  object-fit: cover;
  width: 100%;
}

.prose { font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; }
.prose p { margin: 0 0 1.35rem; }
.page-content { max-width: 840px; padding-block: 4.5rem; }

.section-children {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--brand-primary), transparent 78%);
}

.section-children__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.section-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.4rem;
  border: 1px solid color-mix(in srgb, var(--brand-primary), transparent 80%);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgb(18 38 58 / 8%);
}

.section-child h2 {
  margin: 0;
  font-size: 1.35rem;
}

.section-child h2 a {
  color: var(--brand-ink);
  text-decoration: none;
}

.section-child p {
  flex: 1;
  font-size: .98rem;
}

.section-child__link {
  font-weight: 750;
}

.archive-hero {
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--brand-ink), transparent 6%), color-mix(in srgb, var(--brand-primary), transparent 10%)),
    url("../img/heredadas/portada-recinto.webp") center / cover;
}

.archive-intro {
  max-width: 820px;
  padding-bottom: 2.5rem;
  padding-top: 3rem;
}

.archive-collections {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 6rem;
}

.archive-collection-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-muted);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgb(18 38 58 / 8%);
  overflow: hidden;
}

.archive-collection-card__visual {
  background: var(--brand-muted);
  display: block;
  height: 220px;
}

.archive-collection-card__visual img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.archive-collection-card__placeholder {
  align-items: center;
  color: var(--brand-primary);
  display: flex;
  font-size: 4rem;
  height: 100%;
  justify-content: center;
}

.archive-collection-card__body { padding: 1.4rem; }
.archive-collection-card h2 { margin: .25rem 0 .8rem; }
.archive-collection-card h2 a { color: var(--brand-ink); text-decoration: none; }

.archive-collection-copy {
  max-width: 900px;
  padding-block: 3rem 1rem;
}

.archive-grid {
  column-count: 3;
  column-gap: 1.25rem;
  padding-bottom: 6rem;
}

.archive-item {
  background: var(--brand-surface);
  border: 1px solid var(--brand-muted);
  border-radius: var(--radius);
  break-inside: avoid;
  display: inline-block;
  margin: 0 0 1.25rem;
  overflow: hidden;
  width: 100%;
}

.archive-item--image img {
  display: block;
  height: auto;
  width: 100%;
}

.archive-item figcaption { padding: 1rem 1.1rem 1.2rem; }
.archive-item figcaption strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; }
.archive-item figcaption span { color: var(--brand-subtle); display: block; font-size: .82rem; margin-top: .25rem; }
.archive-item figcaption p { font-size: .9rem; }
.archive-item figcaption a { display: block; margin-top: .45rem; width: fit-content; }

.archive-item--file {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  padding: 1.3rem;
}

.archive-file-mark {
  background: var(--brand-primary);
  border-radius: var(--radius);
  color: white;
  font-size: .76rem;
  font-weight: 800;
  padding: .75rem .6rem;
}

.archive-item--file h2 { font-size: 1.25rem; margin: .25rem 0 .75rem; }

.source-box,
.empty-file,
.empty-state {
  background: color-mix(in srgb, var(--brand-muted), white 42%);
  border-left: 4px solid var(--brand-primary);
  margin-top: 2.5rem;
  padding: 1rem 1.2rem;
}

.filters {
  align-items: end;
  background: var(--brand-surface);
  border: 1px solid var(--brand-muted);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.2rem;
}

.filters label { font-size: .8rem; font-weight: 750; }

.filters input,
.filters select {
  background: var(--brand-surface);
  border: 1px solid color-mix(in srgb, var(--brand-subtle), white 40%);
  border-radius: var(--radius);
  display: block;
  margin-top: .3rem;
  min-height: 42px;
  padding: .5rem;
}

.document-list--light { border-color: var(--brand-muted); }
.document-list--light .document-row { border-color: var(--brand-muted); }
.document-list--light .document-row h3 a { color: var(--brand-ink); }

.people-grid,
.commission-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
}

.person-card {
  background: var(--brand-surface);
  border: 1px solid var(--brand-muted);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.person-card img,
.person-card__placeholder {
  border-radius: 50%;
  height: 110px;
  margin: auto;
  object-fit: cover;
  width: 110px;
}

.person-card__placeholder {
  align-items: center;
  background: var(--brand-muted);
  color: var(--brand-primary);
  display: flex;
  font-family: Georgia, serif;
  font-size: 2rem;
  justify-content: center;
}

.person-card h3 {
  color: var(--brand-ink);
  font-family: Georgia, serif;
  margin-bottom: .2rem;
}

.person-card p { margin: .2rem; }

.large-search {
  display: flex;
  gap: .6rem;
  margin-top: 1.5rem;
  max-width: 760px;
}

.large-search input {
  border: 1px solid color-mix(in srgb, var(--brand-subtle), white 40%);
  border-radius: var(--radius);
  flex: 1;
  font-size: 1rem;
  padding: .8rem;
}

.search-results article { border-bottom: 1px solid var(--brand-muted); padding: 1.2rem 0; }
.search-results span { color: var(--brand-primary); font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.search-results h3 { margin: .2rem 0; }

.site-footer {
  background: var(--brand-ink);
  border-top: 5px solid var(--brand-accent);
  color: var(--brand-on-primary);
  margin-top: 4rem;
  padding-top: 4rem;
}

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

.footer-brand { display: flex; gap: 1rem; }
.footer-brand img { height: 64px; width: 64px; }
.site-footer h2, .site-footer h3, .site-footer a { color: var(--brand-on-primary); }
.site-footer h2 { margin-top: 0; }
.site-footer ul { list-style: none; padding: 0; }

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 18%);
  display: flex;
  font-size: .76rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-block: 1.2rem;
}

@media (max-width: 1050px) {
  .main-nav, .header-search { display: none; }
  .mobile-nav { display: block; }
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual { min-height: 20rem; }
  .place-story__grid { grid-template-columns: 1fr; }
  .news-grid, .people-grid, .commission-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-collections { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .archive-grid { column-count: 2; }
}

@media (max-width: 720px) {
  .topbar { display: none; }
  .brand { min-width: 0; }
  .brand__logo { height: 52px; width: 52px; }
  .brand__text small { display: none; }
  .hero__content { padding-block: 4rem; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 3.8rem); }
  .hero__visual { min-height: 15rem; }
  .quick-grid { grid-template-columns: 1fr; margin-top: 1rem; }
  .place-story__visual { display: grid; gap: 1rem; min-height: auto; }
  .place-story__territory,
  .place-story__chamber {
    border: 0;
    height: 13rem;
    margin: 0 !important;
    position: relative;
    width: 100%;
  }
  .news-grid, .people-grid, .commission-grid, .footer-grid, .continuity-grid { grid-template-columns: 1fr; }
  .archive-collections { grid-template-columns: 1fr; }
  .archive-grid { column-count: 1; }
  .section-children__grid { grid-template-columns: 1fr; }
  .section-heading { align-items: start; display: block; }
  .page-hero .container { padding-block: 3rem; }
  .large-search { display: block; }
  .large-search input { margin-bottom: .7rem; width: 100%; }
  .footer-bottom { display: grid; gap: .4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
