/** Shopify CDN: Minification failed

Line 129:9 Expected identifier but found whitespace
Line 129:11 Unexpected "{"
Line 129:20 Expected ":"

**/

  .section-podcast {
    padding: 3rem 0;
    background-color: #fff;
    padding-bottom: 4rem;
}

  .pc-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }

  /* --- HEADER STYLES --- */
  .pc-heading {
    margin-bottom: 0.5rem;
}

  

  /* --- AUDIO PLAYER STYLES --- */
 
.pc-track-item {
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 37.5rem;
    margin: 0 auto;
    margin-top: 1.5rem;
}

  /* Grey Player Bar */
.pc-player-bar {
    background-color: #F0F6F2;
    border-radius: 8px;
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
}
  .pc-icon-play {
    display: block !important;
  }
  button.pc-btn-play.playing .pc-icon-play {
    display: none !important;
    }

  /* Play/Pause Button */
  .pc-btn-play {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
  }

  /* Triangle Icon (Pure CSS) */
  .pc-icon-play {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid  #000 ;
    border-radius: 2px;
    margin-left: 4px; /* Optical center */
  }

  /* Pause Icon (Double Bars) */
  .pc-icon-pause {
    display: none;
    width: 14px;
    height: 16px;
    border-left: 4px solid #000 ;
    border-right: 4px solid #000 ;
  }

  /* Playing State */
  .pc-btn-play.playing .pc-icon-play { display: none; }
  .pc-btn-play.playing .pc-icon-pause { display: block; }

  /* Progress Bar */
  .pc-progress-track {
    flex: 1;
    height: 3px;
    background-color: #d1d8d8; /* Light grey */
    position: relative;
    border-radius: 2px;
    cursor: pointer;
  }

  .pc-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #8c9b9b; /* Darker grey fill */
    border-radius: 2px;
    transition: width 0.1s linear;
  }

  /* Volume & Time */
  .pc-controls-right {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-size: 0.9rem;
    font-weight: 500;
    flex-shrink: 0;
  }

  .pc-vol-icon svg {
    width: 20px;
    height: 20px;
    fill: {{ section.settings.primary_color }};
    display: block;
  }

  /* Track Title Below */
.pc-track-title {
    margin-top: 8px;
    font-weight: 700;
    color: #2B2B2B;
    font-size: 1rem;
    padding-left: 5px;
    font-family: var(--font-heading-family);
}