:root {
  --paper: #f5efe3;
  --paper-deep: #e8decc;
  --ink: #171511;
  --muted: #71695d;
  --line: rgba(23, 21, 17, 0.16);
  --red: #9f321f;
  --red-dark: #7b2519;
  --gold: #d59a27;
  --green: #264b3d;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(33, 25, 15, 0.14);
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(213, 154, 39, 0.10), transparent 26rem),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.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;
  left: 1rem;
  top: 1rem;
  transform: translateY(-150%);
  padding: .7rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.reading-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}
.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
}

.announcement {
  background: var(--ink);
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  letter-spacing: .04em;
}
.announcement__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.announcement p { margin: 0; }
.announcement a { color: white; font-weight: 700; }

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(245, 239, 227, .94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-stuck {
  position: sticky;
  top: 0;
  box-shadow: 0 12px 30px rgba(20, 16, 10, .08);
}
.site-header.is-stuck .announcement { display: none; }
.masthead {
  min-height: 108px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  justify-self: center;
}
.brand__mark {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.6;
  stroke-linecap: round;
}
.brand__mark circle:last-child { fill: var(--gold); stroke: none; }
.brand__text { display: grid; line-height: .9; }
.brand__text strong,
.brand__text em {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 700;
}
.brand__text strong { font-size: 1.25rem; letter-spacing: .02em; }
.brand__text em { color: var(--red); font-size: 1.82rem; }
.masthead__actions { justify-self: end; display: flex; align-items: center; gap: .75rem; }
.icon-button {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: .55rem;
  display: inline-grid;
  place-items: center;
}
.icon-button svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.menu-toggle { display: none; justify-self: start; width: 44px; height: 44px; }
.menu-toggle span { width: 23px; height: 1.5px; background: currentColor; display: block; transition: .25s ease; }
.menu-toggle span + span { margin-top: 7px; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.25rem;
  background: var(--red);
  color: white;
  border: 1px solid var(--red);
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { background: var(--red-dark); transform: translateY(-2px); }
.button--small { min-height: 40px; padding: .55rem 1rem; font-size: .86rem; }
.button--light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.button--light:hover { background: white; }
.primary-nav { border-top: 1px solid var(--line); }
.primary-nav__inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 3vw, 3rem);
}
.primary-nav a {
  position: relative;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -17px;
  height: 2px;
  background: var(--red);
  transition: right .2s ease;
}
.primary-nav a:hover::after,
.primary-nav a.is-active::after { right: 0; }
.search-panel { border-top: 1px solid var(--line); background: var(--white); }
.search-panel__inner { padding: 2rem 0 2.3rem; }
.search-panel label { display: block; font-family: var(--serif); font-size: 1.4rem; font-weight: 700; margin-bottom: .8rem; }
.search-field { display: flex; border-bottom: 2px solid var(--ink); }
.search-field input { flex: 1; border: 0; background: transparent; padding: .8rem 0; font-size: 1.15rem; outline: 0; }
.search-field button { border: 0; background: transparent; font-weight: 800; cursor: pointer; }
.search-hint { margin: .75rem 0 0; color: var(--muted); font-size: .86rem; }

.hero { padding: clamp(2.5rem, 6vw, 6.5rem) 0 clamp(4rem, 7vw, 7rem); }
.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(360px, .86fr);
  min-height: 620px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card__media { position: relative; overflow: hidden; }
.hero-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17, 12, 8, .22));
}
.hero-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.hero-card__media:hover img { transform: scale(1.035); }
.hero-card__edition {
  position: absolute;
  z-index: 2;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: .5rem .7rem;
  color: white;
  border: 1px solid rgba(255,255,255,.7);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
}
.hero-card__content {
  padding: clamp(2rem, 4vw, 4.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line);
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
}
.eyebrow span { color: var(--red); }
.hero-card h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.8vw, 5.1rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero-card__dek {
  margin: 1.7rem 0 0;
  color: #4b453d;
  font-family: var(--serif);
  font-size: clamp(1.03rem, 1.4vw, 1.22rem);
  line-height: 1.65;
}
.hero-card__footer { margin-top: auto; padding-top: 2rem; display: flex; justify-content: space-between; gap: 1rem; align-items: end; }
.hero-card__footer p { margin: 0; color: var(--muted); font-size: .76rem; max-width: 11rem; text-align: right; }
.text-link { display: inline-flex; align-items: center; gap: .45rem; font-weight: 800; border-bottom: 1px solid currentColor; padding-bottom: .15rem; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.story-strip { padding-bottom: clamp(5rem, 8vw, 9rem); }
.section-heading { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 2.3rem; }
.section-heading--line { padding-top: 2rem; border-top: 1px solid var(--ink); }
.kicker { margin: 0 0 .55rem; color: var(--red); font-size: .7rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.section-heading h2,
.quote-break blockquote,
.dispatch h2,
.newsletter h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -.035em;
}
.section-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.55rem); line-height: 1; }
.section-heading__intro { max-width: 32rem; margin: 0; color: var(--muted); }
.story-grid--featured { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 1.5rem; }
.story-card { position: relative; }
.story-card__image { display: block; position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--paper-deep); }
.story-card--large .story-card__image { aspect-ratio: 4 / 3.55; }
.story-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; filter: saturate(.88) contrast(1.02); }
.story-card:hover .story-card__image img { transform: scale(1.035); }
.story-card__number {
  position: absolute;
  top: .85rem;
  right: .85rem;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: white;
  background: rgba(20, 15, 10, .72);
  font-family: var(--serif);
  font-size: .8rem;
}
.story-card__body { position: relative; padding: 1.25rem 3rem 0 0; }
.story-card__body h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.5rem, 2.2vw, 2.25rem); line-height: 1.12; letter-spacing: -.03em; }
.story-card:not(.story-card--large) .story-card__body h3 { font-size: clamp(1.35rem, 1.7vw, 1.72rem); }
.story-card__body h3 a:hover { color: var(--red); }
.story-card__body > p:not(.eyebrow) { margin: .9rem 0 0; color: var(--muted); font-size: .92rem; }
.arrow-link {
  position: absolute;
  right: 0;
  top: 1.25rem;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: background .2s ease, color .2s ease;
}
.arrow-link:hover { color: white; background: var(--red); }

.quote-break {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background: var(--green);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-break::before,
.quote-break::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  width: 38rem;
  height: 38rem;
}
.quote-break::before { left: -24rem; top: -19rem; }
.quote-break::after { right: -24rem; bottom: -22rem; }
.quote-break__inner { max-width: 930px; position: relative; z-index: 2; }
.quote-break .kicker { color: #e8b65a; }
.quote-break blockquote { margin: 1rem 0 1.4rem; font-size: clamp(2.35rem, 5.4vw, 5.2rem); line-height: 1.06; }
.quote-break__inner > p:last-child { margin: 0; color: rgba(255,255,255,.72); }

.places { padding: clamp(5rem, 9vw, 9rem) 0; }
.filter-bar { display: flex; gap: .65rem; flex-wrap: wrap; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); margin-bottom: 2rem; }
.filter-bar button { border: 1px solid var(--line); background: transparent; padding: .65rem 1rem; cursor: pointer; font-size: .82rem; font-weight: 800; }
.filter-bar button:hover,
.filter-bar button.is-active { background: var(--ink); color: white; border-color: var(--ink); }
.place-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.5rem; }
.place-card { min-height: 420px; background: #ddd2bf; position: relative; overflow: hidden; }
.place-card:first-child { grid-column: span 7; }
.place-card:nth-child(2) { grid-column: span 5; }
.place-card:nth-child(3) { grid-column: span 5; }
.place-card:nth-child(4) { grid-column: span 7; }
.place-card > a { display: flex; flex-direction: column; width: 100%; height: 100%; }
.place-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.place-card:hover img { transform: scale(1.04); }
.place-card__overlay { position: relative; z-index: 2; margin-top: auto; padding: 4.5rem 2rem 2rem; color: white; background: linear-gradient(transparent, rgba(15,12,9,.88)); }
.place-card__overlay p,
.place-card__caption p { margin: 0 0 .5rem; text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 800; }
.place-card__overlay h3,
.place-card__caption h3,
.place-card--text h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 3rem); line-height: 1.08; letter-spacing: -.03em; }
.place-card__overlay span,
.place-card__caption span { display: inline-block; margin-top: 1.1rem; font-weight: 800; }
.place-card--text { background: var(--paper-deep); }
.place-card--text > a { padding: 1.8rem; justify-content: space-between; }
.place-card--text .place-card__index { margin: 0; font-family: var(--serif); font-style: italic; color: var(--muted); }
.place-card--text h3 { font-size: clamp(1.9rem, 3.2vw, 3.3rem); }
.place-card--text div > p:last-child { color: var(--muted); }
.place-card__cta { font-weight: 800; }
.place-card--accent { background: var(--red); color: white; }
.place-card--accent .place-card__index,
.place-card--accent div > p:last-child,
.place-card--accent .eyebrow { color: rgba(255,255,255,.73); }
.place-card--image-small { min-height: 420px; }
.place-card__caption { position: relative; z-index: 2; margin-top: auto; padding: 4rem 2rem 2rem; color: white; background: linear-gradient(transparent, rgba(20,14,10,.9)); }
.place-card[hidden] { display: none; }
.filter-empty { text-align: center; color: var(--muted); padding: 3rem; }

.dispatch {
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--red);
  color: white;
  overflow: hidden;
  margin-bottom: clamp(5rem, 9vw, 9rem);
}
.dispatch__visual { position: relative; min-height: 540px; background: #d9a34a; overflow: hidden; }
.dispatch__sun { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: #efc36d; left: 50%; top: 48%; transform: translate(-50%,-50%); }
.dispatch__arch { position: absolute; bottom: -2px; width: 45%; height: 74%; border: 28px solid var(--red); border-bottom: 0; border-radius: 180px 180px 0 0; }
.dispatch__arch--one { left: 2%; }
.dispatch__arch--two { right: 2%; }
.dispatch__line { position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(159,50,31,.42); }
.dispatch__content { padding: clamp(2.5rem, 6vw, 5.6rem); display: flex; flex-direction: column; justify-content: center; }
.dispatch .kicker { color: #f0c86f; }
.dispatch h2 { margin: 0; font-size: clamp(2.6rem, 4.8vw, 4.8rem); line-height: 1; }
.dispatch__content > p:not(.kicker) { max-width: 34rem; color: rgba(255,255,255,.8); font-family: var(--serif); font-size: 1.1rem; }
.dispatch .button { align-self: start; margin-top: 1rem; }

.newsletter { padding: clamp(4.5rem, 8vw, 8rem) 0; background: var(--white); border-top: 1px solid var(--line); }
.newsletter__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 7vw, 7rem); align-items: end; }
.newsletter h2 { margin: 0; font-size: clamp(2.4rem, 4.5vw, 4.5rem); line-height: 1.02; }
.newsletter-form__row { display: flex; border-bottom: 2px solid var(--ink); }
.newsletter-form input { flex: 1; min-width: 0; border: 0; background: transparent; outline: 0; padding: 1rem 0; font-size: 1rem; }
.newsletter-form button { border: 0; background: transparent; font-weight: 900; cursor: pointer; }
.newsletter-form__status { margin: .8rem 0 0; color: var(--muted); font-size: .82rem; }
.newsletter-form__status.is-error { color: var(--red); }
.newsletter-form__status.is-success { color: var(--green); }

.site-footer { background: var(--ink); color: rgba(255,255,255,.72); }
.site-footer__top { padding: 4.5rem 0 3rem; display: grid; grid-template-columns: 1fr 1.2fr 1fr; align-items: center; gap: 2rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand--footer { justify-self: start; color: white; }
.brand--footer .brand__mark { stroke: #f4dfb9; }
.brand--footer .brand__text em { color: #e8b65a; }
.site-footer__top > p { margin: 0; max-width: 31rem; }
.social-links { display: flex; justify-content: end; gap: 1.4rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.social-links a:hover { color: white; }
.site-footer__grid { display: grid; grid-template-columns: repeat(3, 1fr) 2fr; gap: 2rem; padding: 3rem 0; }
.site-footer__grid h3 { margin: 0 0 1rem; color: white; font-size: .78rem; text-transform: uppercase; letter-spacing: .13em; }
.site-footer__grid > div { display: flex; flex-direction: column; gap: .45rem; }
.site-footer__grid a:hover { color: white; }
.site-footer__note p { margin: 0; font-size: .78rem; line-height: 1.7; }
.site-footer__bottom { min-height: 72px; border-top: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: .78rem; }
.site-footer__bottom p { margin: 0; }

.toast {
  position: fixed;
  z-index: 100;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  padding: .8rem 1rem;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: .86rem;
}

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 1000px) {
  .hero-card { grid-template-columns: 1.1fr .9fr; min-height: 540px; }
  .story-grid--featured { grid-template-columns: 1fr 1fr; }
  .story-card--large { grid-column: span 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.5rem; }
  .story-card--large .story-card__image { aspect-ratio: 4/3; }
  .story-card--large .story-card__body { padding-top: 0; align-self: center; }
  .place-card:first-child,
  .place-card:nth-child(4) { grid-column: span 7; }
  .place-card:nth-child(2),
  .place-card:nth-child(3) { grid-column: span 5; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__top > p { grid-column: span 2; }
  .social-links { justify-content: end; }
}

@media (max-width: 780px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .desktop-only { display: none !important; }
  .announcement__inner { justify-content: center; text-align: center; }
  .announcement p { display: none; }
  .masthead { min-height: 82px; grid-template-columns: 48px 1fr 48px; }
  .menu-toggle { display: inline-grid; }
  .brand { gap: .55rem; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__text strong { font-size: 1rem; }
  .brand__text em { font-size: 1.42rem; }
  .primary-nav {
    position: fixed;
    inset: 116px 0 0;
    background: var(--paper);
    transform: translateX(-100%);
    transition: transform .3s ease;
    border-top: 1px solid var(--line);
    overflow-y: auto;
  }
  .site-header.is-stuck .primary-nav { inset: 82px 0 0; }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav__inner { min-height: 100%; padding: 2rem 0 4rem; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0; }
  .primary-nav a { width: 100%; padding: 1rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.8rem; letter-spacing: -.02em; text-transform: none; }
  .primary-nav a::after { display: none; }
  .search-panel { position: fixed; inset: 116px 0 auto; box-shadow: var(--shadow); }
  .site-header.is-stuck .search-panel { inset: 82px 0 auto; }
  .hero { padding-top: 1.2rem; }
  .hero-card { display: block; min-height: 0; }
  .hero-card__media { aspect-ratio: 4/3; }
  .hero-card__content { padding: 2rem 1.4rem; border: 0; }
  .hero-card h1 { font-size: clamp(2.45rem, 12vw, 4rem); }
  .hero-card__footer { margin-top: 2.2rem; align-items: flex-start; flex-direction: column; }
  .hero-card__footer p { text-align: left; max-width: none; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .story-grid--featured { display: block; }
  .story-card,
  .story-card--large { display: block; margin-bottom: 2.5rem; }
  .story-card--large .story-card__body { padding-top: 1.25rem; }
  .quote-break blockquote { font-size: clamp(2.25rem, 10vw, 3.6rem); }
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 1rem; scrollbar-width: none; }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-bar button { flex: 0 0 auto; }
  .place-grid { display: block; }
  .place-card { min-height: 410px; margin-bottom: 1rem; }
  .place-card--text { min-height: 440px; }
  .dispatch { grid-template-columns: 1fr; width: 100%; margin-inline: 0; }
  .dispatch__visual { min-height: 330px; }
  .dispatch__sun { width: 220px; height: 220px; }
  .dispatch__content { min-height: 420px; }
  .newsletter__inner { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__top > p { grid-column: auto; }
  .social-links { justify-content: start; flex-wrap: wrap; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__note { grid-column: span 2; }
}

@media (max-width: 520px) {
  .announcement { font-size: .72rem; }
  .masthead { grid-template-columns: 42px 1fr 42px; }
  .brand__mark { width: 32px; height: 32px; }
  .brand__text strong { font-size: .84rem; }
  .brand__text em { font-size: 1.18rem; }
  .hero-card__media { aspect-ratio: 1/1; }
  .hero-card__edition { left: 1rem; bottom: 1rem; }
  .search-field input { font-size: .95rem; }
  .story-card__body { padding-right: 2.7rem; }
  .section-heading h2 { font-size: 2.35rem; }
  .place-card--text h3 { font-size: 2.25rem; }
  .newsletter-form__row { display: block; border-bottom: 0; }
  .newsletter-form input { width: 100%; border-bottom: 2px solid var(--ink); }
  .newsletter-form button { width: 100%; margin-top: .8rem; padding: .8rem; background: var(--ink); color: white; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__note { grid-column: auto; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 1.2rem 0; }
}

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