/* Podcast Styles */
.podcast-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.podcast-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.episode-info {
  flex: 1;
}

.play-btn {
  background: #0c0e84;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.play-btn:hover {
  background: #e04900;
  transform: scale(1.05);
}

.play-btn:active {
  transform: scale(0.95);
}

.episode-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.episode-title:hover {
  color: #ff5500;
  text-decoration: none;
}

.episode-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #666;
}

.episode-date,
.episode-duration {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.episode-date::before {
  content: "📅";
  font-size: 0.8rem;
}

.episode-duration::before {
  content: "⏱️";
  font-size: 0.8rem;
}

.episode-description {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1rem 0;
}

.episode-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid;
}

.read-more-btn {
  background: #fff;
  color: #333;
  border-color: #ddd;
}

.read-more-btn:hover {
  background: #f8f9fa;
  color: #ff5500;
  border-color: #ff5500;
  text-decoration: none;
}

.spotify-btn {
  background: #1db954;
  color: white;
  border-color: #1db954;
  padding: 0.5rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  justify-content: center;
}

.spotify-btn:hover {
  background: #28c65f;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.youtube-btn {
  background: #ff0000;
  color: white;
  border-color: #ff0000;
  padding: 0.5rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  justify-content: center;
}

.youtube-btn:hover {
  background: #cc0000;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.action-btn i {
  font-size: 1.4rem;
}

/* Search and animations */
.podcast-item {
  transition: opacity 0.3s ease;
}

.no-results-message {
  margin: 2rem 0;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}

.no-results-message i {
  color: #ccc;
}

.wave-container {
  width: 100%;
  margin-top: 1rem;
  min-height: 70px;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e0e0;
  /* Container is hidden by default and shown via JavaScript when needed */
}
.text-buttons {
  display: inline-block;
  margin-top: 0.4rem;
  padding-top: 0.9rem;
  font-size: 1rem;
  color: #555;
}
.podcast-follow-us ul li{
  display: flex;
  font-size: 20px;
  transition: all 0.4s;
  justify-content: left;
  color: var(--heading-color);
}
.podcast-follow-us ul li a{
  font-size: 20px;
  color: var(--heading-color);
}
.podcast-follow-us ul li i{
  color: #1db954;
  font-size: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .podcast-item {
    padding: 1rem;
  }
  
  .podcast-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .episode-title {
    font-size: 1.2rem;
  }
  
  .episode-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .episode-actions {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .read-more-btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  
  .spotify-btn,
  .youtube-btn {
    width: 36px;
    height: 36px;
  }
  
  .play-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
    align-self: center;
  }
  
  .episode-description {
    font-size: 0.9rem;
  }
}