/* Podcast & Conversations Section */
.podcast-conversations-section {
  min-height: 100vh;
  padding: 120px 40px 100px 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Light overlay to make background very subtle */
.podcast-conversations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.65);
  z-index: 1;
  pointer-events: none;
}

.podcast-conversations-section .container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

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

.podcast-conversations-section .site-logo {
  height: 48px;
  width: auto;
  display: block;
}

/* Intro Text */
.pc-intro {
  max-width: 1400px;
  margin: 0 auto 80px auto;
  text-align: center;
}

.pc-intro p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.pc-intro strong {
  font-weight: 600;
  color: #000000;
}

.pc-intro em {
  font-style: italic;
  font-weight: 500;
}

/* Cards Container */
.pc-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  max-width: 1500px;
  margin: 0 auto;
}

/* Individual Card */
.pc-card {
  background: transparent;
  padding: 70px 60px;
  border-radius: 16px;
  border: 2px solid #000;
  box-shadow: none;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 3;
}

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

/* Card Title */
.pc-card-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(270deg, #FF4B2B, #8e44ad, #1e90ff, #FF4B2B);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: titleGradientFlow 8s ease infinite;
}

@keyframes titleGradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Card Description */
.pc-card-description {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #000000;
  margin: 0;
  flex-grow: 1;
  font-family: 'Poppins', sans-serif;
}

/* View More Button */
.pc-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

.pc-btn:hover {
  background: #333;
  transform: scale(1.02);
}

/* Tablet Responsive (Portrait) */
@media (max-width: 1024px) {
  .pc-cards-container {
    gap: 40px;
    max-width: 900px;
  }

  .pc-card {
    padding: 40px 32px;
  }

  .pc-card-title {
    font-size: 1.8rem;
  }

  .pc-card-description {
    font-size: 1.05rem;
  }
}

/* Mobile Responsive (Vertical) */
@media (max-width: 768px) {
  .podcast-conversations-section {
    padding: 110px 15px 40px 15px;
    min-height: auto;
  }

  .podcast-conversations-section .logo-container {
    top: 10px;
    left: 10px;
  }

  .podcast-conversations-section .site-logo {
    height: 32px;
  }

  .pc-intro {
    margin-bottom: 40px;
  }

  .pc-intro p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .pc-cards-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pc-card {
    padding: 32px 24px;
  }

  .pc-card-title {
    font-size: 1.6rem;
  }

  .pc-card-description {
    font-size: 1rem;
  }

  .pc-btn {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

/* Mobile Landscape (Horizontal Screen) */
@media (max-width: 900px) and (orientation: landscape) {
  .podcast-conversations-section {
    min-height: auto;
    padding: 80px 20px 60px 20px;
  }

  .pc-intro {
    margin-bottom: 40px;
  }

  .pc-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .pc-card {
    padding: 28px 24px;
  }

  .pc-card-title {
    font-size: 1.5rem;
  }

  .pc-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .pc-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .pc-intro p {
    font-size: 0.95rem;
  }

  .pc-card {
    padding: 28px 20px;
  }

  .pc-card-title {
    font-size: 1.5rem;
  }

  .pc-card-description {
    font-size: 0.95rem;
  }
}

