/* Custom styles beyond Tailwind */
.custom-shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.footer-link {
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #4F46E5;
}

/* Audio player styling */
.audio-player {
  border-radius: 10px;
  overflow: hidden;
}

/* Video player styling */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}