/* Podcast Listing Page Styles */

/* Hero Section */
.podcast-hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.podcast-hero .container {
  max-width: 800px;
}

.podcast-icon {
  margin-bottom: 25px;
}

.podcast-cover {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}

.podcast-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text);
}

.podcast-tagline {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.podcast-hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* Listen Platforms */
.listen-platforms {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}

.listen-platforms h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--color-text);
}

.platform-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.platform-link {
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.platform-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.platform-link img {
  height: 50px;
  width: auto;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 1rem;
}

.platform-btn i {
  font-size: 1.2rem;
}

/* Episodes Section */
.podcast-episodes {
  padding: 60px 0 80px;
}

.season-heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--color-primary);
  color: var(--color-text);
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: row;
  gap: 25px;
  margin-bottom: 50px;
}

/* Episode Card */
.podcast-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  position: relative;
}

.podcast-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.episode-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.podcast-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.4;
}

.podcast-card:hover h3 {
  color: var(--color-primary);
}

.podcast-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .episodes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .podcast-hero {
    padding: 60px 0 40px;
  }

  .podcast-hero h1 {
    font-size: 2rem;
  }

  .podcast-cover {
    width: 150px;
    height: 150px;
  }

  .platform-link img {
    height: 40px;
  }

  .episodes-grid {
    grid-template-columns: 1fr;
  }

  .podcast-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .podcast-hero h1 {
    font-size: 1.75rem;
  }

  .podcast-tagline {
    font-size: 1.1rem;
  }

  .platform-links {
    gap: 20px;
  }

  .platform-link img {
    height: 35px;
  }
}
