/** Shopify CDN: Minification failed

Line 16:10 Unexpected "{"
Line 16:19 Expected ":"
Line 17:16 Expected identifier but found whitespace
Line 17:18 Unexpected "{"
Line 17:27 Expected ":"
Line 17:78 Expected ":"
Line 18:19 Expected identifier but found whitespace
Line 18:21 Unexpected "{"
Line 18:30 Expected ":"
Line 18:84 Expected ":"
... and 10 more hidden warnings

**/
.section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  @media screen and (min-width: 750px) {
    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }

    .seo-content-block {
      /* Ermöglicht die 2-Spalten-Ansicht auf Desktops */
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px; /* Abstand zwischen Bild und Text */
      align-items: center; /* Vertikale Zentrierung */
    }

    /* Bild links, Text rechts (Standard) */
    .seo-content-block.image-left {
      grid-template-areas: "image content";
    }

    /* Bild rechts, Text links (Option) */
    .seo-content-block.image-right {
      grid-template-areas: "content image";
    }

    .seo-content-block__image-wrapper {
        grid-area: image;
    }

    .seo-content-block__content-wrapper {
        grid-area: content;
    }
  }

  /* Sicherstellen, dass das Bild in den Container passt */
  .seo-content-block__image-wrapper img {
      max-width: 100%;
      height: auto;
      display: block;
  }