/* ============================================================
   MIMI CROSS — Lyrics Page Styles
   ============================================================ */

.lyrics-section {
  background: var(--off-white);
}

.lyrics-note {
  font-size: 0.8rem;
  color: var(--slate-lt);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* ---- Grid ---- */
.lyrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

/* ---- Card ---- */
.lyric-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.lyric-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lyric-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.lyric-card:hover::before { opacity: 1; }

/* Wide card spans 2 columns */
.lyric-card--wide {
  grid-column: span 2;
}

/* ---- Card Header ---- */
.lyric-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.lyric-card-header h3 {
  font-size: 1.1rem;
  color: var(--navy);
  flex: 1;
}

.lyric-listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,147,74,0.35);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
}
.lyric-listen-btn svg {
  width: 14px; height: 14px;
  fill: currentColor;
}
.lyric-listen-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ---- Lyrics Text ---- */
.lyric-body {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--slate);
  white-space: pre-wrap;
  font-weight: 400;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  overflow: visible;
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.lyric-body::-webkit-scrollbar { width: 4px; }
.lyric-body::-webkit-scrollbar-track { background: transparent; }
.lyric-body::-webkit-scrollbar-thumb { background: rgba(184,147,74,0.4); border-radius: 4px; }

/* ---- Responsive ---- */
@media (max-width: 780px) {
  .lyrics-grid {
    grid-template-columns: 1fr;
  }
  .lyric-card--wide {
    grid-column: span 1;
  }
}
