.episode-detail-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #111;
  color: white;
  border-radius: 8px;
}

.episode-detail-container img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 6px;
}

.episode-card {
  background-color: #1f1f1f;
  padding: 1rem;
  border-radius: 8px;
  width: 220px;
}

.episode-card img {
  width: 100%;
  border-radius: 6px;
}

.episode-card h3 {
  font-size: 1rem;
  margin: 0.5rem 0 0.3rem;
  color: #fff;
}

.episode-card p {
  font-size: 0.875rem;
  color: #ccc;
}

.episode-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
