:root {
  --rc-navy: #10253f;
  --rc-navy-deep: #071522;
  --rc-blue: #1d5f91;
  --rc-blue-light: #dcecf8;
  --rc-orange: #f47b20;
  --rc-orange-dark: #ce5c0c;
  --rc-red: #d71920;
  --rc-green: #18794e;
  --rc-ink: #172334;
  --rc-muted: #617083;
  --rc-line: #dbe4ec;
  --rc-surface: #ffffff;
  --rc-bg: #f3f6f9;
  --rc-shadow: 0 18px 48px rgba(16, 37, 63, 0.1);
  --rc-radius: 20px;
  --rc-shell: 1240px;
}

html {
  scroll-behavior: smooth;
}

.rc-page {
  min-height: 70vh;
  overflow: clip;
  color: var(--rc-ink);
  background:
    radial-gradient(circle at 0 28rem, rgba(29, 95, 145, 0.09), transparent 31rem),
    radial-gradient(circle at 100% 65rem, rgba(244, 123, 32, 0.08), transparent 28rem),
    var(--rc-bg);
}

.rc-shell {
  width: min(var(--rc-shell), calc(100% - 32px));
  margin-inline: auto;
}

.rc-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5.7rem) 0;
  color: #fff;
  background:
    linear-gradient(118deg, rgba(7, 21, 34, 0.99), rgba(16, 37, 63, 0.95) 66%, rgba(20, 58, 91, 0.94)),
    var(--rc-navy);
  border-bottom: 6px solid var(--rc-orange);
}

.rc-phase-live .rc-hero {
  border-bottom-color: var(--rc-red);
}

.rc-hero::before,
.rc-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 22rem;
  height: 145%;
  top: -20%;
  right: 8%;
  transform: skewX(-24deg);
  background: rgba(244, 123, 32, 0.11);
}

.rc-hero::after {
  width: 9rem;
  right: -2%;
  background: rgba(255, 255, 255, 0.05);
}

.rc-phase-live .rc-hero::before {
  background: rgba(215, 25, 32, 0.14);
}

.rc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(2.3rem, 6vw, 5.5rem);
  align-items: center;
}

.rc-status,
.rc-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rc-status-live,
.rc-live-badge {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--rc-red);
}

.rc-status-weekend {
  background: var(--rc-orange-dark);
}

.rc-status-complete {
  background: rgba(255, 255, 255, 0.14);
}

.rc-live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: rc-pulse 1.8s infinite;
}

@keyframes rc-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.62); }
  70% { box-shadow: 0 0 0 9px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .rc-live-dot { animation: none; }
  html { scroll-behavior: auto; }
}

.rc-eyebrow {
  margin: 1.15rem 0 0.55rem;
  color: #ffc493;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rc-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.55rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.rc-venue {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.rc-venue strong {
  color: #fff;
}

.rc-venue span + span,
.rc-venue strong + span {
  position: relative;
  padding-left: 1rem;
}

.rc-venue span + span::before,
.rc-venue strong + span::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: 0.65em;
  left: 0;
  border-radius: 50%;
  background: var(--rc-orange);
}

.rc-hero-description {
  max-width: 680px;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

.rc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.65rem;
}

.rc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.74rem 1.05rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.rc-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.rc-btn-live {
  color: #fff;
  background: var(--rc-red);
  box-shadow: 0 11px 26px rgba(215, 25, 32, 0.28);
}

.rc-btn-live:hover {
  color: #fff;
  background: #b51218;
}

.rc-btn-light {
  color: var(--rc-navy);
  background: #fff;
}

.rc-btn-light:hover {
  color: var(--rc-navy-deep);
  background: #edf5fb;
}

.rc-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.rc-btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.rc-btn-dark {
  color: #fff;
  background: var(--rc-navy);
}

.rc-btn-dark:hover {
  color: #fff;
  background: var(--rc-navy-deep);
}

.rc-btn-outline {
  color: var(--rc-navy);
  border-color: var(--rc-navy);
  background: transparent;
}

.rc-btn-outline:hover {
  color: #fff;
  background: var(--rc-navy);
}

.rc-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2rem;
}

.rc-hero-facts > div {
  min-width: 130px;
  padding: 0 1.35rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.rc-hero-facts > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.rc-hero-facts strong,
.rc-hero-facts span {
  display: block;
}

.rc-hero-facts strong {
  color: #fff;
  font-size: 1.18rem;
  font-weight: 900;
}

.rc-hero-facts span {
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rc-hero-side {
  display: grid;
  gap: 1rem;
}

.rc-event-art,
.rc-focus-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--rc-radius);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.rc-event-art {
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 1rem;
}

.rc-event-art img {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.rc-event-art-placeholder {
  min-height: 240px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 5rem;
  background:
    linear-gradient(45deg, rgba(255,255,255,.04) 25%, transparent 25%) 0 0/32px 32px,
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,.04) 75%) 0 0/32px 32px,
    rgba(255, 255, 255, 0.07);
}

.rc-focus-card {
  padding: 1.25rem 1.35rem;
}

.rc-focus-card > span,
.rc-focus-card strong,
.rc-focus-card div,
.rc-focus-card small {
  display: block;
}

.rc-focus-card > span {
  color: #ffc493;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.rc-focus-card strong {
  margin-top: 0.35rem;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.25;
}

.rc-focus-card div {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
}

.rc-focus-card small {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.rc-section-nav {
  position: sticky;
  top: 76px;
  z-index: 1025;
  border-bottom: 1px solid var(--rc-line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(16, 37, 63, 0.06);
  backdrop-filter: blur(12px);
}

.rc-section-nav-scroll {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
  padding-block: 0.55rem;
  scrollbar-width: thin;
}

.rc-section-nav a {
  flex: 0 0 auto;
  padding: 0.58rem 0.8rem;
  border-radius: 999px;
  color: var(--rc-navy);
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
}

.rc-section-nav a:hover,
.rc-section-nav a:focus {
  color: var(--rc-navy-deep);
  background: var(--rc-blue-light);
}

.rc-content {
  padding-top: 2.3rem;
  padding-bottom: 1rem;
}

.rc-alert {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid #f0d09e;
  border-left: 5px solid var(--rc-orange);
  border-radius: 14px;
  background: #fff8ec;
  box-shadow: 0 8px 24px rgba(16, 37, 63, 0.05);
}

.rc-alert > i {
  color: var(--rc-orange-dark);
  font-size: 1.45rem;
}

.rc-alert div {
  flex: 1;
}

.rc-alert strong,
.rc-alert span {
  display: block;
}

.rc-alert span {
  margin-top: 0.12rem;
  color: #6c5739;
}

.rc-alert-waiver {
  border-color: #f0b9bc;
  border-left-color: var(--rc-red);
  background: #fff1f2;
}

.rc-alert-waiver > i {
  color: var(--rc-red);
}

.rc-alert-waiver span {
  color: #7f3c40;
}

.rc-alert a {
  flex: 0 0 auto;
  padding: 0.62rem 0.9rem;
  border-radius: 999px;
  color: #fff;
  background: var(--rc-red);
  font-weight: 900;
  text-decoration: none;
}

.rc-section {
  scroll-margin-top: 155px;
  padding: clamp(2.4rem, 5vw, 4.6rem) 0 0;
}

.rc-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.rc-section-heading span {
  display: block;
  margin-bottom: 0.22rem;
  color: var(--rc-orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rc-section-heading h2,
.rc-section-heading h3 {
  margin: 0;
  color: var(--rc-navy);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.rc-section-heading h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.rc-section-heading h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.rc-heading-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--rc-line);
  border-radius: 999px;
  color: var(--rc-navy);
  background: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration: none;
}

.rc-heading-link:hover {
  color: #fff;
  border-color: var(--rc-navy);
  background: var(--rc-navy);
}

.rc-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.rc-action-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  min-height: 116px;
  padding: 1.2rem;
  border: 1px solid var(--rc-line);
  border-radius: 17px;
  color: var(--rc-ink);
  background: #fff;
  box-shadow: 0 11px 30px rgba(16, 37, 63, 0.07);
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.rc-action-card:hover {
  color: var(--rc-ink);
  border-color: #a9bfd1;
  box-shadow: var(--rc-shadow);
  transform: translateY(-3px);
}

.rc-action-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--rc-blue);
  background: var(--rc-blue-light);
  font-size: 1.3rem;
}

.rc-action-card strong,
.rc-action-card small {
  display: block;
}

.rc-action-card strong {
  color: var(--rc-navy);
  font-size: 1rem;
  font-weight: 900;
}

.rc-action-card small {
  margin-top: 0.2rem;
  color: var(--rc-muted);
  line-height: 1.35;
}

.rc-action-arrow {
  color: #91a1b2;
}

.rc-action-live .rc-action-icon {
  color: #fff;
  background: var(--rc-red);
}

.rc-action-timing .rc-action-icon {
  color: #fff;
  background: var(--rc-green);
}

.rc-action-control .rc-action-icon,
.rc-action-results .rc-action-icon {
  color: #fff;
  background: var(--rc-orange-dark);
}

.rc-live-badge {
  color: #fff !important;
  margin: 0 !important;
}

.rc-live-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
  gap: 1rem;
}

.rc-live-layout:not(.has-video) {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.7fr);
}

.rc-video-wrap {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--rc-radius);
  background: #05090d;
  box-shadow: var(--rc-shadow);
}

.rc-video-wrap::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.rc-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.rc-broadcast-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  min-height: 300px;
  padding: clamp(1.6rem, 4vw, 3rem);
  overflow: hidden;
  border-radius: var(--rc-radius);
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(255,255,255,.15), transparent 13rem),
    linear-gradient(135deg, #8d0c11, var(--rc-red));
  box-shadow: 0 20px 48px rgba(143, 12, 17, 0.2);
  text-decoration: none;
}

.rc-broadcast-card:hover {
  color: #fff;
}

.rc-broadcast-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 2.25rem;
}

.rc-broadcast-card small,
.rc-broadcast-card strong,
.rc-broadcast-card em {
  display: block;
}

.rc-broadcast-card small {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rc-broadcast-card strong {
  margin-top: 0.2rem;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.rc-broadcast-card em {
  max-width: 520px;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
  line-height: 1.5;
}

.rc-live-links {
  display: grid;
  gap: 0.75rem;
}

.rc-live-links a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--rc-line);
  border-radius: 15px;
  color: var(--rc-ink);
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 37, 63, 0.05);
  text-decoration: none;
}

.rc-live-links a:hover {
  color: var(--rc-ink);
  border-color: #a5bdd0;
  transform: translateY(-1px);
}

.rc-live-links a > i:first-child {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: var(--rc-blue);
  background: var(--rc-blue-light);
  font-size: 1.1rem;
}

.rc-live-links strong,
.rc-live-links small {
  display: block;
}

.rc-live-links strong {
  color: var(--rc-navy);
  font-weight: 900;
}

.rc-live-links small {
  color: var(--rc-muted);
}

.rc-playlist-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--rc-line);
  border-radius: var(--rc-radius);
  background: linear-gradient(135deg, #fff, #f4f8fb);
  box-shadow: 0 10px 30px rgba(16, 37, 63, 0.06);
}

.rc-playlist-heading span,
.rc-playlist-heading h3 {
  display: block;
}

.rc-playlist-heading span {
  color: var(--rc-orange-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rc-playlist-heading h3 {
  margin: 0.25rem 0 0.8rem;
  color: var(--rc-navy);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 950;
}

.rc-playlist-heading a {
  color: var(--rc-blue);
  font-weight: 900;
  text-decoration: none;
}

.rc-video-wrap-compact {
  min-height: 250px;
}

.rc-schedule-days {
  display: grid;
  gap: 1rem;
}

.rc-schedule-day {
  overflow: hidden;
  border: 1px solid var(--rc-line);
  border-radius: var(--rc-radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 37, 63, 0.06);
}

.rc-schedule-day > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  color: #fff;
  background: linear-gradient(105deg, var(--rc-navy-deep), var(--rc-navy));
}

.rc-schedule-day > header span,
.rc-schedule-day > header h3 {
  margin: 0;
}

.rc-schedule-day > header span {
  display: block;
  color: #ffc493;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rc-schedule-day > header h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
}

.rc-schedule-day > header time {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.rc-timeline {
  padding: 0.4rem 1.35rem 0.6rem;
}

.rc-timeline-row {
  display: grid;
  grid-template-columns: 110px 18px minmax(0, 1fr);
  gap: 0.7rem;
  min-height: 74px;
  padding: 0.9rem 0;
  border-bottom: 1px solid #edf1f5;
}

.rc-timeline-row:last-child {
  border-bottom: 0;
}

.rc-timeline-time {
  padding-top: 0.1rem;
  color: var(--rc-navy);
  font-weight: 900;
  text-align: right;
}

.rc-timeline-time small {
  display: block;
  margin-top: 0.1rem;
  color: var(--rc-muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.rc-timeline-marker {
  position: relative;
}

.rc-timeline-marker::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0.35rem;
  left: 4px;
  z-index: 2;
  border: 2px solid var(--rc-blue);
  border-radius: 50%;
  background: #fff;
}

.rc-timeline-marker::after {
  content: "";
  position: absolute;
  width: 2px;
  top: 1rem;
  bottom: -1.2rem;
  left: 8px;
  background: #dbe5ed;
}

.rc-timeline-row:last-child .rc-timeline-marker::after {
  display: none;
}

.rc-timeline-content {
  min-width: 0;
}

.rc-timeline-content strong,
.rc-timeline-content span,
.rc-timeline-content p {
  display: block;
}

.rc-timeline-content strong {
  color: var(--rc-ink);
  font-weight: 900;
}

.rc-timeline-content span:not(.rc-row-state) {
  margin-top: 0.18rem;
  color: var(--rc-muted);
  font-size: 0.85rem;
}

.rc-timeline-content p {
  margin: 0.35rem 0 0;
  color: var(--rc-muted);
  line-height: 1.45;
}

.rc-row-state {
  display: inline-flex !important;
  width: fit-content;
  margin-bottom: 0.25rem;
  padding: 0.15rem 0.48rem;
  border-radius: 999px;
  color: #fff;
  background: var(--rc-orange-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rc-timeline-row.is-current {
  margin-inline: -0.7rem;
  padding-inline: 0.7rem;
  border-radius: 12px;
  background: #fff4ea;
}

.rc-timeline-row.is-current .rc-timeline-marker::before {
  border-color: var(--rc-red);
  background: var(--rc-red);
  box-shadow: 0 0 0 6px rgba(215, 25, 32, 0.1);
}

.rc-timeline-row.is-current .rc-row-state {
  background: var(--rc-red);
}

.rc-timeline-row.is-next .rc-timeline-marker::before {
  border-color: var(--rc-orange);
  background: var(--rc-orange);
}

.rc-timeline-row.is-past {
  opacity: 0.62;
}

.rc-notice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.rc-notice-grid article {
  padding: 1.15rem;
  border: 1px solid #ead8b9;
  border-left: 4px solid var(--rc-orange);
  border-radius: 14px;
  background: #fffaf1;
}

.rc-notice-grid article > span {
  display: block;
  color: var(--rc-orange-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rc-notice-grid p {
  margin: 0.38rem 0 0;
  color: #594b3b;
  line-height: 1.55;
}

.rc-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.rc-tools-grid a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
  min-height: 68px;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--rc-line);
  border-radius: 14px;
  color: var(--rc-ink);
  background: #fff;
  font-weight: 850;
  text-decoration: none;
}

.rc-tools-grid a:hover {
  color: var(--rc-navy);
  border-color: #a8becf;
  box-shadow: 0 9px 24px rgba(16, 37, 63, 0.07);
  transform: translateY(-2px);
}

.rc-tools-grid a > i:first-child {
  color: var(--rc-blue);
  font-size: 1.15rem;
}

.rc-tools-grid a > i:last-child {
  color: #9aa8b6;
  font-size: 0.75rem;
}

.rc-guide-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.2rem;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(105deg, var(--rc-navy-deep), var(--rc-navy));
}

.rc-guide-callout > div {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.rc-guide-callout > div > i {
  color: #ffc493;
  font-size: 1.75rem;
}

.rc-guide-callout strong,
.rc-guide-callout small {
  display: block;
}

.rc-guide-callout strong {
  color: #fff;
  font-weight: 900;
}

.rc-guide-callout small {
  margin-top: 0.16rem;
  color: rgba(255, 255, 255, 0.66);
}

.rc-guide-callout > a {
  flex: 0 0 auto;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: var(--rc-navy);
  background: #fff;
  font-weight: 900;
  text-decoration: none;
}

.rc-track-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.rc-track-facts > div {
  min-height: 98px;
  padding: 1rem;
  border: 1px solid var(--rc-line);
  border-radius: 15px;
  background: #fff;
}

.rc-track-facts span,
.rc-track-facts strong {
  display: block;
}

.rc-track-facts span {
  color: var(--rc-muted);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rc-track-facts strong {
  margin-top: 0.32rem;
  color: var(--rc-navy);
  font-weight: 900;
  line-height: 1.35;
}

.rc-map-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1rem 0;
}

.rc-map-grid a {
  position: relative;
  display: block;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid var(--rc-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 11px 30px rgba(16, 37, 63, 0.06);
}

.rc-map-grid img {
  display: block;
  width: 100%;
  height: 250px;
  padding: 0.7rem;
  object-fit: contain;
  transition: transform 180ms ease;
}

.rc-map-grid a:hover img {
  transform: scale(1.02);
}

.rc-map-grid span {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  left: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.62rem 0.75rem;
  border-radius: 11px;
  color: #fff;
  background: rgba(7, 21, 34, 0.9);
  font-size: 0.85rem;
  font-weight: 900;
}

.rc-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}

.rc-detail-list details {
  overflow: hidden;
  border: 1px solid var(--rc-line);
  border-radius: 13px;
  background: #fff;
}

.rc-detail-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.92rem 1rem;
  color: var(--rc-navy);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.rc-detail-list summary::-webkit-details-marker {
  display: none;
}

.rc-detail-list details[open] summary {
  border-bottom: 1px solid var(--rc-line);
  background: #f8fbfd;
}

.rc-detail-list details[open] summary i {
  transform: rotate(45deg);
}

.rc-detail-list summary i {
  color: var(--rc-orange-dark);
  transition: transform 160ms ease;
}

.rc-detail-list details > div {
  padding: 1rem;
  color: var(--rc-muted);
  line-height: 1.6;
}

.rc-around-town {
  margin-top: 1.25rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--rc-line);
  border-radius: var(--rc-radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(16, 37, 63, 0.06);
}

.rc-section-heading-small {
  margin-bottom: 0.8rem;
}

.rc-rich-text {
  color: #425267;
  line-height: 1.68;
}

.rc-rich-text > :last-child {
  margin-bottom: 0;
}

.rc-rich-text h2,
.rc-rich-text h3,
.rc-rich-text h4 {
  color: var(--rc-navy);
  font-weight: 900;
}

.rc-partner-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  border: 1px solid var(--rc-line);
  border-radius: var(--rc-radius);
  background: #fff;
  box-shadow: var(--rc-shadow);
}

.rc-partner-feature:has(.rc-partner-copy:only-child) {
  grid-template-columns: 1fr;
}

.rc-partner-ad {
  display: grid;
  min-height: 300px;
  place-items: center;
  padding: 1.25rem;
  background: #eef3f6;
}

.rc-partner-ad img {
  display: block;
  width: 100%;
  max-height: 380px;
  object-fit: contain;
}

.rc-partner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3.2rem);
}

.rc-partner-logo {
  display: block;
  max-width: 260px;
  max-height: 86px;
  margin-bottom: 1rem;
  object-fit: contain;
  object-position: left center;
}

.rc-partner-copy > span {
  color: var(--rc-orange-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.rc-partner-copy h3 {
  margin: 0.25rem 0 0;
  color: var(--rc-navy);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.rc-partner-copy p {
  margin: 0.8rem 0 1.2rem;
  color: var(--rc-muted);
  line-height: 1.65;
}

.rc-official-partners {
  padding-bottom: 4rem;
}

.rc-partner-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.rc-partner-strip a {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 0.8rem;
  border: 1px solid var(--rc-line);
  border-radius: 13px;
  background: #fff;
}

.rc-partner-strip img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  opacity: 0.86;
  transition: opacity 160ms ease, transform 160ms ease;
}

.rc-partner-strip a:hover img {
  opacity: 1;
  transform: scale(1.03);
}

@media (max-width: 1050px) {
  .rc-hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  }

  .rc-action-grid,
  .rc-map-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rc-tools-grid,
  .rc-track-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rc-partner-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .rc-section-nav {
    top: 66px;
  }

  .rc-hero-grid {
    grid-template-columns: 1fr;
  }

  .rc-hero-side {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .rc-event-art,
  .rc-event-art-placeholder {
    min-height: 180px;
  }

  .rc-live-layout,
  .rc-live-layout:not(.has-video) {
    grid-template-columns: 1fr;
  }

  .rc-playlist-feature {
    grid-template-columns: 1fr;
  }

  .rc-video-wrap {
    min-height: 0;
  }

  .rc-notice-grid,
  .rc-detail-list {
    grid-template-columns: 1fr;
  }

  .rc-partner-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .rc-shell {
    width: min(var(--rc-shell), calc(100% - 20px));
  }

  .rc-hero {
    padding: 2.5rem 0 2.8rem;
  }

  .rc-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .rc-venue span,
  .rc-venue strong {
    width: 100%;
  }

  .rc-venue span + span,
  .rc-venue strong + span {
    padding-left: 0;
  }

  .rc-venue span + span::before,
  .rc-venue strong + span::before {
    display: none;
  }

  .rc-hero-actions .rc-btn {
    width: 100%;
  }

  .rc-hero-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .rc-hero-facts > div,
  .rc-hero-facts > div:first-child {
    min-width: 0;
    padding: 0;
    border-left: 0;
  }

  .rc-hero-side {
    grid-template-columns: 1fr;
  }

  .rc-event-art {
    max-height: 260px;
  }

  .rc-alert {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .rc-alert a {
    width: 100%;
    text-align: center;
  }

  .rc-section {
    scroll-margin-top: 138px;
    padding-top: 2.8rem;
  }

  .rc-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .rc-action-grid,
  .rc-tools-grid,
  .rc-track-facts,
  .rc-map-grid,
  .rc-partner-strip {
    grid-template-columns: 1fr;
  }

  .rc-action-card {
    min-height: 102px;
  }

  .rc-broadcast-card {
    grid-template-columns: 1fr auto;
    min-height: 260px;
  }

  .rc-broadcast-icon {
    display: none;
  }

  .rc-timeline {
    padding-inline: 0.85rem;
  }

  .rc-timeline-row {
    grid-template-columns: 78px 14px minmax(0, 1fr);
    gap: 0.45rem;
  }

  .rc-timeline-time {
    font-size: 0.79rem;
  }

  .rc-timeline-marker::before {
    left: 2px;
  }

  .rc-timeline-marker::after {
    left: 6px;
  }

  .rc-guide-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .rc-guide-callout > a {
    text-align: center;
  }

  .rc-map-grid a,
  .rc-map-grid img {
    min-height: 220px;
    height: 220px;
  }
}

@media print {
  .cc-site-header,
  .cc27-footer,
  .rc-section-nav,
  .rc-hero-actions,
  .rc-alert a,
  .rc-heading-link,
  .rc-tools-grid,
  .rc-live-links,
  .rc-playlist-feature,
  .rc-official-partners {
    display: none !important;
  }

  .rc-page {
    background: #fff;
  }

  .rc-hero {
    padding: 1rem 0;
    color: #000;
    background: #fff;
    border-bottom: 2px solid #000;
  }

  .rc-hero h1,
  .rc-venue strong,
  .rc-hero-facts strong {
    color: #000;
  }

  .rc-hero-description,
  .rc-venue,
  .rc-hero-facts span {
    color: #333;
  }

  .rc-hero-side,
  .rc-status,
  .rc-eyebrow {
    display: none;
  }

  .rc-hero-grid,
  .rc-action-grid,
  .rc-live-layout {
    display: block;
  }

  .rc-action-card,
  .rc-schedule-day,
  .rc-partner-feature,
  .rc-around-town {
    break-inside: avoid;
    box-shadow: none;
  }
}
