/** Shopify CDN: Minification failed

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

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:lp-newsletter-section (INDEX:40) */
.lp-newsletter-section {
  padding-top: var(--lp-newsletter-section-padding-top, 56px);
  padding-bottom: var(--lp-newsletter-section-padding-bottom, 56px);
  background: var(--lp-newsletter-section-bg, #ffffff);
}

.lp-newsletter-section__inner {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 24px;
}

.lp-newsletter-section__card {
  max-width: var(--lp-newsletter-section-card-max-width, 620px);
  margin-inline: auto;
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 56px);
  border-radius: var(--lp-newsletter-section-card-radius, 24px);
  background: linear-gradient(
    135deg,
    var(--lp-newsletter-section-gradient-start, #111111) 0%,
    var(--lp-newsletter-section-gradient-end, #2a2a2a) 100%
  );
  text-align: center;
  color: var(--lp-newsletter-section-text, #b9b9b9);
}

.lp-newsletter-section__heading {
  margin: 0 0 14px;
  font-family: var(--font-heading-family, Georgia, "Times New Roman", serif);
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--lp-newsletter-section-heading, #ffffff);
}

.lp-newsletter-section__subtext {
  max-width: 34rem;
  margin: 0 auto 26px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--lp-newsletter-section-text, #b9b9b9);
}

.lp-newsletter-section__subtext > * { margin: 0; }

/* Form */
.lp-newsletter-section__form { margin: 0; }

.lp-newsletter-section__field {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 440px;
  margin-inline: auto;
}

.lp-newsletter-section__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 52px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  background: var(--lp-newsletter-section-input-bg, #ffffff);
  color: var(--lp-newsletter-section-input-text, #2c2c2c);
  font-size: 15px;
}

.lp-newsletter-section__input::placeholder { color: #9a9a9a; }

.lp-newsletter-section__input:focus-visible {
  outline: 2px solid var(--lp-newsletter-section-button-bg, #6b8e4f);
  outline-offset: 2px;
}

.lp-newsletter-section__button {
  flex: none;
  height: 52px;
  padding: 0 26px;
  border: none;
  border-radius: 999px;
  background: var(--lp-newsletter-section-button-bg, #6b8e4f);
  color: var(--lp-newsletter-section-button-text, #ffffff);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.lp-newsletter-section__button:hover { opacity: 0.92; }

.lp-newsletter-section__message {
  max-width: 440px;
  margin: 14px auto 0;
  font-size: 13px;
  line-height: 1.5;
}

.lp-newsletter-section__message--success { color: var(--lp-newsletter-section-button-bg, #6b8e4f); }
.lp-newsletter-section__message--error { color: #e2a29a; }

/* Fine print */
.lp-newsletter-section__fine-print {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--lp-newsletter-section-fine-print, #9a9a9a);
}

.lp-newsletter-section__fine-print > * { margin: 0; }
.lp-newsletter-section__fine-print a { color: inherit; text-decoration: underline; }

/* Responsive */
@media screen and (max-width: 420px) {
  .lp-newsletter-section__field { flex-direction: column; gap: 10px; }
  .lp-newsletter-section__button { width: 100%; }
}
/* END_SECTION:lp-newsletter-section */

/* START_SECTION:podcast-audio (INDEX:71) */
.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;
    }
  }
/* END_SECTION:podcast-audio */

/* START_SECTION:podcast-hero (INDEX:72) */
.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%;
    }
  }
/* END_SECTION:podcast-hero */

/* START_SECTION:posdcast-videos (INDEX:74) */
.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;
    }
  }
/* END_SECTION:posdcast-videos */