
  /* Set a consistent height for the image */
  .image-crop {
    height: 200px;
    object-fit: cover;
  }

  /* Give the card a slight shadow for depth */
  .custom-card {
    box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2);
    transition: all 0.3s ease-in-out;
  }

  /* On hover, change the shadow for interactive feedback */
  .custom-card:hover {
    box-shadow: 0 5px 15px 0 hsla(0, 0%, 0%, 0.2);
    transform: scale(1.03);
  }

  /* Style the title for more visual prominence */
  .card-title {
    color: #333;
    font-size: 1.25em;
    font-weight: 700;
  }

  /* Make the text color slightly muted for contrast */
  .card-text {
    color: #666;
  }

  /* Make the audio player blend into the card */
  .audio-player {
    width: 100%;
    border: none;
    outline: none;
    background-color: #f5f5f5;
  }
