.buzzsprout-player {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 2rem auto;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.buzzsprout-episode-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 0.5rem;
  border-right: 2px solid rgba(0,0,0,0.05);
}

.buzzsprout-episode-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0,0,0,0.03);
  padding: 0.75rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.buzzsprout-episode-item:hover {
  background: rgba(0,0,0,0.08);
}

.buzzsprout-episode-item.active {
  background: #0073e6;
  color: #fff;
}

.buzzsprout-episode-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.buzzsprout-ep-meta h4 {
  font-size: 0.95rem;
  margin: 0;
}

.buzzsprout-ep-date {
  font-size: 0.8rem;
  color: #666;
  margin: 0.25rem 0 0;
}

.buzzsprout-episode-item.active .buzzsprout-ep-date {
  color: #e0e0e0;
}

.buzzsprout-episode-detail {
  padding: 1rem;
}

.buzzsprout-detail-image {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.buzzsprout-detail-title {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
  color: #222;
}

.buzzsprout-detail-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.buzzsprout-detail-desc {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.buzzsprout-detail-audio {
  width: 100%;
  border-radius: 6px;
}

@media (max-width: 800px) {
  .buzzsprout-player {
    grid-template-columns: 1fr;
  }

  .buzzsprout-episode-list {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    padding-bottom: 1rem;
  }

  .buzzsprout-episode-item {
    flex-direction: column;
    width: 150px;
    text-align: center;
  }
}
