/** Shopify CDN: Minification failed

Line 20:12 Expected identifier but found whitespace
Line 20:14 Unexpected "{"
Line 20:23 Expected ":"
Line 20:50 Unexpected "0"
Line 20:53 Unexpected "{"
Line 20:62 Expected ":"
Line 20:91 Expected ":"
Line 232:12 Expected identifier but found whitespace
Line 232:14 Unexpected "{"
Line 232:23 Expected ":"
... and 18 more hidden warnings

**/


/* CSS from section stylesheet tags */
.podcast-audio-section {
    padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
  }

  .podcast-audio-section .page-width {
    padding-left: 40px;
    padding-right: 40px;
  }

  .podcast-audio-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 3rem;
    color: #000;
  }

  .podcast-audio-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .podcast-audio-item {
    display: grid;
    grid-template-columns: 280px 1fr auto;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e5e5;
    align-items: center;
  }

  .podcast-audio-item:first-child {
    border-top: 1px solid #e5e5e5;
  }

  .podcast-audio-thumbnail {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
  }

  .podcast-audio-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .podcast-audio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
  }

  .podcast-audio-placeholder svg {
    width: 60px;
    height: 60px;
    color: #999;
  }

  .podcast-audio-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .podcast-audio-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: #000;
  }

  .podcast-audio-name {
    font-size: 0.95rem;
    margin: 0;
    color: #666;
    line-height: 1.5;
  }

  .podcast-audio-date {
    font-size: 0.9rem;
    margin: 0;
    color: #999;
  }

  .podcast-audio-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 240px;
  }

  .podcast-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    color: #fff;
  }

  .podcast-button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  .podcast-button-spotify {
    background: #000;
  }

  .podcast-button-spotify:hover {
    background: #333;
    transform: translateY(-2px);
  }

  .podcast-button-apple {
    background: #000;
  }

  .podcast-button-apple:hover {
    background: #333;
    transform: translateY(-2px);
  }

  .podcast-button-custom {
    background: #000;
  }

  .podcast-button-custom:hover {
    background: #333;
    transform: translateY(-2px);
  }

  /* Mobile Responsive Styles */
  @media screen and (max-width: 989px) {
    .podcast-audio-section .page-width {
      padding-left: 20px;
      padding-right: 20px;
    }

    .podcast-audio-heading {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .podcast-audio-item {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 1.5rem 0;
    }

    .podcast-audio-thumbnail {
      max-width: 280px;
      margin: 0 auto;
    }

    .podcast-audio-buttons {
      width: 100%;
      min-width: auto;
    }

    .podcast-button {
      width: 100%;
    }
  }

  @media screen and (max-width: 749px) {
    .podcast-audio-heading {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }

    .podcast-audio-thumbnail {
      max-width: 100%;
    }

    .podcast-audio-title {
      font-size: 1.1rem;
    }

    .podcast-audio-name {
      font-size: 0.875rem;
    }

    .podcast-audio-date {
      font-size: 0.8rem;
    }

    .podcast-button {
      padding: 0.65rem 1.25rem;
      font-size: 0.8rem;
    }

    .podcast-button svg {
      width: 14px;
      height: 14px;
    }
  }
.podcast-hero-section {
    padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
  }

  .podcast-hero-section .page-width {
    padding-left: 40px;
    padding-right: 40px;
  }

  .podcast-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
  }

  .podcast-hero-content {
    max-width: 900px;
  }

  .podcast-hero-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem;
  }

  .podcast-hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
  }

  .podcast-hero-description p {
    margin: 0;
  }

  .podcast-hero-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .podcast-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .podcast-hero-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
  }

  .podcast-hero-placeholder svg {
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.3);
  }

  /* Mobile Responsive Styles */
  @media screen and (max-width: 989px) {
    .podcast-hero-section .page-width {
      padding-left: 20px;
      padding-right: 20px;
    }

    .podcast-hero-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .podcast-hero-heading {
      font-size: 2.25rem;
    }

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

    .podcast-hero-image {
      max-width: 400px;
      margin: 0 auto;
    }
  }

  @media screen and (max-width: 749px) {
    .podcast-hero-section {
      padding: {{ section.settings.padding_top | divided_by: 1.5 }}px 0 {{ section.settings.padding_bottom | divided_by: 1.5 }}px;
    }

    .podcast-hero-heading {
      font-size: 1.75rem;
    }

    .podcast-hero-description {
      font-size: 0.9375rem;
    }

    .podcast-hero-image {
      max-width: 100%;
    }
  }
.podcast-videos-section {
    padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
  }

  .podcast-videos-section .page-width {
    padding-left: 40px;
    padding-right: 40px;
  }

  .podcast-videos-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 3rem;
    color: #000;
  }

  .podcast-videos-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .podcast-video-item {
    display: grid;
    grid-template-columns: 360px 1fr auto;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e5e5;
    align-items: center;
  }

  .podcast-video-item:first-child {
    border-top: 1px solid #e5e5e5;
  }

  .podcast-video-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
  }

  .podcast-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .podcast-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
  }

  .podcast-video-placeholder svg {
    width: 60px;
    height: 60px;
    color: #999;
  }

  .podcast-video-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .podcast-video-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: #000;
  }

  .podcast-video-name {
    font-size: 0.95rem;
    margin: 0;
    color: #666;
    line-height: 1.5;
  }

  .podcast-video-date {
    font-size: 0.9rem;
    margin: 0;
    color: #999;
  }

  .podcast-video-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 240px;
  }

  .podcast-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    color: #fff;
  }

  .podcast-button svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  .podcast-button-youtube {
    background: #000;
  }

  .podcast-button-youtube:hover {
    background: #333;
    transform: translateY(-2px);
  }

  .podcast-button-spotify {
    background: #000;
  }

  .podcast-button-spotify:hover {
    background: #333;
    transform: translateY(-2px);
  }

  .podcast-button-apple {
    background: #000;
  }

  .podcast-button-apple:hover {
    background: #333;
    transform: translateY(-2px);
  }

  /* Mobile Responsive Styles */
  @media screen and (max-width: 989px) {
    .podcast-videos-section .page-width {
      padding-left: 20px;
      padding-right: 20px;
    }

    .podcast-videos-heading {
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .podcast-video-item {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 1.5rem 0;
    }

    .podcast-video-thumbnail {
      max-width: 100%;
    }

    .podcast-video-buttons {
      width: 100%;
      min-width: auto;
    }

    .podcast-button {
      width: 100%;
    }
  }

  @media screen and (max-width: 749px) {
    .podcast-videos-heading {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }

    .podcast-video-title {
      font-size: 1.1rem;
    }

    .podcast-video-name {
      font-size: 0.875rem;
    }

    .podcast-video-date {
      font-size: 0.8rem;
    }

    .podcast-button {
      padding: 0.65rem 1.25rem;
      font-size: 0.8rem;
    }

    .podcast-button svg {
      width: 14px;
      height: 14px;
    }
  }