/*! start: scheduler */
@media (max-width: 768px) {
  .sched-container {
    --slot-height: var(
      --slot-height-mobile,
      var(--slot-height-base, 50px)
    );
  }
}
.sched-container {
  font-family: "Montserrat", sans-serif;
  display: flex;
  font-size: 13px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(42, 42, 42, 0.18);
}
.sched-container .time-col {
  display: flex;
  flex-direction: column;
  width: 52px;
  flex-shrink: 0;
  background: #f6efe6;
  border-right: 1px solid rgba(42, 42, 42, 0.18);
}
.sched-container .time-col .t-header {
  height: 40px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(42, 42, 42, 0.18);
}
.sched-container .time-col .t-slot {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  color: rgba(42, 42, 42, 0.28);
  font-size: 10px;
  font-weight: 500;
  flex-shrink: 0;
}
.sched-container .time-col .t-slot.major {
  box-sizing: border-box;
  color: rgba(42, 42, 42, 0.55);
  font-weight: 700;
  letter-spacing: 0.03em;
  border-top: 0.5px solid rgba(42, 42, 42, 0.18);
}
.sched-container .res-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.sched-container .res-col .res-header {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Neue Regrade", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #2a2a2a;
  border-bottom: 1px solid rgba(42, 42, 42, 0.1);
  background: #f6efe6;
}
.sched-container .res-col .res-body {
  position: relative;
}
.sched-container .res-col .res-body .grid-slot {
  height: 50px;
  border-bottom: 0.5px solid rgba(42, 42, 42, 0.05);
  box-sizing: border-box;
}
.sched-container .res-col .res-body .grid-slot.major {
  border-top: 0.5px solid rgba(42, 42, 42, 0.1);
  background: rgba(246, 239, 230, 0.35);
}
.sched-container .event-block {
  position: absolute;
  left: 3px;
  right: 3px;
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
  box-sizing: border-box;
  cursor: default;
  transition: transform 0.12s, opacity 0.12s;
  align-items: center;
}
.sched-container .event-block.expandable:hover {
  transform: scale(1.015);
  opacity: 0.92;
}
.sched-container .event-block.compact {
  display: flex;
  gap: 0.3em;
  flex-wrap: wrap;
}
.sched-container .event-block.compact .event-title {
  white-space: nowrap;
  text-overflow: ellipsis;
}
.sched-container .event-block.compact .event-speakers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sched-container .event-block.compact .event-desc {
  display: none;
}
.sched-container .event-block .event-speaker {
  text-decoration: underline;
}
.sched-container .event-block .event-speaker,
.sched-container .event-block .event-time {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.sched-container .event-block .event-title {
  font-family: "Neue Regrade", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.sched-container .event-block .event-desc {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}
.sched-container .event-block .event-desc p,
.sched-container .event-block .event-desc a {
  font-weight: 400;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.sched-filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px;
  background: #f6efe6;
  border: 1px solid rgba(42, 42, 42, 0.18);
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  margin-bottom: 20px;
}
.sched-filter-bar .filter-label {
  font-weight: 700;
  color: rgba(42, 42, 42, 0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-right: 4px;
}
.sched-filter-bar .filter-pill {
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(42, 42, 42, 0.18);
  background: #fff;
  color: rgba(42, 42, 42, 0.5);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.sched-filter-bar .filter-pill:focus {
  background-color: #fff;
  color: rgba(42, 42, 42, 0.55);
}
.sched-filter-bar .filter-pill.active {
  background: #2a2a2a;
  color: #fff;
  border-color: #2a2a2a;
}
.sched-filter-bar .filter-pill.active:focus {
  background-color: #2a2a2a;
  color: #fff;
}

/*! end: scheduler *//*! start: tooltip */
.event-tooltip {
  position: fixed;
  z-index: 9999;
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
  max-width: 220px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
}
.event-tooltip.visible {
  opacity: 1;
  pointer-events: auto;
}
.event-tooltip .tooltip-title {
  font-family: "Neue Regrade", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #2a2a2a;
  margin-bottom: 3px;
}
.event-tooltip .tooltip-time {
  font-size: 10px;
  color: #2a2a2a;
  margin-bottom: 6px;
}
.event-tooltip .tooltip-desc {
  font-size: 11px;
  color: #2a2a2a;
}
.event-tooltip .tooltip-desc p,
.event-tooltip .tooltip-desc a {
  font-size: 11px;
  color: #2a2a2a;
}
.event-tooltip .tooltip-speakers {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(42, 42, 42, 0.1);
  font-size: 11px;
}
.event-tooltip .tooltip-speakers span,
.event-tooltip .tooltip-speakers a {
  color: #2a2a2a;
}/*$vite$:1*/