/**
 * Slots laterales (Estados · LIBE) — dock en hero Home o flotante en perfil.
 */
.ch-slot-dock {
  position: fixed;
  z-index: 48;
  display: flex;
  gap: 6px;
  padding: 0;
  margin: 0;
  pointer-events: none;
  max-width: min(220px, 42vw);
}

.ch-slot-dock--hero {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 3;
  flex-direction: row;
  align-items: stretch;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  padding-left: 0;
  padding-right: 10%;
  box-sizing: border-box;
  pointer-events: none;
  flex-shrink: 0;
}

.ch-slot-dock--home:not(.ch-slot-dock--hero) {
  left: 10px;
  bottom: 10px;
}

.ch-slot-dock--hero .ch-slot-dock__item {
  flex: 1 1 0;
  min-width: 0;
  max-width: 50%;
  width: auto;
  height: auto;
  min-height: 68px;
  pointer-events: auto;
}

.ch-slot-dock--hero .ch-slot-dock__banner,
.ch-slot-dock--hero .ch-slot-dock__stage {
  height: 100%;
  min-height: 68px;
}

.ch-slot-dock--hero .ch-slot-dock__label {
  font-size: 7px;
  top: 4px;
  left: 6px;
}

.ch-slot-dock--hero .ch-slot-dock__vacant {
  font-size: 8px;
  padding: 3px 7px;
}

.ch-slot-dock--perfil {
  right: 10px;
  bottom: 10px;
}

.ch-slot-dock__item {
  flex: 1 1 0;
  min-width: 0;
  width: 100px;
  height: 54px;
  pointer-events: auto;
}

.ch-slot-dock__banner {
  display: block;
  position: relative;
  width: 100%;
  height: 54px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(233, 30, 99, .22);
  text-decoration: none;
  background: #fff;
}

.ch-slot-dock__stage {
  position: relative;
  width: 100%;
  height: 54px;
  overflow: hidden;
}

.ch-slot-dock__slide {
  position: absolute;
  inset: 0;
}

.ch-slot-dock__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.ch-slot-dock__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ch-slot-dock__mock--live .ch-slot-dock__img {
  object-position: center top;
}

.ch-slot-dock__vacant {
  position: absolute;
  right: 4px;
  bottom: 4px;
  z-index: 2;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(233, 30, 99, .92);
  color: #fff;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  pointer-events: none;
}

.ch-slot-dock__banner--vacant::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .18) 100%);
  pointer-events: none;
  z-index: 1;
}

.ch-slot-dock__label {
  position: absolute;
  top: 3px;
  left: 5px;
  z-index: 2;
  padding: 1px 5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  pointer-events: none;
}
