/* === Etudes Page Styling for The Jazz Assignment === */

.etudes-page {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  text-align: left;
}

.etudes-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
}

/* The list section */
.etude-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

/* Each etude link card */
.etude-link {
  display: block;
  padding: 1.1rem 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  color: #b7d8ff;
  text-decoration: none;
  font-size: 1.1rem;

  transition: all 0.25s ease;
}

/* Hover state */
.etude-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateX(4px);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .etudes-title {
    font-size: 2rem;
  }
}
