.card-deck-container {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
}
.deck-card {
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}
.deck-card.active    { transform: translateX(0)    scale(1);    opacity: 1; z-index: 10; }
.deck-card.prev      { transform: translateX(-110%) scale(0.9); opacity: 0; z-index: 0; }
.deck-card.next      { transform: translateX(110%)  scale(0.9); opacity: 0; z-index: 0; }
.deck-card.peek-left { transform: translateX(-90%)  scale(0.88); opacity: 0.35; z-index: 5; }
.deck-card.peek-right{ transform: translateX(90%)   scale(0.88); opacity: 0.35; z-index: 5; }

.nav-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background: currentColor;
  opacity: 0.3;
  transition: opacity 0.2s, width 0.25s;
}
.nav-dot.active {
  opacity: 1;
  width: 1.25rem;
}
.cookie-policy-deck-xs {
  font-size: 0.65rem;
}
.cookie-policy-deck-xxs {
  font-size: 0.6rem;
}
.cookie-policy-deck-meta {
  font-size: 0.7rem;
}

