/* Live Dashboard page styles (scoped) */
.gh-dash-section{
  position: relative;
  padding: 140px 0 90px;
  background: #050505;
  overflow: hidden;
}

.gh-dash-section .grid-bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(100,184,252,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,184,252,.18) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .12;
  pointer-events:none;
}

.gh-dash-titlebar{
  display:flex;
  align-items:center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.gh-dash-titlebar > div{
  text-align: center;
}

.gh-dash-updated{
  margin-top: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.gh-dash-back{
  min-width: 0;
  padding: 10px 12px;
  line-height: 1;
}

.gh-dash-back .effect{
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  letter-spacing: 0;
}

.gh-dash-lead{
  margin: 10px 0 0;
  color: rgba(255,255,255,.75);
  max-width: 820px;
}

.gh-dash-live{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(100,184,252,.22);
  padding: 10px 14px;
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.85);
}

.gh-live-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(239,68,68,.95);
  box-shadow: 0 0 10px rgba(239,68,68,.55);
  animation: ghLivePulse 1.5s infinite;
}

@keyframes ghLivePulse{
  0%{ transform: scale(1); opacity: 1; }
  50%{ transform: scale(1.4); opacity: .55; }
  100%{ transform: scale(1); opacity: 1; }
}

.gh-live-label{
  font-size: 12px;
}

/* Stats */
.gh-dash-stats{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.gh-dash-stat{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(100,184,252,.25);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.gh-dash-stat::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 20% 20%, rgba(100,184,252,.16), transparent 55%);
  opacity:.9;
  pointer-events:none;
}

.gh-dash-stat__kicker{
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  position: relative;
  z-index: 1;
}

.gh-dash-stat__value{
  font-family: "Chakra Petch", sans-serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.1;
  margin-top: 10px;
  color: #64b8fc;
  position: relative;
  z-index: 1;
}

.gh-dash-stat__sub{
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  position: relative;
  z-index: 1;
}

.gh-dash-timer{
  display:flex;
  gap: 12px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.gh-dash-timer__cell{
  display:flex;
  align-items: baseline;
  gap: 6px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: #fff;
}

.gh-dash-timer__unit{
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.55);
}

/* Big timer (top-left) */
.gh-dash-stat--timer-big{
  grid-column: span 2;
  padding: 22px;
}

.gh-dash-stat--timer-big .gh-dash-timer{
  gap: 16px;
  margin-top: 12px;
}

.gh-dash-stat--timer-big .gh-dash-timer__cell{
  font-size: 56px;
}

.gh-dash-stat--timer-big .gh-dash-timer__unit{
  font-size: 14px;
}

/* Cards */
.gh-dash-grid{
  display:grid;
  grid-template-columns: 1.55fr .85fr;
  gap: 16px;
  margin-bottom: 16px;
}

.gh-dash-card{
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(100,184,252,.25);
  box-shadow: 0 0 0 1px rgba(100,184,252,.10) inset, 0 20px 50px rgba(0,0,0,.55);
  padding: 18px;
}

.gh-dash-card--wide{
  margin-top: 4px;
}

.gh-dash-card--schedule{
  min-height: 320px;
}

.gh-dash-card--teams{
  min-height: 320px;
}

.gh-dash-teamlist{
  margin-top: 12px;
  display:block;
}

.gh-dash-team{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding: 12px;
  display:flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.gh-dash-team__name{
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(255,255,255,.84);
  font-size: 13px;
  margin: 0;
}

.gh-dash-team__sub{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

.gh-dash-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.14);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  white-space: nowrap;
}

.gh-dash-pill--submitted{
  color: rgba(100,184,252,.95);
  background: rgba(100,184,252,.12);
  border-color: rgba(100,184,252,.55);
}

.gh-dash-pill--draft{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
}

.gh-dash-pill--scored{
  background: rgba(34,197,94,.12);
  border-color: rgba(34,197,94,.55);
  color: rgba(34,197,94,.95);
}

.gh-dash-pill--other{
  background: rgba(100,184,252,.10);
  border-color: rgba(100,184,252,.35);
  color: rgba(255,255,255,.80);
}

/* Teams carousel (center) */
.gh-dash-teams-carousel{
  margin-top: 10px;
}

.gh-dash-teams-viewport{
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.01);
}

.gh-dash-teams-track{
  display:flex;
  width: 100%;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.gh-dash-teams-page{
  min-width: 100%;
  padding: 10px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.gh-dash-teams-nav{
  margin-top: 10px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}

.gh-dash-navbtn{
  width: 44px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: all .25s ease;
}

.gh-dash-navbtn:hover{
  border-color: rgba(100,184,252,.45);
  color: rgba(255,255,255,.92);
  box-shadow: 0 0 14px rgba(100,184,252,.16);
}

.gh-dash-navbtn:disabled{
  opacity: .35;
  cursor: not-allowed;
  box-shadow: none;
}

.gh-dash-teams-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  flex: 1;
}

.gh-dash-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  cursor: pointer;
  transition: all .25s ease;
}

.gh-dash-dot:hover{
  border-color: rgba(100,184,252,.45);
}

.gh-dash-dot.is-active{
  background: rgba(100,184,252,.70);
  border-color: rgba(100,184,252,.85);
  box-shadow: 0 0 12px rgba(100,184,252,.25);
}

.gh-dash-teams-pagecount{
  flex: 1;
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}

/* Airport-style teams ticker */
.gh-dash-ticker{
  margin-top: 10px;
}

.gh-dash-ticker__viewport{
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.01);
}

.gh-dash-ticker__track{
  will-change: transform;
}

.gh-dash-flight{
  display:grid;
  grid-template-columns: 90px 1.25fr 1.1fr 120px auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.015);
}

.gh-dash-flight:last-child{
  border-bottom: 0;
}

.gh-dash-flight__col{
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gh-dash-flight__col--stmt{
  color: rgba(255,255,255,.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 1px;
}

.gh-dash-flight__col--team{
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
}

.gh-dash-flight__col--members{
  font-family: "IBM Plex Mono", monospace;
  color: rgba(255,255,255,.70);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gh-dash-tracktag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.70);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gh-dash-tracktag--t1{
  border-color: rgba(100,184,252,.40);
  background: rgba(100,184,252,.10);
  color: rgba(100,184,252,.95);
}

.gh-dash-tracktag--t2{
  border-color: rgba(245,158,11,.55);
  background: rgba(245,158,11,.12);
  color: rgba(245,158,11,.95);
}

.gh-dash-tracktag--t3{
  border-color: rgba(168,85,247,.55);
  background: rgba(168,85,247,.12);
  color: rgba(168,85,247,.95);
}

.gh-dash-flighthead{
  display:grid;
  grid-template-columns: 90px 1.25fr 1.1fr 120px auto;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-bottom: 0;
  background: rgba(255,255,255,.02);
}

.gh-dash-flighthead__col{
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gh-dash-ticker__foot{
  margin-top: 10px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.gh-dash-ticker__meta{
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
}

/* Board-only: hide track selector + per-track mini stats */
body.gh-board-only .gh-dash-tabs,
body.gh-board-only .gh-dash-trackdesc,
body.gh-board-only .gh-dash-trackstats{
  display: none !important;
}

/* Winners section */
.gh-winners{
  margin: 12px 0 18px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(100,184,252,.25);
  box-shadow: 0 0 0 1px rgba(100,184,252,.10) inset, 0 20px 50px rgba(0,0,0,.55);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.gh-winners::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 15% 25%, rgba(100,184,252,.18), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.08), transparent 55%);
  opacity: .9;
  pointer-events:none;
}

.gh-winners__head{
  position: relative;
  z-index: 1;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.gh-winners__title{
  margin: 0;
  font-family: "Chakra Petch", sans-serif;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.92);
}

.gh-winners__chip{
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 10px;
}

.gh-winners__tablewrap{
  position: relative;
  z-index: 1;
  overflow: auto;
}

.gh-winners__table{
  width: 100%;
  border-collapse: collapse;
}

.gh-winners__table th{
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  padding: 10px 10px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.gh-winners__table td{
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.80);
  font-size: 13px;
}

.gh-winners__place{
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(100,184,252,.95);
}

.gh-winners__team{
  font-family: "Chakra Petch", sans-serif;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(255,255,255,.92);
}

.gh-winners__members{
  font-family: "IBM Plex Mono", monospace;
  color: rgba(255,255,255,.70);
}

.gh-winners__track,
.gh-winners__stmt{
  font-family: "IBM Plex Mono", monospace;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 360px;
}

.gh-winners__stmt{
  color: rgba(255,255,255,.72);
}

/* One-time confetti canvas */
.gh-confetti-canvas{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

@media (prefers-reduced-motion: reduce){
  .gh-confetti-canvas{ display:none; }
}

.gh-dash-sched{
  display:flex;
  flex-direction: column;
  gap: 10px;
  max-height: 520px;
  overflow: auto;
  padding-right: 4px;
}

.gh-dash-sched__item{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding: 12px;
  transition: all .25s ease;
}

.gh-dash-sched__item:hover{
  border-color: rgba(100,184,252,.35);
  box-shadow: 0 0 14px rgba(100,184,252,.12);
}

.gh-dash-sched__item.is-active{
  background: rgba(100,184,252,.10);
  border-color: rgba(100,184,252,.95);
  box-shadow: 0 0 0 1px rgba(100,184,252,.22) inset, 0 0 26px rgba(100,184,252,.20);
}

.gh-dash-sched__item.is-next{
  border-style: dashed;
  border-color: rgba(100,184,252,.45);
  background: rgba(100,184,252,.05);
}

.gh-dash-sched__item.is-active .gh-dash-sched__time{
  color: rgba(255,255,255,.85);
}

.gh-dash-sched__item.is-active .gh-dash-sched__title{
  color: rgba(255,255,255,.95);
}

.gh-dash-sched__time{
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
  margin-bottom: 6px;
}

.gh-dash-sched__title{
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(255,255,255,.84);
  font-size: 13px;
}

.gh-dash-sched__loc{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
}

.gh-dash-empty{
  padding: 12px;
  color: rgba(255,255,255,.70);
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
}

.gh-dash-card__head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.gh-dash-card__title{
  margin: 0;
  font-family: "Chakra Petch", sans-serif;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(255,255,255,.92);
}

.gh-dash-accent{
  color: #64b8fc;
}

.gh-dash-chip{
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 10px;
}

.gh-dash-card__footer{
  margin-top: 14px;
  display:flex;
  justify-content: flex-start;
}

/* Feed */
.gh-dash-feed{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.gh-dash-feed__item{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding: 12px;
}

.gh-dash-feed__meta{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.gh-dash-feed__time{
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.gh-dash-feed__tag{
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(100,184,252,.95);
  border: 1px solid rgba(100,184,252,.25);
  background: rgba(100,184,252,.08);
  padding: 4px 8px;
}

.gh-dash-feed__text{
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.45;
}

/* Track tabs */
.gh-dash-tabs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gh-dash-tab{
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  padding: 8px 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all .25s ease;
}

.gh-dash-tab:hover{
  border-color: rgba(100,184,252,.40);
  color: rgba(255,255,255,.85);
  box-shadow: 0 0 14px rgba(100,184,252,.16);
}

.gh-dash-tab.is-active{
  border-color: rgba(100,184,252,.85);
  color: #64b8fc;
}

.gh-dash-trackdesc{
  margin: 0 0 14px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.gh-dash-trackstats{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.gh-dash-mini{
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.10);
  padding: 12px;
}

.gh-dash-mini__kicker{
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
}

.gh-dash-mini__value{
  margin-top: 8px;
  font-family: "Chakra Petch", sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: rgba(255,255,255,.92);
}

.gh-dash-mentor{
  background: rgba(100,184,252,.05);
  border: 1px dashed rgba(100,184,252,.30);
  padding: 14px;
  text-align: center;
}

.gh-dash-mentor__kicker{
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #64b8fc;
}

.gh-dash-mentor__text{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.70);
}

/* Timeline */
.gh-dash-timeline{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.gh-dash-step{
  position: relative;
  padding-left: 18px;
  border-left: 2px solid rgba(100,184,252,.10);
}

.gh-dash-step::before{
  content:"";
  position:absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(11,15,20,1);
  border: 2px solid rgba(100,184,252,.30);
}

.gh-dash-step.is-active{
  border-left-color: rgba(100,184,252,.75);
}

.gh-dash-step.is-active::before{
  background: #64b8fc;
  border-color: #64b8fc;
  box-shadow: 0 0 12px rgba(100,184,252,.35);
}

.gh-dash-step__time{
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 6px;
}

.gh-dash-step__title{
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: rgba(255,255,255,.80);
  font-size: 13px;
}

/* Footer */
.gh-dash-footer{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.62);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gh-dash-footer__left{
  display:flex;
  align-items:center;
  gap: 16px;
  flex-wrap: wrap;
}

.gh-dash-sys{
  display:flex;
  align-items:center;
  gap: 8px;
}

.gh-dash-sys__dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.20);
}

.gh-dash-sys__dot--accent{
  background: rgba(100,184,252,.95);
  box-shadow: 0 0 10px rgba(100,184,252,.35);
}

/* Responsive */
@media (max-width: 991px){
  .gh-dash-section{ padding: 120px 0 70px; }
  .gh-dash-stats{ grid-template-columns: repeat(2, 1fr); }
  .gh-dash-grid{ grid-template-columns: 1fr; }
  .gh-dash-timeline{ grid-template-columns: 1fr; }
  .gh-dash-stat--timer-big{ grid-column: span 2; }
  .gh-dash-flighthead{ display:none; }
  .gh-dash-flight{
    grid-template-columns: 80px 1fr auto;
    grid-template-areas:
      "track team status"
      "track stmt status"
      "track members status";
    align-items: start;
  }
  .gh-dash-flight__col--track{ grid-area: track; }
  .gh-dash-flight__col--team{ grid-area: team; }
  .gh-dash-flight__col--stmt{ grid-area: stmt; }
  .gh-dash-flight__col--members{ grid-area: members; }
}

/* Mobile: make Winners table readable (stack rows as cards) */
@media (max-width: 600px){
  /* Teams board: allow important text to wrap instead of ellipsis on narrow screens */
  .gh-dash-flight{ padding: 10px; gap: 10px; }
  .gh-dash-flight__col--team{ font-size: 12px; }
  .gh-dash-flight__col--stmt,
  .gh-dash-flight__col--members{
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .gh-winners__tablewrap{ overflow: visible; }
  .gh-winners__table thead{ display: none; }
  .gh-winners__table,
  .gh-winners__table tbody,
  .gh-winners__table tr,
  .gh-winners__table td{
    display: block;
    width: 100%;
  }

  .gh-winners__table tr{
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.02);
    box-shadow: 0 0 0 1px rgba(255,255,255,.04) inset;
    margin: 10px 0;
    padding: 10px 12px;
  }

  .gh-winners__table td{
    border-bottom: 0;
    padding: 6px 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }

  .gh-winners__table td::before{
    content: "";
    flex: 0 0 92px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.60);
  }

  .gh-winners__table td:nth-child(1)::before{ content: "Place"; }
  .gh-winners__table td:nth-child(2)::before{ content: "Track"; }
  .gh-winners__table td:nth-child(3)::before{ content: "Statement"; }
  .gh-winners__table td:nth-child(4)::before{ content: "Team"; }
  .gh-winners__table td:nth-child(5)::before{ content: "Members"; }

  /* Allow long text to wrap on mobile */
  .gh-winners__track,
  .gh-winners__stmt{
    max-width: none;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .gh-winners__members{
    white-space: normal;
  }
}
