:root {
  --red: #d20d21;
  --ink: #080808;
  --paper: #eeeae3;
  --muted: #77716b;
  --line: rgba(0, 0, 0, 0.14);
}
* {
  box-sizing: border-box;
}
body.calendar-page {
  margin: 0;
  color: #141414;
  background: var(--paper);
  font:
    16px/1.55 system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
}
.calendar-page a {
  color: inherit;
  text-decoration: none;
}
.calendar-topbar {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px clamp(20px, 5vw, 76px);
  color: #fff;
  background: #080808;
  border-bottom: 1px solid #292929;
}
.calendar-brand {
  font-size: 1.3rem;
  font-weight: 950;
  letter-spacing: -0.05em;
}
.calendar-brand strong {
  color: var(--red);
}
.calendar-topbar nav {
  display: flex;
  justify-content: center;
  gap: clamp(13px, 2.2vw, 30px);
}
.calendar-topbar nav a,
.calendar-topbar > a:last-child {
  color: #aaa49d;
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}
.calendar-topbar nav a:hover,
.calendar-topbar nav a[aria-current="page"] {
  color: #fff;
}
.calendar-hero {
  padding: clamp(76px, 10vw, 142px) clamp(24px, 7vw, 112px);
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 25%,
      rgba(210, 13, 33, 0.32),
      transparent 28%
    ),
    #090909;
}
.calendar-hero > p,
.calendar-section-title > p {
  margin: 0;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.calendar-hero h1,
.calendar-section-title h2 {
  margin: 24px 0;
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: 0.74;
  letter-spacing: -0.07em;
}
.calendar-hero h1 em,
.calendar-section-title h2 em {
  color: var(--red);
  font-style: normal;
}
.calendar-hero > span {
  color: #a39d96;
  font-size: 1.04rem;
}
.calendar-shell {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 6vw, 96px);
}
.calendar-toolbar {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  margin-bottom: 22px;
}
.calendar-toolbar h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.calendar-toolbar a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #0b0b0b;
  font-size: 1.25rem;
}
.calendar-help {
  margin: 0 0 18px;
  color: #625d57;
  font-size: 0.82rem;
}
.calendar-help strong {
  color: #111;
}
.calendar-table {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--red) #d6d1c8;
}
.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(128px, 1fr));
  min-width: 896px;
}
.calendar-weekdays span {
  padding: 10px;
  color: #77716b;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}
.calendar-day {
  min-height: 150px;
  padding: 12px;
  border: solid var(--line);
  border-width: 1px 1px 0 0;
  background: #f5f2ec;
}
.calendar-day:nth-child(7n + 1) {
  border-left-width: 1px;
}
.calendar-day:nth-last-child(-n + 7) {
  border-bottom-width: 1px;
}
.calendar-day.outside {
  opacity: 0.35;
}
.calendar-day.today {
  box-shadow: inset 0 0 0 2px var(--red);
}
.calendar-day > time {
  display: block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 950;
}
.calendar-event {
  margin-top: 7px;
  padding: 8px;
  color: #fff;
  background: #111;
  border-left: 3px solid var(--red);
}
.calendar-event small,
.calendar-event strong {
  display: block;
}
.calendar-event small {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 7px;
  color: #a9a39c;
  font-size: 0.56rem;
  font-weight: 850;
  text-transform: uppercase;
}
.calendar-event small time {
  color: #fff;
  font: inherit;
}
.calendar-event small b {
  color: #d8d1c9;
  font: inherit;
}
.calendar-event strong {
  margin-top: 2px;
  font-size: 0.7rem;
  line-height: 1.25;
}
.calendar-event.type-pause {
  border-left-color: #777;
}
.calendar-event.type-stream {
  border-left-color: #8a5cff;
}
.calendar-event.type-music {
  border-left-color: #ef8b25;
}
.calendar-upcoming {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
  padding: clamp(75px, 10vw, 140px) clamp(24px, 7vw, 112px);
  color: #fff;
  background: #090909;
}
.calendar-section-title h2 {
  font-size: clamp(3.6rem, 7vw, 7rem);
}
.upcoming-list {
  border-top: 1px solid #303030;
}
.upcoming-list > article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid #303030;
}
.upcoming-list time strong {
  display: block;
  color: var(--red);
  font-size: 2.5rem;
  line-height: 1;
}
.upcoming-list time span {
  color: #89837d;
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}
.upcoming-list small {
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.upcoming-list h3 {
  margin: 7px 0 8px;
  font-size: 1.45rem;
}
.upcoming-list p {
  margin: 0;
  color: #9d9790;
}
.platform-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}
.platform-pills span {
  padding: 6px 9px;
  border: 1px solid #3c3c3c;
  color: #bcb6af;
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}
.calendar-empty {
  padding: 35px 0;
  color: #8b857e;
}
.calendar-footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px clamp(24px, 7vw, 112px);
  color: #8d8780;
  background: #050505;
  border-top: 1px solid #222;
  font-size: 0.72rem;
}
.calendar-footer div {
  display: flex;
  gap: 24px;
}
@media (max-width: 900px) {
  .calendar-topbar {
    grid-template-columns: 1fr auto;
  }
  .calendar-topbar nav {
    grid-column: 1/-1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .calendar-upcoming {
    grid-template-columns: 1fr;
  }
  .calendar-day {
    min-height: 110px;
    padding: 8px;
  }
  .calendar-event {
    padding: 6px;
  }
  .calendar-event strong {
    font-size: 0.62rem;
  }
}
@media (max-width: 650px) {
  .calendar-weekdays span {
    font-size: 0.55rem;
  }
  .calendar-day {
    min-height: 118px;
  }
  .calendar-day > time {
    margin-bottom: 4px;
  }
  .calendar-event strong {
    font-size: 0.66rem;
  }
  .upcoming-list > article {
    grid-template-columns: 72px 1fr;
  }
  .calendar-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .calendar-footer div {
    flex-wrap: wrap;
  }
  .calendar-topbar > a:last-child {
    display: none;
  }
}
