.solistes-planning,
.solistes-planning * { box-sizing: border-box; }

.solistes-planning {
  --lsp-bg: #080808;
  --lsp-panel: #0d0d0d;
  --lsp-line: #202020;
  --lsp-line-soft: #151515;
  --lsp-muted: #858585;
  --lsp-text: #f1f0eb;
  --lsp-gold: #c9a84c;
  --lsp-gold-soft: rgba(201,168,76,.11);
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid #181818;
  border-radius: 6px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255,255,255,.025), transparent 26%),
    var(--lsp-bg);
  color: var(--lsp-text);
  font-family: Arimo, Aileron, "Open Sauce", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.solistes-planning button { font: inherit; }

.lsp-header {
  padding: 34px 32px 28px;
  border-bottom: 1px solid var(--lsp-line-soft);
}
.lsp-eyebrow {
  margin: 0 0 11px;
  color: var(--lsp-gold);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 3.4px;
  text-transform: uppercase;
}
.lsp-title {
  max-width: 820px;
  margin: 0;
  color: var(--lsp-text);
  font-family: Anton, "Arial Narrow", Impact, sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.lsp-title::after {
  display: block;
  width: 62px;
  height: 2px;
  margin-top: 18px;
  background: var(--lsp-gold);
  content: "";
}

.lsp-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  padding: 20px 32px 18px;
  border-bottom: 1px solid var(--lsp-line-soft);
}
.lsp-filter-group { min-width: min(100%, 170px); }
.lsp-filter-label {
  margin-bottom: 10px;
  color: #666;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.lsp-filter-controls { display: flex; flex-wrap: wrap; gap: 7px; }
.lsp-chip,
.lsp-day-button { -webkit-appearance: none; appearance: none; cursor: pointer; }
.lsp-chip {
  min-height: 31px;
  padding: 6px 12px;
  border: 1px solid #353535;
  border-radius: 2px;
  background: transparent;
  color: #bdbdbd;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .2px;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}
.lsp-chip:hover,
.lsp-chip:focus-visible { border-color: #777; color: #fff; outline: none; }
.lsp-chip.is-active {
  border-color: rgba(201,168,76,.8);
  background: var(--lsp-gold-soft);
  color: #e6c776;
  font-weight: 800;
}

.lsp-days {
  display: flex;
  align-items: stretch;
  min-height: 52px;
  overflow-x: auto;
  padding: 0 32px;
  border-bottom: 1px solid var(--lsp-line-soft);
  scrollbar-width: thin;
  scrollbar-color: #2b2b2b transparent;
}
.lsp-day-button {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 6px;
  padding: 16px 16px 13px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #777;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .2px;
  white-space: nowrap;
}
.lsp-day-button:hover,
.lsp-day-button:focus-visible { color: #fff; outline: none; }
.lsp-day-button.is-active { border-bottom-color: var(--lsp-gold); color: #fff; }
.lsp-day-count { color: #555; font-size: 10px; font-weight: 800; }
.lsp-day-button.is-active .lsp-day-count { color: var(--lsp-gold); }
.lsp-day-divider { width: 1px; flex: 0 0 1px; margin: 12px 4px; background: #222; }

.lsp-list { padding: 4px 32px 46px; }
.lsp-day-section + .lsp-day-section { margin-top: 4px; }
.lsp-day-title {
  margin: 36px 0 0;
  padding: 0 0 12px;
  border-bottom: 1px solid #252525;
  color: var(--lsp-gold);
  font-family: Anton, "Arial Narrow", Impact, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.lsp-slot {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid #191919;
}
.lsp-slot.is-last { border-bottom: 0; }
.lsp-slot-main { display: grid; grid-template-columns: 2px minmax(0,1fr); gap: 18px; min-width: 0; }
.lsp-slot-bar { width: 2px; min-height: 52px; border-radius: 1px; opacity: .9; }
.lsp-slot-content { min-width: 0; }
.lsp-slot-time {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  color: #777;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: .35px;
}
.lsp-time-arrow { margin: 0 7px; color: #3d3d3d; }
.lsp-slot-name {
  overflow: hidden;
  margin: 0;
  color: var(--lsp-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -.1px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lsp-slot-site { margin-top: 6px; color: #8b8b8b; font-size: 12px; font-weight: 700; }
.lsp-slot-address { margin-top: 2px; color: #555; font-size: 11px; line-height: 1.4; }
.lsp-slot-badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
  max-width: 320px;
}
.lsp-badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 8px;
  border: 1px solid #303030;
  border-radius: 2px;
  color: #858585;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .75px;
  text-transform: uppercase;
  white-space: nowrap;
}
.lsp-badge-gi { border-color: rgba(238,238,238,.26); background: rgba(255,255,255,.025); color: #d9d9d9; }
.lsp-badge-nogi { border-color: rgba(201,168,76,.38); background: rgba(201,168,76,.07); color: #d8b85f; }
.lsp-badge-sol { border-color: rgba(201,168,76,.28); color: #c9a84c; }
.lsp-empty,
.lsp-noscript { padding: 70px 12px; color: #5c5c5c; font-size: 11px; font-weight: 700; letter-spacing: 2.6px; text-align: center; text-transform: uppercase; }

@media (max-width: 760px) {
  .solistes-planning { border-radius: 3px; }
  .lsp-header, .lsp-filters, .lsp-list { padding-right: 18px; padding-left: 18px; }
  .lsp-header { padding-top: 28px; padding-bottom: 24px; }
  .lsp-eyebrow { max-width: 340px; letter-spacing: 2.2px; }
  .lsp-filters { gap: 18px; }
  .lsp-filter-group { width: 100%; }
  .lsp-days { padding: 0 10px; }
  .lsp-day-button { padding-right: 13px; padding-left: 13px; font-size: 12px; }
  .lsp-slot { grid-template-columns: 1fr; gap: 12px; padding: 18px 0; }
  .lsp-slot-badges { justify-content: flex-start; max-width: none; padding-left: 20px; }
  .lsp-slot-name { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) { .lsp-chip { transition: none; } }
