:root {
  --ink: #241a3f;
  --ink-soft: #514766;
  --paper: #fffaf3;
  --surface: #ffffff;
  --accent: #e33a72;
  --accent-dark: #b81f52;
  --accent-soft: #ffe2eb;
  --route-open: #d7d1dd;
  --lime: #d9ee66;
  --border: rgba(36, 26, 63, 0.14);
  --shadow: 0 24px 70px rgba(36, 26, 63, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
  color: var(--ink);
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 20px 24px 76px;
  background:
    radial-gradient(circle at 86% 10%, rgba(217, 238, 102, 0.44), transparent 24rem),
    radial-gradient(circle at 5% 68%, rgba(227, 58, 114, 0.19), transparent 25rem),
    var(--ink);
  color: #fff;
}

.hero::after {
  content: "100";
  position: absolute;
  right: -0.04em;
  bottom: -0.32em;
  font-size: clamp(17rem, 40vw, 38rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.11em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto 62px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 750;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-weight: 900;
}

.nav-cta,
.text-link {
  font-weight: 800;
  text-underline-offset: 4px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: end;
  max-width: var(--max-width);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.5rem, 8.5vw, 7.6rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

h1 em {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.15rem, 5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.intro {
  max-width: 670px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

blockquote {
  max-width: 650px;
  margin: 34px 0 0;
  padding: 0 0 0 22px;
  border-left: 4px solid var(--accent);
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  font-weight: 650;
}

blockquote strong {
  color: var(--lime);
}

.hero-actions,
.share-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:focus-visible,
.amount-tile:focus-visible,
.nav-cta:focus-visible,
.text-link:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px rgba(227, 58, 114, 0.32);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}


.hero-side {
  display: grid;
  gap: 20px;
}

.hero-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 46%;
}

.logo-strip {
  padding: 28px 24px 20px;
  background: linear-gradient(180deg, rgba(36,26,63,0.02), rgba(36,26,63,0));
}

.logo-strip-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo-message h2 {
  max-width: 570px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

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

.logo-card {
  display: grid;
  gap: 16px;
  align-content: center;
  justify-items: center;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 34px rgba(36, 26, 63, 0.10);
}

.logo-card-action {
  background: #fff;
  border-top: 5px solid var(--accent);
}

.logo-card-race {
  background:
    radial-gradient(circle at 86% 10%, rgba(217, 238, 102, 0.16), transparent 9rem),
    var(--ink);
  border-color: rgba(255, 255, 255, 0.10);
}

.logo-label {
  justify-self: start;
  width: 100%;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-card-race .logo-label {
  color: rgba(255, 255, 255, 0.68);
}

.logo-image {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.logo-image-action {
  max-height: 175px;
}

.logo-image-race {
  max-height: 155px;
}


.logo-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(36, 26, 63, 0.16);
}

.logo-card:focus-visible {
  outline: 4px solid var(--accent);
  outline-offset: 5px;
}

.logo-card-link {
  justify-self: start;
  width: 100%;
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.logo-card-race .logo-card-link {
  color: rgba(255, 255, 255, 0.88);
}

.race-landscape {
  max-width: calc(var(--max-width) + 48px);
  margin: 34px auto 0;
  padding: 0 24px 18px;
}

.race-landscape-link {
  position: relative;
  display: block;
  overflow: hidden;
  height: clamp(280px, 30vw, 360px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}

.race-landscape-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 13, 39, 0.78) 0%, rgba(20, 13, 39, 0.30) 48%, rgba(20, 13, 39, 0.02) 78%);
  pointer-events: none;
}

.race-landscape-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}

.race-landscape-link:hover img {
  transform: scale(1.025);
}

.race-landscape-link:focus-visible {
  outline: 4px solid var(--accent);
  outline-offset: 5px;
}

.race-landscape-overlay {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 5vw, 64px);
  bottom: clamp(24px, 5vw, 58px);
  display: grid;
  gap: 10px;
  width: min(610px, calc(100% - 48px));
}

.race-landscape-overlay .eyebrow {
  margin: 0;
  color: var(--lime);
}

.race-landscape-overlay strong {
  max-width: 590px;
  font-size: clamp(1.8rem, 3.6vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.race-landscape-overlay small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.progress-card {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.card-label,
.updated {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.amount {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0 16px;
}

.amount strong {
  font-size: clamp(2.55rem, 5vw, 4.4rem);
  letter-spacing: -0.065em;
  line-height: 1;
}

.amount span {
  color: rgba(255, 255, 255, 0.68);
}

.progress-track {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--lime));
  transition: width 600ms cubic-bezier(.2,.8,.2,1);
}

.progress-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.progress-details div {
  display: grid;
  gap: 2px;
}

.progress-details strong {
  font-size: 1.35rem;
}

.progress-details span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.countdown {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 28px -10px 16px;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--lime);
  color: var(--ink);
}

.countdown span:first-child {
  font-size: 2rem;
  font-weight: 950;
}

.countdown span:last-child {
  font-weight: 800;
}

main > section {
  padding: 92px 24px;
}

.map-section,
.amounts-section,
.story-section,
.share-section {
  max-width: calc(var(--max-width) + 48px);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading > p {
  margin: 0;
  color: var(--ink-soft);
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.map-shell {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #ece8ef;
  box-shadow: var(--shadow);
}

#map {
  min-height: 680px;
}

.map-status {
  position: absolute;
  z-index: 600;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(36, 26, 63, 0.18);
  font-weight: 800;
}

.map-status.is-hidden {
  display: none;
}

.map-status.is-error {
  max-width: min(90%, 520px);
  border-radius: 16px;
  color: #881736;
  text-align: center;
}

.map-legend {
  position: absolute;
  z-index: 500;
  bottom: 18px;
  left: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(36, 26, 63, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.map-legend i {
  width: 26px;
  height: 6px;
  border-radius: 999px;
}

.legend-filled {
  background: var(--accent);
}

.legend-open {
  background: var(--route-open);
}

.leaflet-container {
  font: inherit;
  background: #eae5ed;
}

.leaflet-popup-content-wrapper {
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(36, 26, 63, 0.27);
}

.leaflet-popup-content {
  min-width: 260px;
  margin: 0;
}

.segment-popup {
  --segment-state: var(--route-open);
  padding: 19px;
  border-top: 6px solid var(--segment-state);
}

.segment-popup-filled {
  --segment-state: var(--accent);
}

.segment-popup-partial {
  --segment-state: #ef8aab;
}

.segment-popup-open {
  --segment-state: var(--route-open);
}

.segment-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.segment-popup-number {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.segment-popup-status {
  padding: 5px 9px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--segment-state) 18%, white);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.popup-meter {
  height: 8px;
  overflow: hidden;
  margin: 14px 0 12px;
  border-radius: 999px;
  background: #ebe7ee;
}

.popup-meter span {
  display: block;
  min-width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.popup-progress {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.popup-progress strong {
  color: var(--ink);
}

.popup-nameplates {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.popup-nameplate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 11px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #fffaf3;
  font-size: 0.8rem;
}

.popup-nameplate span {
  font-weight: 800;
}

.popup-nameplate strong {
  flex: 0 0 auto;
  color: var(--accent);
}

.popup-nameplate.is-open {
  color: var(--ink-soft);
}

.route-nameplate-tooltip {
  padding: 0;
  border: 0;
  border-radius: 15px;
  background: transparent;
  box-shadow: none;
}

.route-nameplate-tooltip::before {
  display: none;
}

.route-nameplate {
  --nameplate-accent: var(--route-open);
  display: grid;
  min-width: 190px;
  max-width: 250px;
  gap: 3px;
  padding: 12px 14px;
  border-top: 4px solid var(--nameplate-accent);
  border-radius: 14px;
  background: rgba(36, 26, 63, 0.96);
  color: #fff;
  box-shadow: 0 15px 38px rgba(36, 26, 63, 0.32);
  backdrop-filter: blur(8px);
}

.route-nameplate-filled {
  --nameplate-accent: var(--accent);
}

.route-nameplate-partial {
  --nameplate-accent: #ef8aab;
}

.route-nameplate-number {
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.route-nameplate strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
}

.route-nameplate small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
}

.route-segment-divider-icon {
  border: 0;
  background: transparent;
  pointer-events: none;
}

.route-segment-divider {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 1px;
  background: rgba(255, 250, 243, 0.92);
  box-shadow: 0 0 0 0.5px rgba(36, 26, 63, 0.2);
  transform: translate(-50%, -50%) rotate(var(--divider-angle));
  transform-origin: center;
}

.route-segment-divider.is-major {
  width: 15px;
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 0 1px rgba(36, 26, 63, 0.18);
}

.legend-segments {
  background:
    linear-gradient(
      90deg,
      var(--route-open) 0 44%,
      var(--paper) 44% 56%,
      var(--route-open) 56% 100%
    );
}

.route-marker {
  display: grid;
  width: 38px !important;
  height: 38px !important;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 20px rgba(36, 26, 63, 0.3);
  font-weight: 950;
}

.route-marker.finish {
  background: var(--accent);
}

.amounts-section {
  padding-top: 24px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.amount-tile {
  display: grid;
  min-height: 156px;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.amount-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(36, 26, 63, 0.1);
}

.amount-tile span {
  color: var(--accent);
  font-size: 2.1rem;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.amount-tile strong {
  font-size: 1rem;
}

.amount-tile.featured {
  background: var(--accent);
  color: #fff;
}

.amount-tile.featured span {
  color: var(--lime);
}

.story-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 10vw, 120px);
  align-items: start;
}

.story-title {
  position: sticky;
  top: 24px;
}

.story-copy {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.15vw, 1.7rem);
  line-height: 1.55;
}

.story-copy p {
  margin: 0 0 1.25em;
}

.race-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: none;
  padding: 62px max(24px, calc((100vw - var(--max-width)) / 2));
  background: var(--ink);
  color: #fff;
}

.race-strip div {
  display: grid;
  gap: 3px;
  padding: 0 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.race-strip div:first-child {
  padding-left: 0;
  border-left: 0;
}

.race-strip strong {
  color: var(--lime);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.05em;
}

.race-strip span {
  color: rgba(255, 255, 255, 0.64);
}

.share-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.share-actions {
  justify-content: flex-start;
  margin: 0;
}

.text-link {
  padding: 12px 4px;
}

.share-feedback {
  grid-column: 2;
  min-height: 1.5em;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(24px, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

footer p {
  margin: 0;
}

.noscript {
  margin: 0;
  padding: 18px 24px;
  background: #ffecf2;
  color: #881736;
  text-align: center;
  font-weight: 800;
}


@media (max-width: 900px) {
  .logo-strip-inner {
    grid-template-columns: 1fr;
  }

  .logo-message h2 {
    max-width: 760px;
  }

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

@media (max-width: 900px) {
  .hero-grid,
  .section-heading,
  .story-section,
  .share-section {
    grid-template-columns: 1fr;
  }

  .progress-card {
    max-width: 620px;
  }

  .section-heading {
    gap: 18px;
  }

  .story-title {
    position: static;
  }

  .amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amount-tile:last-child {
    grid-column: span 2;
  }

  .race-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 0;
  }

  .race-strip div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .share-feedback {
    grid-column: 1;
  }
}

@media (hover: none) {
  .route-nameplate-tooltip {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 16px 18px 52px;
  }

  .topbar {
    margin-bottom: 48px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    font-size: 0.85rem;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }

  main > section {
    padding: 68px 18px;
  }

  .map-section {
    padding-top: 68px;
  }

  .map-shell,
  #map {
    min-height: 530px;
  }

  .logo-strip {
    padding: 18px 18px 10px;
  }

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

  .race-landscape {
    padding-right: 18px;
    padding-left: 18px;
  }

  .race-landscape-link {
    height: 235px;
  }

  .race-landscape-link img {
    height: 100%;
    object-position: center 66%;
  }

  .race-landscape-link::after {
    background: linear-gradient(0deg, rgba(20, 13, 39, 0.86) 0%, rgba(20, 13, 39, 0.14) 72%);
  }

  .race-landscape-overlay {
    left: 18px;
    bottom: 18px;
    gap: 6px;
    width: calc(100% - 36px);
  }

  .race-landscape-overlay strong {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .race-landscape-overlay small {
    font-size: 0.72rem;
  }

  .logo-card {
    min-height: 230px;
  }

  .map-legend {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
  }

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

  .amount-tile {
    min-height: 130px;
    padding: 18px;
  }

  .amount-tile span {
    font-size: 1.7rem;
  }

  .race-strip {
    padding-right: 18px;
    padding-left: 18px;
  }

  .race-strip div {
    padding: 0 14px;
  }

  footer {
    flex-direction: column;
    padding-right: 18px;
    padding-left: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
