/* Base styles */
body {
  font-family: Arial, sans-serif;
  background-color: white;
  color: #000;
  margin: 0;
  padding: 0;
}

/* Container for the whole page */
.podcasts-page {
  margin: 0 auto;
}

/* Section header */
.section-title {
padding: 3rem;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.blue-dot {
  width: 1.6rem;
  height: 1.6rem;
  background-color: #006699;
  border-radius: 50%;
  margin-left: 0.5rem;
}

/* Divider below the title */
.horizontal-divider {
  border: none;
  border-top: 1px solid #000;
  margin: 1rem 0 2rem 0;
}

/* Intro section */
.intro-section {
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: center; /* ✅ Vertically centers children */
}

.intro-text {
padding: 2rem 7rem;
  flex: 1 1 60%;
  font-size: 1rem;
  line-height: 1.6;
  justify-content: center;
}

.intro-image {
  flex: 1 1 35%;
}

.intro-image img {
  width: 100%;
  max-width: 600px; /* ✅ LIMIT max size */
  height: auto;
  border-radius: 6px;
  display: block;
}

/* Grid layout for podcast cards */
.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 2px solid black;
  position: relative;
}

/* Individual podcast card */
.podcast-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 4rem 2rem 5rem;
  border-bottom: 2px solid black;
  background-color: #fff;
  box-sizing: border-box;
}

/* Add right border to only the first column (left-side cards) */
.podcast-card:nth-child(2n-1) {
  border-right: 2px solid black;
}

/* Maintain equal height in each row */
.podcast-card {
  height: 100%;
}

/* Speaker image */
.podcast-card img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 10%;
  flex-shrink: 0;
}

/* Speaker name + arrow */
.podcast-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

/* Speaker description */
.podcast-card p {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* View All Button */
.view-all {
padding: 3rem;
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.view-all button {
  padding: 0.6rem 1.2rem;
  border: 1px solid #000;
  background-color: #fff;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.view-all button:hover {
  background-color: #f0f0f0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .intro-section {
    flex-direction: column;
  }

  .intro-text,
  .intro-image {
    flex: 1 1 100%;
  }

  .podcasts-grid {
    grid-template-columns: 1fr;
  }

  .podcast-card {
    flex-direction: row;
    align-items: center;
    border-right: none;
  }

  .podcast-card h3 {
    font-size: 0.95rem;
  }

  .podcast-card p {
    font-size: 0.9rem;
  }

  /* Remove right border entirely on mobile */
  .podcast-card:nth-child(2n-1) {
    border-right: none;
  }

  .podcasts-grid::after {
    display: none;
  }
}

.hidden {
  display: none;
}

/* Podcast card */
.podcast-card h3{
  display:flex;
  align-items:center;
  gap:.5rem;
  font-weight:800;
  font-size:1.05rem;
  margin:0 0 .35rem;
}

/* Arrow reused from your other pages */
.arrow{
  width: 20px; height: 20px;
  position: relative;
  flex-shrink: 0;
}
.arrow::before{
  content:"";
  position:absolute; inset:0; margin:auto;
  width:6px; height:6px;
  border-right:2px solid #000;
  border-top:2px solid #000;
  transform: rotate(45deg) translate(0, -1px);
}

.podcast-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.podcast-card:hover {
  /* transform: scale(1.02); */
  transition: transform 0.2s ease;
}

.podcasts-grid > .podcast-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
/* must be after all .podcast-card rules */
.hidden {
  display: none !important;
}
