.strata-ground {
  position: sticky;
  top: 52px;
  align-self: start;
  --strata-through: 0;
  --strata-atEntry: 0;
  --strata-entries: 0;
}

.strata-ground .strata-figure {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.5000;
}

.strata-ground .strata-reel {
  position: relative;
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: calc(100vh - 52px - 60px);
  overflow-y: auto;
  overflow-x: clip;
  padding-inline: 6px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.strata-ground .strata-cell {
  position: relative;
}

.strata-ground .strata-rule {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: transform 314ms cubic-bezier(0.4, 0, 0.2, 1), height 314ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 160ms linear;
}

.strata-ground .strata-reel:has(a[aria-current]) .strata-rule {
  opacity: 1;
}

.strata-ground .strata-cell > a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.4000;
  color: inherit;
  text-decoration: none;
  transition: color 160ms linear, opacity 160ms linear, background-color 160ms linear;
  opacity: 0.6540;
}

.strata-ground .strata-cell > a:hover {
  opacity: 1;
}

.strata-ground .strata-cell > a:focus-visible {
  outline: 2px solid rgba(255, 65, 108, 0.9);
  outline-offset: 1px;
}

.strata-ground .strata-cell > a[aria-current] {
  opacity: 1;
  color: rgba(255, 65, 108, 1);
}

.strata-ground .strata-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 3px;
  background-color: rgba(255, 65, 108, 0.1814);
  box-shadow: inset 3px 0 0 0 rgba(255, 65, 108, 0.9);
  opacity: 0;
  transition: opacity 180ms linear;
  pointer-events: none;
}

.strata-ground .strata-cell:has(> a[aria-current])::before {
  opacity: 1;
}

.strata-ground .strata-reel:has(> .strata-rule) .strata-cell::before {
  display: none;
}

.strata-ground .strata-rule {
  right: 0;
  width: auto;
  border-radius: 3px;
  background-color: rgba(255, 65, 108, 0.1814);
  box-shadow: inset 3px 0 0 0 rgba(255, 65, 108, 0.9);
  z-index: -1;
}

@media (prefers-reduced-motion: reduce) {
  .strata-ground .strata-rule {
    transition: none;
  }
}

@media (max-width: 780px) {
  .strata-ground {
    position: static;
  }

  .strata-ground .strata-reel {
    max-height: none;
    overflow: visible;
    padding-inline: 0;
  }
}

@media print {
  .strata-ground {
    display: none;
  }
}
