.audio-container {
  max-width: 500px;
  margin: 3rem auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Source Sans 3", sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audio-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.audio-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin-bottom: 1rem;
}

.audio-cover {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.audio-text h2 {
  font-size: 1.2rem;
  color: #0d47a1;
  margin: 0;
}

.audio-text p {
  font-size: 0.9rem;
  color: #555;
  margin: 0.3rem 0 0;
}

audio {
  width: 100%;
  outline: none;
  border-radius: 12px;
  background-color: #f0f4ff;
}

/* Responsive Design */
@media (max-width: 600px) {
  .audio-info {
    flex-direction: column;
    text-align: center;
  }

  .audio-cover {
    width: 100%;
    height: 30vh;
  }

  .audio-text h2 {
    font-size: 1rem;
  }

  .audio-text p {
    font-size: 0.85rem;
  }
}
