/* =========================================================
   ARMY READY v3.5 — Setlist Page
   White / Weverse-inspired practice library
========================================================= */

.setlist-page {
  width: min(100%, 760px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 22px 112px;
  color: var(--text, #202124);
}

.setlist-header {
  margin-bottom: 28px;
}

.setlist-header .back-btn {
  margin: 0 0 30px;
  padding: 9px 0;
  border: 0;
  background: transparent;
  color: #6f757d;
  font-size: 14px;
  font-weight: 650;
}

.setlist-header .back-btn:hover,
.setlist-header .back-btn:focus-visible {
  color: var(--brand, #00b8a9);
  outline: none;
}

.setlist-header .card-label {
  margin: 0 0 8px;
  color: #7a8088;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.setlist-header h1 {
  margin: 0 0 24px;
  color: #202124;
  font-size: clamp(35px, 9vw, 38px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

/* Setlist-only title size; does not affect other page intros. */
.setlist-page .setlist-page-intro .page-intro-title {
  font-size: clamp(28px, 4vw, 38px);
}

.song-search {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  border: 1px solid #dfe3e7;
  border-radius: 16px;
  background: #f7f8f9;
  color: #202124;
  font: inherit;
  font-size: 15px;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.song-search::placeholder {
  color: #9aa0a6;
}

.song-search:focus {
  border-color: var(--brand, #00b8a9);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 184, 169, .10);
}

.setlist-page .song-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #eceff1;
}

.setlist-page .song-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 76px;
  padding: 16px 4px;
  border: 0;
  border-bottom: 1px solid #eceff1;
  border-radius: 0;
  background: transparent;
  color: #202124;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
}

.setlist-page .song-item:hover {
  background: #fafbfb;
}

.setlist-page .song-item:focus-visible {
  outline: 2px solid rgba(0, 184, 169, .35);
  outline-offset: -2px;
}

.setlist-page .song-number {
  color: var(--brand, #00b8a9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.setlist-page .song-name {
  min-width: 0;
  overflow: hidden;
  color: #202124;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.setlist-page .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #70757a;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.setlist-page .status .status-check {
  color: var(--brand, #00b8a9);
  font-size: 15px;
  font-weight: 900;
}

@media (max-width: 560px) {
  .setlist-page {
    padding: 24px 20px 96px;
  }

  .setlist-header .back-btn {
    margin-bottom: 24px;
  }

  .setlist-header h1 {
    margin-bottom: 20px;
  }

  .setlist-page .song-item {
    min-height: 70px;
    grid-template-columns: 38px minmax(0, 1fr) auto;
  }

  .setlist-page .song-name {
    font-size: 16px;
  }

  .setlist-page .status {
    font-size: 12px;
  }
}
