/* Drops — mesmo shell visual dos Manuais, acentos dourados */
.mu-drops {
  --mu-help-gold: #e8c878;
  --mu-help-warm: #ffd89a;
  --mu-help-amber: #f0a84a;
  --mu-help-scroll-track: rgba(18, 12, 6, 0.55);
  --mu-help-scroll-thumb: linear-gradient(180deg, rgba(232, 200, 120, 0.95), rgba(180, 130, 50, 0.88));
  --mu-help-scroll-thumb-hover: linear-gradient(180deg, rgba(255, 224, 150, 1), rgba(212, 160, 70, 0.95));
  --mu-help-scroll-border: rgba(255, 220, 150, 0.4);
  /* Painel esquerdo + direito: mesma altura fixa (não cresce com conteúdo) */
  --mu-drops-panel-h: calc(100vh - 8.5rem);

  position: relative;
  isolation: isolate;
  /* Igual .mu-doc: padding horizontal vem só de .mu-main--docs */
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 0 3rem;
  color: #e8e4d8;
  min-height: calc(100vh - 8rem);
  box-sizing: border-box;
}

/* Scroll dourado (não azul) */
.mu-drops .mu-scroll,
.mu-drops__results,
.mu-drops__cats,
.mu-drops__monster-list,
.mu-drops__stage-panel {
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 200, 120, 0.75) var(--mu-help-scroll-track);
}
.mu-drops .mu-scroll::-webkit-scrollbar,
.mu-drops__results::-webkit-scrollbar,
.mu-drops__cats::-webkit-scrollbar,
.mu-drops__monster-list::-webkit-scrollbar,
.mu-drops__stage-panel::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.mu-drops .mu-scroll::-webkit-scrollbar-track,
.mu-drops__results::-webkit-scrollbar-track,
.mu-drops__cats::-webkit-scrollbar-track,
.mu-drops__monster-list::-webkit-scrollbar-track,
.mu-drops__stage-panel::-webkit-scrollbar-track {
  background: var(--mu-help-scroll-track);
  border-radius: 999px;
}
.mu-drops .mu-scroll::-webkit-scrollbar-thumb,
.mu-drops__results::-webkit-scrollbar-thumb,
.mu-drops__cats::-webkit-scrollbar-thumb,
.mu-drops__monster-list::-webkit-scrollbar-thumb,
.mu-drops__stage-panel::-webkit-scrollbar-thumb {
  background: var(--mu-help-scroll-thumb);
  border-radius: 999px;
  border: 1px solid var(--mu-help-scroll-border);
}
.mu-drops .mu-scroll::-webkit-scrollbar-thumb:hover,
.mu-drops__results::-webkit-scrollbar-thumb:hover,
.mu-drops__cats::-webkit-scrollbar-thumb:hover,
.mu-drops__monster-list::-webkit-scrollbar-thumb:hover,
.mu-drops__stage-panel::-webkit-scrollbar-thumb:hover {
  background: var(--mu-help-scroll-thumb-hover);
}
.mu-drops .mu-scroll::-webkit-scrollbar-button,
.mu-drops__results::-webkit-scrollbar-button,
.mu-drops__cats::-webkit-scrollbar-button,
.mu-drops__monster-list::-webkit-scrollbar-button,
.mu-drops__stage-panel::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.mu-drops__ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.mu-drops__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  animation: mu-drops-orb 22s ease-in-out infinite alternate;
}
.mu-drops__orb--a {
  width: 50vw;
  height: 50vw;
  top: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(232, 180, 70, 0.42), transparent 65%);
}
.mu-drops__orb--b {
  width: 45vw;
  height: 45vw;
  top: 15%;
  right: -5%;
  background: radial-gradient(circle, rgba(255, 120, 60, 0.22), transparent 65%);
  animation-delay: -8s;
}
.mu-drops__orb--c {
  width: 40vw;
  height: 40vw;
  bottom: -5%;
  left: 25%;
  background: radial-gradient(circle, rgba(255, 210, 120, 0.2), transparent 65%);
  animation-delay: -14s;
}
.mu-drops__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 220, 150, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 220, 150, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 55% at 40% 25%, #000 15%, transparent 70%);
  opacity: 0.45;
}
@keyframes mu-drops-orb {
  from { transform: translate(0, 0) scale(1); opacity: 0.32; }
  to { transform: translate(2%, 3%) scale(1.05); opacity: 0.42; }
}

/* Hero = Manuais */
.mu-drops__hero {
  margin-bottom: 1.25rem;
}
.mu-drops__hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(232, 200, 120, 0.22);
  background:
    linear-gradient(135deg, rgba(36, 24, 10, 0.72), rgba(8, 12, 22, 0.7)),
    rgba(8, 14, 28, 0.55);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 220, 150, 0.08);
}
.mu-drops__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mu-help-gold);
}
.mu-drops__title {
  margin: 0 0 0.35rem;
  font-family: var(--mu-font-display, Cinzel, Georgia, serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(120deg, #fff8e8 0%, #e8c878 45%, #f0a84a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mu-drops__lead {
  margin: 0;
  max-width: 48ch;
  font-size: 0.9rem;
  color: rgba(200, 190, 170, 0.9);
  line-height: 1.55;
}
.mu-drops__hero-stats {
  display: flex;
  gap: 0.5rem;
}
.mu-drops__stat {
  min-width: 4.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(232, 200, 120, 0.2);
  background: rgba(40, 28, 10, 0.45);
  text-align: center;
}
.mu-drops__stat strong {
  display: block;
  font-family: var(--mu-font-display, Cinzel, Georgia, serif);
  font-size: 1.05rem;
  color: var(--mu-help-warm);
}
.mu-drops__stat span {
  font-size: 0.68rem;
  color: rgba(176, 168, 152, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Shell dock + stage — espelha .mu-doc__shell (mesma largura do hero) */
.mu-drops__shell {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: clamp(1rem, 1.5vw, 2rem);
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  /* altura do shell = altura fixa dos painéis */
  height: var(--mu-drops-panel-h);
  max-height: var(--mu-drops-panel-h);
}
@media (max-width: 1024px) {
  .mu-drops__shell {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }
  .mu-drops__dock,
  .mu-drops__stage {
    height: auto;
    max-height: none;
    min-height: 0;
  }
  .mu-drops__dock {
    position: static;
  }
  .mu-drops__dock-glass {
    max-height: min(70vh, 520px);
    height: auto;
  }
  .mu-drops__stage {
    min-height: min(55vh, 480px);
  }
  .mu-drops__stage-panel {
    max-height: min(70vh, 640px);
  }
}

.mu-drops__dock {
  position: sticky;
  top: 5.5rem;
  z-index: 5;
  align-self: stretch;
  min-width: 0;
  height: var(--mu-drops-panel-h);
  max-height: var(--mu-drops-panel-h);
  min-height: var(--mu-drops-panel-h);
  box-sizing: border-box;
}
.mu-drops__dock-glass {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.75rem;
  border-radius: 18px;
  background: rgba(12, 10, 8, 0.45);
  border: 1px solid rgba(232, 200, 120, 0.16);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 220, 150, 0.06);
  height: 100%;
  max-height: 100%;
  min-height: 0;
  overflow: hidden;
  min-width: 0;
  box-sizing: border-box;
}
.mu-drops__dock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.2rem 0.15rem;
  border-bottom: 1px solid rgba(232, 200, 120, 0.12);
}
.mu-drops__dock-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232, 200, 120, 0.9);
}
.mu-drops__dock-count {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
}

.mu-drops__pick-tabs {
  display: flex;
  gap: 0.35rem;
}
.mu-drops__pick-tab {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #b0a898;
  border-radius: 8px;
  padding: 0.45rem 0.5rem;
  cursor: pointer;
  font: inherit;
}
.mu-drops__pick-tab.is-active {
  border-color: rgba(232, 200, 120, 0.5);
  color: #fff8e8;
  background: rgba(232, 200, 120, 0.14);
}

.mu-drops__search {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(232, 200, 120, 0.14);
  color: rgba(232, 200, 120, 0.75);
}
.mu-drops__search:focus-within {
  border-color: rgba(232, 200, 120, 0.45);
  background: rgba(0, 0, 0, 0.55);
}
.mu-drops__search input {
  flex: 1;
  border: 0;
  background: transparent;
  color: #f0eadc;
  font: inherit;
  font-size: 0.85rem;
  outline: none;
  min-width: 0;
}

.mu-drops__pane {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.mu-drops__pane[hidden],
.mu-drops__pane[style*="display: none"] {
  display: none !important;
}
.mu-drops__results {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  max-height: none;
  overflow: auto;
}
.mu-drops__browse {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
}
.mu-drops__cats-bar {
  flex: 0 0 auto;
}
.mu-drops__cats-chip {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  border: 1px solid rgba(232, 200, 120, 0.28);
  background: linear-gradient(135deg, rgba(232, 200, 120, 0.12), rgba(0, 0, 0, 0.28));
  min-height: 2.55rem;
  box-sizing: border-box;
}
.mu-drops__cats-chip-label {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 200, 120, 0.75);
}
.mu-drops__cats-chip-name {
  flex: 1;
  min-width: 0;
  font-size: 0.86rem;
  color: #fff8e8;
  font-weight: 700;
}
.mu-drops__cats-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid rgba(232, 200, 120, 0.4);
  background: rgba(232, 200, 120, 0.14);
  color: #ffe9b0;
  border-radius: 8px;
  padding: 0.32rem 0.55rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.mu-drops__cats-toggle:hover {
  border-color: rgba(255, 224, 150, 0.65);
  background: rgba(232, 200, 120, 0.22);
  color: #fff;
}
.mu-drops__cats,
.mu-drops__results--browse {
  margin: 0;
  min-height: 0;
  overflow: auto;
  flex: 1 1 auto;
  height: auto;
  max-height: none;
}
.mu-drops__cats {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-right: 0.15rem;
}
.mu-drops__browse.is-cats-collapsed .mu-drops__cats {
  display: none;
}
.mu-drops__browse:not(.is-cats-collapsed) .mu-drops__results--browse {
  display: none;
}
.mu-drops__cat {
  border: 0;
  background: transparent;
  color: #a09888;
  text-align: left;
  padding: 0.4rem 0.45rem;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.mu-drops__cat.is-active,
.mu-drops__cat:hover {
  background: rgba(232, 200, 120, 0.12);
  color: #fff8e8;
}
.mu-drops__result {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
}
.mu-drops__result:hover,
.mu-drops__result.is-active {
  background: rgba(232, 200, 120, 0.12);
}
.mu-drops__result-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(232, 200, 120, 0.14);
  overflow: hidden;
}
.mu-drops__result-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  image-rendering: auto;
}
.mu-drops__result-icon img.is-missing {
  opacity: 0;
}
.mu-drops__result-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mu-drops__result-name {
  color: #f5efdf;
  font-weight: 560;
}
.mu-drops__result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.78rem;
  color: #8a8270;
}
.mu-drops__badge {
  display: inline-block;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(240, 168, 74, 0.22);
  color: #ffd89a;
  font-size: 0.7rem;
}
.mu-drops__badge--soft {
  background: rgba(232, 200, 120, 0.14);
  color: #d4c498;
}
.mu-drops__empty,
.mu-drops__loading {
  margin: 0.65rem 0 0;
  color: #8a8270;
  font-size: 0.9rem;
}
.mu-drops__empty-callout {
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(240, 168, 74, 0.35);
  background: rgba(240, 168, 74, 0.1);
  color: #ffe0b0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.mu-drops__stage {
  position: relative;
  min-width: 0;
  height: var(--mu-drops-panel-h);
  max-height: var(--mu-drops-panel-h);
  min-height: var(--mu-drops-panel-h);
  border-radius: 20px;
  border: 1px solid rgba(232, 200, 120, 0.16);
  background: rgba(12, 10, 8, 0.45);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 220, 150, 0.05);
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.mu-drops__stage-panel {
  flex: 1 1 auto;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  overflow: auto;
  overflow-x: hidden;
  padding: clamp(1.25rem, 2vw, 2.5rem);
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 200, 120, 0.75) var(--mu-help-scroll-track);
}
.mu-drops__placeholder {
  min-height: 12rem;
  padding: 2rem 1rem;
  text-align: center;
  color: #9a9078;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mu-drops__placeholder strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--mu-help-warm);
  font-size: 1.1rem;
  font-family: var(--mu-font-display, Cinzel, Georgia, serif);
}
.mu-drops__item-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.mu-drops__item-icon {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(232, 200, 120, 0.18);
  box-shadow: inset 0 0 24px rgba(232, 200, 120, 0.06);
  overflow: hidden;
}
.mu-drops__item-icon img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}
.mu-drops__item-icon img.is-missing {
  opacity: 0;
}
.mu-drops__item-copy {
  min-width: 0;
  flex: 1;
}
.mu-drops__item-title {
  margin: 0 0 0.25rem;
  font-family: var(--mu-font-display, Cinzel, Georgia, serif);
  font-size: 1.45rem;
  background: linear-gradient(120deg, #fff8e8, #e8c878);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mu-drops__item-sub {
  margin: 0 0 0.55rem;
  color: #9a9078;
  font-size: 0.9rem;
}
.mu-drops__item-sub strong {
  color: var(--mu-help-gold);
}
.mu-drops__item-hint {
  margin: 0 0 1.1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  background: rgba(232, 200, 120, 0.08);
  border: 1px solid rgba(232, 200, 120, 0.2);
  color: rgba(255, 230, 180, 0.92);
  font-size: 0.9rem;
  line-height: 1.45;
}
.mu-drops__block {
  margin-top: 1.25rem;
}
.mu-drops__block-title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--mu-help-gold);
}
.mu-drops__card {
  margin-bottom: 0.75rem;
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(232, 200, 120, 0.14);
  background: rgba(0, 0, 0, 0.28);
}
.mu-drops__card.is-disabled { opacity: 0.55; }
.mu-drops__card-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.55rem;
}
.mu-drops__rate {
  font-size: 0.82rem;
  color: var(--mu-help-amber);
}
.mu-drops__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.4rem 0.75rem;
}
.mu-drops__facts li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.88rem;
}
.mu-drops__facts span {
  color: #8a8270;
  font-size: 0.75rem;
}
.mu-drops__facts strong {
  color: #efe6d2;
  font-weight: 560;
}
.mu-drops__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
  align-items: center;
}
.mu-drops__chips-label {
  width: 100%;
  font-size: 0.75rem;
  color: #8a8270;
  margin-bottom: 0.1rem;
}
.mu-drops__chip {
  display: inline-block;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(232, 200, 120, 0.14);
  border: 1px solid rgba(232, 200, 120, 0.28);
  color: #e8dcc0;
  font-size: 0.78rem;
}
.mu-drops__chip--monster {
  background: rgba(240, 168, 74, 0.1);
  border-color: rgba(240, 168, 74, 0.28);
  color: #ffd89a;
}
.mu-drops__note {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #a09888;
}
.mu-drops__mode {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.mu-drops__mode-tab {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: #b0a898;
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  font: inherit;
}
.mu-drops__mode-tab.is-active {
  border-color: rgba(232, 200, 120, 0.5);
  color: #fff8e8;
  background: rgba(232, 200, 120, 0.16);
}
.mu-drops__mode-tab--exc {
  border-color: rgba(80, 200, 120, 0.28);
  color: #8fd9a8;
}
.mu-drops__mode-tab--exc:hover {
  border-color: rgba(90, 220, 140, 0.5);
  color: #b6f0c8;
  background: rgba(60, 160, 100, 0.12);
}
.mu-drops__mode-tab--exc.is-active {
  border-color: rgba(90, 220, 140, 0.65);
  color: #d8ffe6;
  background: rgba(50, 170, 100, 0.28);
  box-shadow: 0 0 0 1px rgba(90, 220, 140, 0.15);
}
.mu-drops__window {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: #c4bba8;
}
.mu-drops__window strong {
  color: var(--mu-help-gold);
}
.mu-drops__subhead {
  margin: 0.9rem 0 0.45rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9a9078;
}
.mu-drops__monster-list {
  list-style: none;
  margin: 0;
  padding: 0;
  /* scroll fica no painel da direita — lista não força crescimento */
  max-height: none;
  overflow: visible;
}
.mu-drops__monster-list li {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto minmax(0, 1.4fr);
  gap: 0.35rem 0.75rem;
  padding: 0.4rem 0.2rem;
  border-bottom: 1px solid rgba(232, 200, 120, 0.08);
  font-size: 0.86rem;
}
.mu-drops__monster-list strong { color: #efe6d2; }
.mu-drops__monster-list span {
  color: var(--mu-help-amber);
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.mu-drops__monster-list.is-excellent span {
  color: #6ee7a0;
}
.mu-drops__monster-list em {
  color: #8a8270;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .mu-drops__monster-list li { grid-template-columns: 1fr auto; }
  .mu-drops__monster-list em {
    grid-column: 1 / -1;
    white-space: normal;
  }
  .mu-drops__browse {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 240px;
    flex: none;
  }
  .mu-drops__cats {
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    max-height: none;
    overflow: visible;
    flex: none;
  }
  .mu-drops__results--browse {
    height: min(48vh, 360px);
    max-height: min(48vh, 360px);
    flex: none;
  }
  .mu-drops__dock,
  .mu-drops__dock-glass,
  .mu-drops__stage,
  .mu-drops__stage-panel {
    min-height: 0;
    height: auto;
    max-height: none;
  }
  .mu-drops__stage-panel {
    max-height: none;
  }
}
