/* About me section */
.about-me-p {
  font-size: 1.2rem;
  color: var(--clr-text-muted);
  margin: 0 auto 1.5rem auto;
  text-align: center;
}

@media (max-width: 768px) {
  .about-me-p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

.played-ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .played-ul {
    grid-template-columns: 1fr;
  }
}

.played-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  background-color: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.played-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--clr-secondary);
}

.played-name {
  font-size: 1.5rem;
  color: var(--clr-secondary);
  margin-bottom: 0.5rem;
}

.played-date {
  font-size: 1rem;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.program-title {
  font-size: 1.2rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
}

.composition-item {
  margin-bottom: 1rem;
}

.composition-name {
  font-size: 1rem;
  color: var(--clr-text-main);
}

.composer-name {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.recording-link {
  font-size: 0.9rem;
  font-weight: 600;
}

.program-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
