.split-panel {
  display: none;
  position: relative;
  z-index: 60;
  margin: 16px 0 16px 16px;
  min-height: calc(100svh - 32px);
  overflow: auto;
  transition: opacity .28s ease, transform .28s ease;
}

.layout.layout-split .split-panel {
  display: block;
}

.layout.layout-split.is-split-collapsed .split-panel {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-12px);
  overflow: hidden;
}

.split-panel__inner {
  display: grid;
  gap: 16px;
  padding: 16px 18px 18px;
}

.tabs,
.breadcrumbs,
.filter-row,
.panel-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

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

.marker-card h3,
.marker-card p {
  margin: 0;
}

.marker-card h3 {
  margin-top: 12px;
  margin-bottom: 8px;
}

.marker-detail-media {
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.marker-detail-image {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.explorer-sheet {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 810;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: var(--sheet-peek);
  max-height: calc(100svh - 32px);
  overflow: hidden;
  transition: height .34s ease, transform .34s ease;
}

.explorer-sheet[data-sheet-state="peek"] {
  height: var(--sheet-peek);
}

.explorer-sheet[data-sheet-state="mid"] {
  height: var(--sheet-mid);
}

.explorer-sheet[data-sheet-state="full"] {
  height: var(--sheet-full);
}

.explorer-sheet[data-sheet-state="hidden"] {
  height: var(--sheet-peek);
  transform: translateY(calc(100% - 62px));
  border-radius: 24px 24px 0 0;
}

.explorer-sheet__handle {
  padding: 10px 18px 0;
  cursor: grab;
  touch-action: none;
}

.explorer-sheet__bar {
  width: 58px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-white-16);
  margin: 0 auto 10px;
}

.explorer-sheet__header {
  padding: 0 18px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.explorer-sheet__header span {
  display: block;
  color: var(--color-text-muted);
  font-size: .86rem;
}

.explorer-sheet__header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tabs--sheet {
  padding: 0 18px 12px;
}

.explorer-sheet__scroll {
  min-height: 0;
  overflow: auto;
  padding: 0 18px 18px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.sheet-panel {
  display: none;
  gap: 16px;
}

.sheet-panel.is-active {
  display: grid;
}

.preview-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 12px;
  padding: 0;
  overflow: hidden;
}

.preview-card__image {
  min-height: 120px;
}

.preview-card__copy {
  padding: 12px 12px 12px 0;
  display: grid;
  align-content: center;
  gap: 8px;
}


@media (min-width: 1101px) {
  #explorerSheet {
    display: none !important;
  }
}

@media (min-width: 1101px) {
  #explorerSheet {
    display: none !important;
  }
}