/** Shopify CDN: Minification failed

Line 17:0 Unexpected "<"
Line 18:17 Unexpected "{"
Line 18:26 Expected ":"
Line 18:33 Unexpected "{"
Line 23:17 Unexpected "{"
Line 23:26 Expected ":"
Line 32:17 Unexpected "{"
Line 32:26 Expected ":"
Line 37:17 Unexpected "{"
Line 37:26 Expected ":"
... and 70 more hidden warnings

**/

<style>
  .lipozem-hero-{{ section.id }} {
    padding: 60px 16px;
    overflow: hidden; /* Prevent horizontal scroll */
  }

  .lipozem-hero-{{ section.id }} .lipozem-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
  }

  /* Equal container widths */
  .lipozem-hero-{{ section.id }} .lipozem-hero__text {
    flex: 0 0 46%;
    min-width: 0; /* Prevent text overflow */
  }

  .lipozem-hero-{{ section.id }} .lipozem-hero__media {
    flex: 0 0 54%;
    min-width: 0; /* Prevent image overflow */
  }

  /* Image position ordering */
  .lipozem-hero-{{ section.id }} .lipozem-hero__inner--image-right {
    flex-direction: row;
  }
  
  .lipozem-hero-{{ section.id }} .lipozem-hero__inner--image-left {
    flex-direction: row-reverse;
  }

  /* Text styling */
  .lipozem-hero-{{ section.id }} .lipozem-hero__text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }

  /* Image container styling */
  .lipozem-hero-{{ section.id }} .lipozem-hero__media {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lipozem-hero-{{ section.id }} .lipozem-hero__image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px; /* Prevent overly tall images */
    object-fit: contain; /* Keep full image visible */
  }

  .lipozem-hero-{{ section.id }} .lipozem-hero__placeholder {
    width: 100%;
    background: #f5f5f5;
    padding: 40px;
  }

  .lipozem-hero-{{ section.id }} .lipozem-hero__placeholder .placeholder-svg {
    width: 100%;
    height: auto;
  }

  /* Typography styling */
  .lipozem-hero-{{ section.id }} .lipozem-hero__richtext {
    width: 100%;
  }

  .lipozem-hero-{{ section.id }} .lipozem-hero__richtext > *:last-child {
    margin-bottom: 0;
  }

  .lipozem-hero-{{ section.id }} .lipozem-hero__richtext * {
    margin-top: 0;
    margin-bottom: 18px;
  }

  .lipozem-hero-{{ section.id }} .lipozem-hero__richtext h1,
  .lipozem-hero-{{ section.id }} .lipozem-hero__richtext h2,
  .lipozem-hero-{{ section.id }} .lipozem-hero__richtext h3 {
    color: #0d664d;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: clamp(28px, 4vw, 42px); /* Responsive font size */
    line-height: 1.2;
  }

  .lipozem-hero-{{ section.id }} .lipozem-hero__richtext p {
    font-size: clamp(16px, 2vw, 18px); /* Responsive font size */
    line-height: 1.6;
    color: #0d664d;
  }

  .lipozem-hero-{{ section.id }} .lipozem-hero__richtext strong {
    font-weight: 600;
  }

  /* Tablet / Small Desktop */
  @media (max-width: 989px) {
    .lipozem-hero-{{ section.id }} {
      padding: 50px 20px;
    }
    
    .lipozem-hero-{{ section.id }} .lipozem-hero__inner {
      gap: 32px;
    }
    
    .lipozem-hero-{{ section.id }} .lipozem-hero__text {
      flex: 0 0 48%;
    }
    
    .lipozem-hero-{{ section.id }} .lipozem-hero__media {
      flex: 0 0 52%;
    }
    
    .lipozem-hero-{{ section.id }} .lipozem-hero__image {
      max-height: 500px;
    }
  }

  /* Mobile */
  @media (max-width: 749px) {
    .lipozem-hero-{{ section.id }} {
      padding: 40px 16px;
    }
    
    .lipozem-hero-{{ section.id }} .lipozem-hero__inner {
      flex-direction: column;
      gap: 32px;
    }
    
    .lipozem-hero-{{ section.id }} .lipozem-hero__text,
    .lipozem-hero-{{ section.id }} .lipozem-hero__media {
      width: 100%;
      flex: 1 1 auto;
    }
    
    .lipozem-hero-{{ section.id }} .lipozem-hero__inner--image-left .lipozem-hero__text,
    .lipozem-hero-{{ section.id }} .lipozem-hero__inner--image-left .lipozem-hero__media,
    .lipozem-hero-{{ section.id }} .lipozem-hero__inner--image-right .lipozem-hero__text,
    .lipozem-hero-{{ section.id }} .lipozem-hero__inner--image-right .lipozem-hero__media {
      order: initial;
    }
    
    .lipozem-hero-{{ section.id }} .lipozem-hero__text {
      padding: 0;
    }
    
    .lipozem-hero-{{ section.id }} .lipozem-hero__image {
      max-height: 400px;
    }
  }

  /* Very small screens */
  @media (max-width: 480px) {
    .lipozem-hero-{{ section.id }} {
      padding: 32px 16px;
    }
    
    .lipozem-hero-{{ section.id }} .lipozem-hero__inner {
      gap: 24px;
    }
    
    .lipozem-hero-{{ section.id }} .lipozem-hero__image {
      max-height: 350px;
    }
  }
</style>