.pub-datestrip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 2px 2px 10px;
  margin-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pub-datestrip::-webkit-scrollbar { display: none; }
.pub-datecell {
  flex: 0 0 auto;
  min-width: 52px;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 6px;
  border: 1px solid #E8E3F6;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease;
}
.pub-datecell .dc-wd {
  font-size: .62rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #6B5E8E;
  letter-spacing: .3px;
}
.pub-datecell .dc-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A1033;
  line-height: 1;
}
.pub-datecell .dc-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6C3FC5;
}
.pub-datecell.is-today { border-color: #6C3FC5; }
.pub-datecell.is-selected {
  background: #6C3FC5;
  border-color: #6C3FC5;
}
.pub-datecell.is-selected .dc-wd,
.pub-datecell.is-selected .dc-num { color: #fff; }
.pub-datecell.is-selected .dc-dot { background: #fff; }
