/* Podcasts Page Styles */

body {
  margin: 0;
  padding: 0;
  background: #fafafa;
  overflow-x: hidden;
}

/* Logo positioning (consistent with other sections) */
.logo-container {
  position: absolute;
  top: 28px;
  left: 38px;
  z-index: 100;
}

.site-logo {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.site-logo:hover {
  opacity: 0.8;
}

/* Main Container */
.podcast-page-container {
  display: grid;
  grid-template-columns: 1fr 450px;
  min-height: 100vh;
  max-width: 1600px;
  margin: 0 auto;
  gap: 0;
}

/* Left Column: Main Content */
.podcast-main-content {
  background: transparent;
  padding: 180px 60px 60px 120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.podcast-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #2B2D42;
  margin: 0;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.podcast-subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: #000;
  margin: -16px 0 0 0;
  font-family: 'Poppins', sans-serif;
}

.podcast-description {
  margin: 8px 0;
}

.podcast-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.podcast-description strong {
  font-weight: 600;
  color: #2B2D42;
}

.podcast-description em {
  font-style: italic;
}

/* Host Section */
.host-section {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  align-items: flex-start;
}

.host-image {
  flex-shrink: 0;
  width: 450px;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
}

.host-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.host-content {
  flex: 1;
}

.host-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2B2D42;
  margin: 0 0 12px 0;
  font-family: 'Poppins', sans-serif;
}

.host-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0 0 12px 0;
}

.host-content em {
  font-style: italic;
}

/* Host Contact Section (spans full width below image + text) */
.host-contact-section {
  margin-top: 20px;
  width: 100%;
}

.host-contact {
  margin: 0 0 12px 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.host-contact a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
}

.host-contact a:hover {
  text-decoration: underline;
}

.host-footer {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

.host-footer a {
  color: #1e90ff;
  text-decoration: none;
  font-weight: 500;
}

.host-footer a:hover {
  text-decoration: underline;
}

/* Right Column: Episodes Sidebar */
.podcast-sidebar {
  background: transparent;
  border-left: 1px solid #e0e0e0;
  padding: 80px 32px 40px 32px;
}

.episodes-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.episodes-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2B2D42;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.episodes-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: -8px 0 0 0;
}

.subscribe-btn {
  background: #CC0000;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.subscribe-btn:hover {
  background: #E00000;
  transform: scale(1.02);
}

/* Episode List */
.episode-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 16px;
}

.episode-card {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.3s ease;
}

.episode-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.episode-number {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2B2D42;
  margin: 0 0 6px 0;
  font-family: 'Poppins', sans-serif;
}

.episode-guests {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 10px 0;
}

.episode-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0 0 14px 0;
}

.episode-description em {
  font-style: italic;
}

.episode-footnote {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  margin: 8px 0 10px 0;
}

.episode-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.episode-btn {
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-watch {
  background: #CC0000;
  color: #fff;
  border-radius: 20px;
  padding: 10px 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.btn-watch:hover {
  background: #E00000;
}

/* Tablet Responsive */
@media (max-width: 1200px) {
  .podcast-page-container {
    grid-template-columns: 1fr 400px;
  }

  .podcast-main-content {
    padding: 160px 40px 60px 100px;
  }

  .podcast-title {
    font-size: 3rem;
  }

  .podcast-subtitle {
    font-size: 1.8rem;
  }
}

/* Mobile Responsive (Stack Layout) */
@media (max-width: 968px) {
  .logo-container {
    top: 10px;
    left: 10px;
  }

  .site-logo {
    height: 32px;
  }

  .podcast-page-container {
    grid-template-columns: 1fr;
    display: block;
  }

  .podcast-main-content {
    padding: 60px 20px 40px 20px;
  }

  .podcast-title {
    font-size: 2.5rem;
  }

  .podcast-subtitle {
    font-size: 1.5rem;
  }

  .podcast-description p {
    font-size: 1rem;
  }

  .host-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .host-image {
    width: 300px;
    height: auto;
  }

  .host-contact-section {
    text-align: center;
    margin-top: 24px;
  }

  .podcast-sidebar {
    border-left: none;
    border-top: 1px solid #e0e0e0;
    padding: 40px 20px;
  }

  .episodes-section {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Mobile Landscape */
@media (max-width: 968px) and (orientation: landscape) {
  .podcast-main-content {
    padding: 60px 20px 40px 20px;
  }

  .host-section {
    flex-direction: row;
    text-align: left;
  }

  .host-image {
    width: 220px;
    height: auto;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .podcast-main-content {
    padding: 50px 15px 30px 15px;
  }

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

  .podcast-subtitle {
    font-size: 1.3rem;
  }

  .podcast-description p {
    font-size: 0.95rem;
  }

  .host-content h3 {
    font-size: 1.3rem;
  }

  .host-content p {
    font-size: 0.95rem;
  }

  .host-image {
    width: 200px;
    height: auto;
  }

  .podcast-sidebar {
    padding: 30px 15px;
  }

  .episodes-title {
    font-size: 1.5rem;
  }

  .episode-actions {
    flex-direction: row;
  }
}

