.calendar-view-switch-wrap {
  position: sticky;
  top: 60px;
  z-index: 79;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(201,162,77,.18);
  background: rgba(5,5,5,.96);
  backdrop-filter: blur(14px);
}
.calendar-view-switch {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 4px;
  border: 1px solid rgba(201,162,77,.24);
  border-radius: 15px;
  background: #090806;
  box-shadow: 0 12px 34px rgba(0,0,0,.3);
}
.calendar-view-tab {
  min-width: 0;
  min-height: 58px;
  padding: 8px 14px;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  column-gap: 8px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: #aaa18c;
  text-align: left;
  cursor: pointer;
}
.calendar-view-tab > span { grid-row: 1 / 3; color: #8f6a28; font-size: 1.35rem; text-align: center; }
.calendar-view-tab strong { color: inherit; font-family: 'Cinzel',serif; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.calendar-view-tab small { overflow: hidden; color: #716a5d; font-family: 'Crimson Text',serif; font-size: .78rem; line-height: 1.1; text-overflow: ellipsis; white-space: nowrap; }
.calendar-view-tab:hover { color: #ead184; background: rgba(201,162,77,.055); }
.calendar-view-tab[aria-selected="true"] { border-color: rgba(201,162,77,.35); background: linear-gradient(135deg,rgba(201,162,77,.16),rgba(201,162,77,.055)); color: #ead184; box-shadow: inset 0 1px 0 rgba(255,255,255,.035); }
.calendar-view-tab[aria-selected="true"] > span { color: #d6b35a; }
.calendar-wheel-panel { width: 100%; min-height: calc(100vh - 142px); background: #080705; }
.calendar-wheel-panel[hidden] { display: none; }
.calendar-wheel-frame { display: block; width: 100%; min-height: calc(100vh - 142px); height: 1100px; border: 0; background: #080705; }
@media(max-width:720px){
  .calendar-view-switch-wrap { top: 60px; padding: 7px 8px; }
  .calendar-view-tab { min-height: 52px; padding: 7px 8px; grid-template-columns: 23px 1fr; column-gap: 5px; }
  .calendar-view-tab > span { font-size: 1.05rem; }
  .calendar-view-tab strong { font-size: .59rem; letter-spacing: .07em; }
  .calendar-view-tab small { display: none; }
  .calendar-wheel-frame { width: 100%!important; min-height: calc(100dvh - 130px)!important; height: 1200px!important; }
}
