/* ==========================================================
   gk-lives.css — Página Lives
   ========================================================== */

/* ── Live atual (destaque) ───────────────────────────────── */

.gk-lives-current {
  background-color: #000;
  padding: 0 5% 4rem;
}

.gk-lives-current-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.gk-lives-current-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-red, #c41230);
}

.gk-lives-current-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--ink-red, #c41230);
  animation: gk-pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes gk-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.75); }
}

.gk-lives-current-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #0a0a0a;
  border: 1px solid #1a1a1a;
}

.gk-lives-current-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Separador de secção ─────────────────────────────────── */

.gk-lives-sep {
  border: none;
  border-top: 1px solid #141414;
  margin: 0;
}

/* ── Grid de lives anteriores ────────────────────────────── */

.gk-lives-grid-section {
  background-color: #000;
  padding: 4rem 5% 6rem;
}

.gk-lives-grid-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 4vw, 42px);
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f1f1f1;
  margin: 0 auto 2.5rem;
}

.gk-lives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ── Card de live anterior ───────────────────────────────── */

.gk-lives-card {
  display: flex;
  flex-direction: column;
  background-color: #0a0a0a;
  border: 1px solid #1a1a1a;
}

.gk-lives-card-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #111;
  overflow: hidden;
}

.gk-lives-card-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.gk-lives-card-info {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
}

.gk-lives-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 1.2vw, 18px);
  letter-spacing: 0.04em;
  color: #f1f1f1;
  margin: 0 0 0.4rem;
}

.gk-lives-card-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241, 241, 241, 0.4);
  margin: 0;
}

/* ── CTA: componente movido para gk-shared.css ─────────── */

/* ── Tablet ─────────────────────────────────────────────── */

@media screen and (max-width: 991px) {
  .gk-lives-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gk-lives-current {
    padding: 0 4% 3rem;
  }

  .gk-lives-grid-section {
    padding: 3rem 4% 5rem;
  }
}

/* ── Mobile ─────────────────────────────────────────────── */

@media screen and (max-width: 479px) {
  .gk-lives-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gk-lives-current,
  .gk-lives-grid-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
