article {
  padding-top: 2px;
  min-height: 30vh;
}  
  
  .pif-podcasts {
    background: #f5f5f7;
    padding: 20px 0 40px;
  }

  .pif-podcasts__wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    color: #1f2933;
    font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .vetvault-header {
    text-align: center;
    margin-bottom: 30px;
  }

  .vetvault-kicker {
    font-size: 0.85rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #B5451C;
    font-weight: 700;
    margin-bottom: 6px;
  }

  .vetvault-title {
    font-family: "Merriweather", Georgia, "Times New Roman", serif;
    font-size: 1.9rem;
    margin-bottom: 10px;
  }

  .vetvault-subtitle {
    font-size: 1rem;
    color: #4b5563;
    max-width: 750px;
    margin: 0 auto 14px;
  }

  .vetvault-meta {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 10px;
  }

  .vetvault-note {
    font-size: 0.85rem;
    color: #4b5563;
    background: #e0f2fe;
    border-left: 3px solid #1c8cb5;
    padding: 10px 12px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 6px;
  }

  /* Sommaire */
  .episodes-nav {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
    border: 1px solid rgba(148, 163, 184, 0.3);
  }

  .episodes-nav h2 {
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .episodes-nav h2 span.icon {
    font-size: 1.1rem;
  }

  .episodes-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
  }

  .episodes-nav li {
    font-size: 0.9rem;
  }

  .episodes-nav a {
    text-decoration: none;
    color: #1c8cb5;
    padding: 4px 10px;
    border-radius: 999px;
    background: #e0f2fe;
    transition: background .2s ease, transform .1s ease;
    white-space: nowrap;
  }

  .episodes-nav a:hover {
    background: #bae6fd;
    transform: translateY(-1px);
  }

  /* Bloc épisodes */
  .episodes-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .episode-card {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 16px 18px;
    box-shadow: 0 10px 24px rgba(15,23,42,0.06);
    border: 1px solid rgba(148, 163, 184, 0.3);
    overflow: hidden;
  }

  .episode-header {
    margin-bottom: 10px;
    padding-right: 60px;
  }

  .episode-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 999px;
    background: #aba075;
    color: #92400e;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
  }

  .episode-pill span.icon {
    font-size: 0.95rem;
  }

  .episode-title {
    font-family: "Merriweather", Georgia, serif;
    font-size: 1.1rem;
    margin-bottom: 2px;
  }

  .episode-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
  }

  .episode-speakers {
    font-size: 0.85rem;
    color: #4b5563;
    margin-top: 4px;
  }

  .episode-audio {
    margin: 8px 0 12px;
  }

  .episode-audio audio {
    width: 100%;
  }

  .episode-body {
    font-size: 0.9rem;
  }

  .episode-summary {
    margin-bottom: 6px;
    color: #374151;
  }

  .episode-topics-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 4px;
  }

  .episode-topics {
    margin-left: 16px;
    padding-left: 4px;
    font-size: 0.88rem;
    color: #374151;
  }

  .episode-topics li {
    margin-bottom: 3px;
  }

  /* Accordéon */
  .episode-card[data-collapsed="true"] .episode-body {
    display: none;
  }

  .toggle-details {
    position: absolute;
    top: 14px;
    right: 14px;
    border: none;
    background: #69bcd7;
    color: #0f172a;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 0.75rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .toggle-details span.chevron {
    transition: transform .2s ease;
    font-size: 0.8rem;
  }

  .episode-card[data-collapsed="true"] .toggle-details span.chevron {
    transform: rotate(90deg);
  }

  /* Badge podcast */
  .episode-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-size: 0.8rem;
    padding: 5px 9px;
    border-radius: 999px;
    background: #0079b2;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(15,23,42,0.18);
  }

  .episode-badge span.icon {
    font-size: 1rem;
  }

  /* On neutralise le style Materialize sur cette page uniquement */
.pif-podcasts button:focus,
.pif-podcasts .btn:focus {
  outline: none;
  background-color: #69bcd7 !important;   /* ou la couleur que tu veux */
  box-shadow: none !important;
}


.vetvault-link {
  margin-top: 50px;
  padding: 25px;
  background: #f3f7f9;
  border-left: 5px solid #DDE892;
  border-radius: 6px;
}

.vetvault-link h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vetvault-link p {
  color: #444;
  margin-bottom: 15px;
  line-height: 1.5;
}

.vetvault-button {
  display: inline-block;
  padding: 12px 20px;
  background: #DDE892;
  color: black;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.vetvault-button:hover {
  background: #aec41f;
  color: black !important;
}


  @media (max-width: 768px) {
    .pif-podcasts__wrapper {
      padding: 0 12px;
    }
    .episode-header {
      padding-right: 0;
    }
    .toggle-details {
      position: static;
      margin-top: 8px;
    }
    .episode-badge {
      position: static;
      margin-top: 10px;
    }
  }