/* Homepage "Award Season" section — phase-aware summary of the current session */

.kx-season{ padding:30px 0 54px; }

.season-card{
  margin-top:26px; border-radius:20px; padding:26px 26px 22px;
  border:1px solid rgba(245,158,11,.24);
  background:
    radial-gradient(120% 150% at 50% 0%, rgba(245,158,11,.10), rgba(255,255,255,.02));
}

/* ---- head ---- */
.season-head{ text-align:center; }
.season-pill{
  display:inline-flex; align-items:center; gap:7px;
  font-size:11.5px; font-weight:900; letter-spacing:.08em; text-transform:uppercase;
  padding:6px 13px; border-radius:999px;
  border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.75);
}
.season-pill::before{
  content:""; width:7px; height:7px; border-radius:999px; background:currentColor;
}
.season-pill.is-live{
  color:#111; border-color:transparent;
  background:linear-gradient(180deg, rgba(252,211,77,.97), rgba(245,158,11,.97));
}
.season-pill.is-soon{ color:rgba(252,211,77,.95); border-color:rgba(245,158,11,.4); background:rgba(245,158,11,.1); }
.season-pill.is-done{ color:rgba(255,255,255,.65); }

.season-headline{
  margin:14px auto 0; max-width:52ch;
  font-family:var(--kx-display,inherit); font-weight:800;
  font-size:clamp(18px,3.2vw,24px); line-height:1.35;
}
.season-count{ margin:10px 0 0; font-size:13.5px; color:rgba(255,255,255,.6); }
.season-count b{ color:rgba(252,211,77,.95); font-weight:900; }

/* ---- timeline ---- */
.season-timeline{
  list-style:none; margin:26px 0 0; padding:0;
  display:grid; grid-template-columns:repeat(auto-fit, minmax(120px,1fr)); gap:0;
  position:relative;
}
.season-step{
  position:relative; text-align:center; padding:22px 8px 0;
}
/* connector line between steps */
.season-step::before{
  content:""; position:absolute; top:6px; left:0; right:50%; height:2px;
  background:rgba(255,255,255,.12);
}
.season-step::after{
  content:""; position:absolute; top:6px; left:50%; right:0; height:2px;
  background:rgba(255,255,255,.12);
}
.season-step:first-child::before,
.season-step:last-child::after{ background:transparent; }
.season-step.is-done::before,
.season-step.is-done::after,
.season-step.is-current::before{ background:rgba(245,158,11,.6); }

.ss-dot{
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:14px; height:14px; border-radius:999px; z-index:1;
  border:2px solid rgba(255,255,255,.25); background:#15151a;
}
.season-step.is-done .ss-dot{ border-color:rgba(245,158,11,.75); background:rgba(245,158,11,.75); }
.season-step.is-current .ss-dot{
  border-color:rgba(252,211,77,.95); background:rgba(252,211,77,.95);
  box-shadow:0 0 0 5px rgba(245,158,11,.18);
}
.ss-label{ display:block; font-size:13.5px; font-weight:800; color:rgba(255,255,255,.55); }
.ss-date{ display:block; margin-top:3px; font-size:12px; color:rgba(255,255,255,.4); }
.season-step.is-done .ss-label{ color:rgba(255,255,255,.75); }
.season-step.is-current .ss-label{ color:#fff; }
.season-step.is-current .ss-date{ color:rgba(252,211,77,.9); }

/* ---- meta (ceremony / venue / categories) ---- */
.season-meta{
  margin:26px 0 0; padding-top:20px; border-top:1px solid rgba(255,255,255,.09);
  display:grid; grid-template-columns:repeat(auto-fit, minmax(230px,1fr)); gap:16px;
}
.sm-item{ display:flex; align-items:flex-start; gap:11px; text-align:left; }
.sm-item svg{
  width:19px; height:19px; flex:0 0 auto; margin-top:2px;
  fill:none; stroke:currentColor; stroke-width:1.5;
  stroke-linecap:round; stroke-linejoin:round; color:rgba(252,211,77,.8);
}
.sm-item b{ display:block; font-size:14px; font-weight:800; line-height:1.4; }
.sm-item b a{ color:inherit; text-decoration:underline; text-underline-offset:2px; }
.sm-item small{ display:block; margin-top:3px; font-size:12.5px; color:rgba(255,255,255,.5); line-height:1.5; }

/* ---- actions ---- */
.season-actions{
  margin:24px 0 0; display:flex; gap:12px; align-items:center;
  justify-content:center; flex-wrap:wrap;
}
.season-cta{
  text-decoration:none; border-radius:999px; padding:13px 32px;
  font-weight:950; font-size:15px; color:#111;
  border:1px solid rgba(245,158,11,.35);
  background:linear-gradient(180deg, rgba(252,211,77,.97), rgba(245,158,11,.97));
  box-shadow:0 10px 28px rgba(245,158,11,.2);
  transition:transform .12s ease, filter .2s ease;
}
.season-cta:hover{ transform:translateY(-2px); filter:brightness(1.04); }
.season-link{
  text-decoration:none; border-radius:999px; padding:13px 24px;
  font-weight:800; font-size:14.5px; color:rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.16); background:rgba(255,255,255,.04);
}
.season-link:hover{ background:rgba(255,255,255,.09); color:#fff; }

@media (max-width:560px){
  .season-card{ padding:22px 16px 18px; }
  /* stack the timeline vertically so the connectors don't cramp */
  .season-timeline{ grid-template-columns:1fr; gap:14px; }
  .season-step{ display:flex; align-items:center; gap:12px; text-align:left; padding:0 0 0 26px; }
  .season-step::before, .season-step::after{ display:none; }
  .ss-dot{ left:0; top:50%; transform:translateY(-50%); }
  .ss-date{ margin:0 0 0 auto; }
}
