/* PSN Podcast Page Styles */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1a5490 0%, #4a90e2 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 60px 0 40px;
  color: white;
  text-align: left;
  overflow: hidden;
  min-height: 300px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 84, 144, 0.85);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 0;
  opacity: 0.95;
}

/* Insights Section */
.insights-section {
  padding: 40px 0;
  background-color: #f8f9fa;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

.podcast-section-title {
  font-size: 2rem !important;
  font-weight: 700 !important;
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Podcast Episodes */
.podcast-episodes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.episode-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.episode-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.guest-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid #f0f0f0;
}

.guest-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
}

.guest-title {
  font-size: 1rem;
  color: #666;
  margin-bottom: 0.25rem;
}

.guest-org {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a5490;
  margin-bottom: 1rem;
}

.episode-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
  min-height: 2.5rem;
}

.episode-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.podcast-link {
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.podcast-link.spotify {
  background-color: #1DB954;
  color: white;
}

.podcast-link.spotify:hover {
  background-color: #1aa34a;
}

.podcast-link.apple {
  background-color: #000;
  color: white;
}

.podcast-link.apple:hover {
  background-color: #333;
}

/* Partner Info Section */
.partner-info-section {
  padding: 60px 0;
  background-color: white;
}

.partner-intro {
  font-size: 1.3rem;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1.5rem;
  color: #333;
}

.partner-description {
  font-size: 1.1rem;
  text-align: left;
  color: #666;
  line-height: 1.6;
}

.spotify-embed {
  margin-left: 2rem;
}

@media (max-width: 991px) {
  .spotify-embed {
    margin-left: 0;
    margin-top: 2rem;
  }

  .partner-intro,
  .partner-description {
    text-align: center;
  }
}

/* Partner Benefits Section */
.partner-benefits-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.benefit-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin-top: 3rem;
}

.cta-section .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  background-color: #ff6b00;
  border-color: #ff6b00;
  color: white;
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  background-color: #e55f00;
  border-color: #e55f00;
  transform: translateY(-2px);
}


/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.5rem;
  }
  
  .podcast-section-title {
    font-size: 1.75rem !important;
  }

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

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

@media (max-width: 576px) {
  .hero-section {
    padding: 40px 0 30px;
    min-height: 250px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .podcast-section-title {
    font-size: 1.5rem !important;
  }

  .episode-card {
    padding: 1.5rem;
  }

  .guest-image {
    width: 120px;
    height: 120px;
  }
}
