/* Track Page Styles */

.lyrics-container {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  color: #e9ecef;
}

.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Scripture cards */
.card blockquote {
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lyrics-container {
    font-size: 1rem;
    padding: 1.5rem !important;
  }
}

