.verses-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.verse-box {
  position: relative;
  border: 2px solid #4a90e2;
  border-radius: 12px;
  background: var(--color-surface-hover);
  padding: 2.5rem 1.5rem 1.5rem;
  box-shadow: 0 2px 8px rgba(74,144,226,0.08);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="dark"] .verse-box {
  border-color: #6eb3ff;
  box-shadow: 0 2px 8px rgba(110,179,255,0.12);
}

.verse-date {
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.verse-text {
  text-align: justify;
  margin-bottom: 1.5rem;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.verse-reference {
  text-align: right;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}

.verse-version {
  color: var(--color-text-muted);
  transition: color 0.3s ease;
}

.verse-commentary {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  transition: color 0.3s ease, border-color 0.3s ease;
}
