.cal {
  display: flex;
  gap: clamp(16px, 3.5vw, 64px);
  padding-top: clamp(24px, 5vh, 64px);
  padding-bottom: clamp(60px, 10vh, 120px);
}
.cal-side { flex-shrink: 0; }
.cal-vertical {
  position: sticky;
  top: clamp(28px, 10vh, 110px);
  display: block;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 8vw, 132px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(26, 24, 20, 0.12);
  user-select: none;
}
.cal-list { flex: 1; min-width: 0; }

.month { margin-bottom: clamp(36px, 6vh, 72px); }
.month:last-child { margin-bottom: 0; }
.month-title {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: clamp(6px, 1.4vh, 16px);
}

.event {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: clamp(24px, 3vw, 38px) 0;
  border-bottom: 1px solid rgba(26, 24, 20, 0.14);
}
.event-info { min-width: 0; }
.event-date {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(11px, 0.95vw, 13px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 11px;
}
.event-loc {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: clamp(19px, 1.9vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.event-loc .dim { opacity: 0.42; }
.event-prog {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.1vw, 17px);
  opacity: 0.8;
  margin-top: 11px;
}
.event-prog em { font-style: italic; }

.event-btn {
  justify-self: end;
  white-space: nowrap;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 22px;
  border: 1px solid rgba(26, 24, 20, 0.28);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.event-btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

@media (max-width: 820px) {
  .cal-side { display: none; }
  .event { grid-template-columns: 1fr; gap: 16px; }
  .event-btn { justify-self: start; }
}
