/* ── Session Calendar ── */

.fll-months {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

@media (min-width: 640px) {
  .fll-months {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fll-month {
  border: 1px solid var(--border-light, #e5e7eb);
  border-radius: var(--radius-card, 0.5rem);
  overflow: hidden;
  font-size: 0.9rem;
}

.fll-month-hdr {
  background: var(--color-lego-blue, #0055bf);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 0.65rem 0;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.fll-week-labels,
.fll-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.fll-week-labels {
  background: #f3f4f6;
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
  padding: 0.4rem 0;
}

.fll-grid {
  padding: 0.5rem;
  gap: 3px;
}

.fll-day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: default;
}

.fll-session  { background: var(--color-lego-blue, #0055bf); color: #fff; font-weight: 600; }
.fll-first    { background: #1d4ed8; color: #fff; font-weight: 700; outline: 3px solid #93c5fd; outline-offset: 1px; }
.fll-regional { background: #d97706; color: #fff; font-weight: 700; }
.fll-state    { background: #16a34a; color: #fff; font-weight: 700; }

.fll-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #4b5563;
}

.fll-legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Registration Timeline ── */

.reg-timeline {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
}

.reg-item {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
}

.reg-stem {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reg-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--ev-color, #9ca3af);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--ev-color, #9ca3af);
  flex-shrink: 0;
  margin-top: 0.3rem;
  z-index: 1;
}

.reg-connector {
  width: 2px;
  flex: 1;
  background: #e5e7eb;
  margin: 4px 0;
  min-height: 1.5rem;
}

.reg-item:last-child .reg-connector { display: none; }

.reg-body {
  padding-bottom: 1.5rem;
}

.reg-item:last-child .reg-body { padding-bottom: 0; }

.reg-date-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #313131;
  margin-bottom: 0.15rem;
}

.reg-event-name {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.reg-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  margin-top: 0.35rem;
  letter-spacing: 0.03em;
}

.reg-pill-members { background: #d1fae5; color: #065f46; }
.reg-pill-open    { background: #dcfce7; color: #16a34a; }
.reg-pill-closed  { background: #fee2e2; color: #b91c1c; }
.reg-pill-season  { background: #dbeafe; color: #1d4ed8; }

.reg-ev-members { --ev-color: #059669; }
.reg-ev-open    { --ev-color: #22c55e; }
.reg-ev-closed  { --ev-color: #dc2626; }
.reg-ev-season  { --ev-color: var(--color-lego-blue, #0055bf); }
