{% # theme-check-disable MissingTemplate %}

{% assign sect = section.settings %}

{% style %}
  .section-{{ section.id }}-horizontal-padding {
    padding-right: {{ sect.mobile_horizontal_padding }}px;
    padding-left: {{ sect.mobile_horizontal_padding }}px;
  }

  @media screen and (min-width: 768px) {
    .section-{{ section.id }}-horizontal-padding {
      padding-right: {{ sect.tablet_horizontal_padding }}px;
      padding-left: {{ sect.tablet_horizontal_padding }}px;
    }
  }

  @media screen and (min-width: 1024px) {
    .section-{{ section.id }}-horizontal-padding {
      padding-right: {{ sect.desktop_horizontal_padding }}px;
      padding-left: {{ sect.desktop_horizontal_padding }}px;
    }
  }
{% endstyle %}

{% capture container_padding_settings %}
  section-{{ section.id }}-horizontal-padding
{% endcapture %}

<div class="w-full {{ container_padding_settings | strip | strip_newlines }} apply-scheme {{ section.settings.color_scheme }}">
  <swiper-container
    init='false'
    class='multicolumn w-full h-full md:mx-auto'
    pagination='true'
    pause-on-mouse-enter='true'
    keyboard-enabled='true'
    a11y='true'
    data-swiper-config='{"slidesPerView":1,"breakpoints":{"768":{"slidesPerView":3},"1280":{"slidesPerView":{{ section.blocks.size }}}}}'
  >
    {%- for block in section.blocks -%}
      <swiper-slide>
      {% if block.settings.href != "#" %}
        <a href="{{ block.settings.href }}" class="link">
      {% endif %}
          <div class="flex flex-col block-{{ block.id }}
            {% if block.settings.layout == 'text_first' %}flex-col-reverse{% endif %}
            apply-scheme {{ block.settings.color_scheme }}
          ">
            {% if block.settings.image != blank %}
              <div class="flex {{ block.settings.mobile_image_content_position }} {{ block.settings.image_content_position }}">
                {% render 'hw_generic-image',
                  image: block.settings.image,
                  image_text: block.settings.text | append: " image",
                  width: block.settings.image.width,
                  height: block.settings.image.height
                %}
              </div>
            {% endif %}
            <div>
              {% if block.settings.text != blank %}

                {% capture block_margin_settings %}
                  {{ block.settings.mobile_text_margin_top }} {{ block.settings.text_margin_top }} {{ block.settings.mobile_text_margin_bottom }} {{ block.settings.text_margin_bottom }}
                {% endcapture %}

                {% render 'hw_block-heading',
                    body: block.settings.text,
                    settings: block.settings,
                    margin_settings: block_margin_settings,
                    section_id: section.id,
                    block_id: block.id
                %}
              {% endif %}

              {% if block.settings.richtext != blank %}

                {% capture block_margin_settings %}
                  {{ block.settings.mobile_richtext_margin_top }} {{ block.settings.richtext_margin_top }} {{ block.settings.mobile_richtext_margin_bottom }} {{ block.settings.richtext_margin_bottom }}
                {% endcapture %}

                {% capture block_font_settings %}
                  {{ block.settings.richtext_position }} {{ block.settings.mobile_richtext_position }} {{ block.settings.richtext_font_family }} {{ block.settings.richtext_font_size }} {{ block.settings.richtext_mobile_font_size }} {{ block.settings.richtext_font_weight }} {{ block.settings.richtext_line_height }}
                {% endcapture %}

                {% render 'hw_block-text',
                    body: block.settings.richtext,
                    settings: block.settings,
                    margin_settings: block_margin_settings,
                    font_settings: block_font_settings,
                    section_id: section.id,
                    block_id: block.id
                %}
              {% endif %}
            </div>
          </div>
      {% if block.settings.href != "#" %}
        </a>
      {% endif %}
      </swiper-slide>
    {%- endfor -%}
  </swiper-container>
  <div class='hw_multicolumn-pagination flex justify-center items-center py-4'>
  </div>
</div>

{% schema %}
{
  "name": "Multicolum",
  "settings": [
    {
      "type": "select",
      "id": "color_scheme",
      "options": [
        {
          "value": "color-scheme-1",
          "label": "t:sections.all.settings.color_scheme.options__1.label"
        },
        {
          "value": "color-scheme-2",
          "label": "t:sections.all.settings.color_scheme.options__2.label"
        },
        {
          "value": "color-scheme-3",
          "label": "t:sections.all.settings.color_scheme.options__3.label"
        },
        {
          "value": "color-scheme-4",
          "label": "t:sections.all.settings.color_scheme.options__4.label"
        },
        {
          "value": "color-scheme-5",
          "label": "t:sections.all.settings.color_scheme.options__5.label"
        },
        {
          "value": "color-scheme-6",
          "label": "t:sections.all.settings.color_scheme.options__6.label"
        }
      ],
      "default": "color-scheme-3",
      "label": "t:sections.all.settings.color_scheme.label"
    },
    {
      "type": "header",
      "content": "t:sections.all.padding.section_padding_heading"
    },
    {
      "type": "range",
      "id": "desktop_horizontal_padding",
      "min": 0,
      "max": 512,
      "step": 8,
      "unit": "px",
      "label": "Horizontal padding (Desktop)",
      "default": 0
    },
    {
      "type": "range",
      "id": "tablet_horizontal_padding",
      "min": 0,
      "max": 512,
      "step": 8,
      "unit": "px",
      "label": "Horizontal padding (Tablet)",
      "default": 0
    },
    {
      "type": "range",
      "id": "mobile_horizontal_padding",
      "min": 0,
      "max": 512,
      "step": 8,
      "unit": "px",
      "label": "Horizontal padding (Mobile)",
      "default": 0
    }
  ],
  "blocks": [
    {
      "type": "column",
      "name": "Multicolumn block",
      "settings": [
        {
          "type": "header",
          "content": "Image options"
        },
        {
          "type": "image_picker",
          "id": "image",
          "label": "Block image"
        },
        {
          "type": "select",
          "id": "image_content_position",
          "options": [
            {
              "value": "",
              "label": "None"
            },
            {
              "value": "md:justify-start",
              "label": "Left"
            },
            {
              "value": "md:justify-center",
              "label": "Centered"
            },
            {
              "value": "md:justify-end",
              "label": "Right"
            }
          ],
          "default": "",
          "label": "Image position"
        },
        {
          "type": "select",
          "id": "mobile_image_content_position",
          "options": [
            {
              "value": "",
              "label": "None"
            },
            {
              "value": "justify-start",
              "label": "Left"
            },
            {
              "value": "justify-center",
              "label": "Centered"
            },
            {
              "value": "justify-end",
              "label": "Right"
            }
          ],
          "default": "",
          "label": "Image position (Mobile)"
        },
        {
          "type": "select",
          "id": "layout",
          "options": [
            {
              "value": "image_first",
              "label": "Image first"
            },
            {
              "value": "text_first",
              "label": "Text first"
            }
          ],
          "default": "image_first",
          "label": "Image placement"
        },
        {
          "type": "text",
          "id": "href",
          "default": "#",
          "label": "Redirect link"
        },
        {
          "type": "select",
          "id": "color_scheme",
          "options": [
            {
              "value": "color-scheme-1",
              "label": "t:sections.all.settings.color_scheme.options__1.label"
            },
            {
              "value": "color-scheme-2",
              "label": "t:sections.all.settings.color_scheme.options__2.label"
            },
            {
              "value": "color-scheme-3",
              "label": "t:sections.all.settings.color_scheme.options__3.label"
            },
            {
              "value": "color-scheme-4",
              "label": "t:sections.all.settings.color_scheme.options__4.label"
            },
            {
              "value": "color-scheme-5",
              "label": "t:sections.all.settings.color_scheme.options__5.label"
            },
            {
              "value": "color-scheme-6",
              "label": "t:sections.all.settings.color_scheme.options__6.label"
            }
          ],
          "default": "color-scheme-1",
          "label": "t:sections.all.settings.color_scheme.label"
        },
        {
          "type": "header",
          "content": "t:sections.multicolumn.settings.options__1"
        },
        {
          "type": "text",
          "id": "text",
          "default": "Column",
          "label": "Text content"
        },
        {
          "type": "select",
          "id": "font_family",
          "options": [
            {
              "value": "font-primary",
              "label": "Primary font"
            },
            {
              "value": "font-display",
              "label": "Secondary font"
            }
          ],
          "default": "font-primary",
          "label": "Font family"
        },
        {
          "type": "select",
          "id": "desktop_text_position",
          "options": [
            {
              "value": "",
              "label": "None"
            },
            {
              "value": "lg:text-left",
              "label": "Left"
            },
            {
              "value": "lg:text-center",
              "label": "Centered"
            },
            {
              "value": "lg:text-right",
              "label": "Right"
            }
          ],
          "default": "",
          "label": "Text position (Desktop)"
        },
        {
          "type": "select",
          "id": "tablet_text_position",
          "options": [
            {
              "value": "",
              "label": "None"
            },
            {
              "value": "md:text-left",
              "label": "Left"
            },
            {
              "value": "md:text-center",
              "label": "Centered"
            },
            {
              "value": "md:text-right",
              "label": "Right"
            }
          ],
          "default": "",
          "label": "Text position (Tablet)"
        },
        {
          "type": "select",
          "id": "mobile_text_position",
          "options": [
            {
              "value": "",
              "label": "None"
            },
            {
              "value": "text-left",
              "label": "Left"
            },
            {
              "value": "text-center",
              "label": "Centered"
            },
            {
              "value": "text-right",
              "label": "Right"
            }
          ],
          "default": "",
          "label": "Text position (Mobile)"
        },
        {
          "type": "select",
          "id": "font_size",
          "options": [
            {
              "value": "md:text-sm",
              "label": "Text sm"
            },
            {
              "value": "md:text-base",
              "label": "Text base"
            },
            {
              "value": "md:text-lg",
              "label": "Text lg"
            },
            {
              "value": "md:text-xl",
              "label": "Text xl"
            },
            {
              "value": "md:text-2xl",
              "label": "Text 2xl"
            },
            {
              "value": "md:text-3xl",
              "label": "Text 3xl"
            },
            {
              "value": "md:text-4xl",
              "label": "Text 4xl"
            },
            {
              "value": "md:text-5xl",
              "label": "Text 5xl"
            },
            {
              "value": "text-6xl",
              "label": "Text 6xl"
            },
            {
              "value": "text-7xl",
              "label": "Text 7xl"
            },
            {
              "value": "text-8xl",
              "label": "Text 8xl"
            },
            {
              "value": "text-9xl",
              "label": "Text 9xl"
            }
          ],
          "default": "md:text-base",
          "label": "Font size"
        },
        {
          "type": "select",
          "id": "mobile_font_size",
          "options": [
            {
              "value": "text-sm",
              "label": "Text sm"
            },
            {
              "value": "text-base",
              "label": "Text base"
            },
            {
              "value": "text-lg",
              "label": "Text lg"
            },
            {
              "value": "text-xl",
              "label": "Text xl"
            },
            {
              "value": "text-2xl",
              "label": "Text 2xl"
            },
            {
              "value": "text-3xl",
              "label": "Text 3xl"
            },
            {
              "value": "text-4xl",
              "label": "Text 4xl"
            },
            {
              "value": "text-5xl",
              "label": "Text 5xl"
            },
            {
              "value": "text-6xl",
              "label": "Text 6xl"
            },
            {
              "value": "text-7xl",
              "label": "Text 7xl"
            },
            {
              "value": "text-8xl",
              "label": "Text 8xl"
            },
            {
              "value": "text-9xl",
              "label": "Text 9xl"
            }
          ],
          "default": "text-base",
          "label": "Font size (Mobile)"
        },
        {
          "type": "select",
          "id": "font_weight",
          "options": [
            {
              "value": "font-light",
              "label": "Font light"
            },
            {
              "value": "font-normal",
              "label": "Font normal"
            },
            {
              "value": "font-medium",
              "label": "Font medium"
            },
            {
              "value": "font-semibold",
              "label": "Font semibold"
            },
            {
              "value": "font-bold",
              "label": "Font bold"
            }
          ],
          "default": "font-normal",
          "label": "Font weight"
        },
        {
          "type": "select",
          "id": "line_height",
          "options": [
            {
              "value": "leading-none",
              "label": "Line height - None"
            },
            {
              "value": "leading-tight",
              "label": "Line height - Tight"
            },
            {
              "value": "leading-snug",
              "label": "Line height - Snug"
            },
            {
              "value": "leading-normal",
              "label": "Line height - Normal"
            },
            {
              "value": "leading-relaxed",
              "label": "Line height - Relaxed"
            },
            {
              "value": "leading-loose",
              "label": "Line height - Loose"
            }
          ],
          "default": "leading-normal",
          "label": "Line height"
        },
        {
          "type": "header",
          "content": "Text margin settings"
        },
        {
          "type": "select",
          "id": "text_margin_top",
          "options": [
            {
              "value": "md:mt-0",
              "label": "Margin 0"
            },
            {
              "value": "md:mt-0.5",
              "label": "Margin 0.125rem"
            },
            {
              "value": "md:mt-1",
              "label": "Margin 0.25rem"
            },
            {
              "value": "md:mt-2",
              "label": "Margin 0.5rem"
            },
            {
              "value": "md:mt-3",
              "label": "Margin 0.75rem"
            },
            {
              "value": "md:mt-4",
              "label": "Margin 1rem"
            },
            {
              "value": "md:mt-6",
              "label": "Margin 1.5rem"
            },
            {
              "value": "md:mt-8",
              "label": "Margin 2rem"
            },
            {
              "value": "md:mt-10",
              "label": "Margin 2.5rem"
            },
            {
              "value": "md:mt-12",
              "label": "Margin 3rem"
            },
            {
              "value": "md:mt-14",
              "label": "Margin 3.5rem"
            },
            {
              "value": "md:mt-16",
              "label": "Margin 4rem"
            }
          ],
          "default": "md:mt-0",
          "label": "Top margin"
        },
        {
          "type": "select",
          "id": "mobile_text_margin_top",
          "options": [
            {
              "value": "mt-0",
              "label": "Margin 0"
            },
            {
              "value": "mt-0.5",
              "label": "Margin 0.125rem"
            },
            {
              "value": "mt-1",
              "label": "Margin 0.25rem"
            },
            {
              "value": "mt-2",
              "label": "Margin 0.5rem"
            },
            {
              "value": "mt-3",
              "label": "Margin 0.75rem"
            },
            {
              "value": "mt-4",
              "label": "Margin 1rem"
            },
            {
              "value": "mt-6",
              "label": "Margin 1.5rem"
            },
            {
              "value": "mt-8",
              "label": "Margin 2rem"
            },
            {
              "value": "mt-10",
              "label": "Margin 2.5rem"
            },
            {
              "value": "mt-12",
              "label": "Margin 3rem"
            },
            {
              "value": "mt-14",
              "label": "Margin 3.5rem"
            },
            {
              "value": "mt-16",
              "label": "Margin 4rem"
            }
          ],
          "default": "mt-0",
          "label": "Top margin (Mobile)"
        },
        {
          "type": "select",
          "id": "text_margin_bottom",
          "options": [
            {
              "value": "md:mb-0",
              "label": "Margin 0"
            },
            {
              "value": "md:mb-0.5",
              "label": "Margin 0.125rem"
            },
            {
              "value": "md:mb-1",
              "label": "Margin 0.25rem"
            },
            {
              "value": "md:mb-2",
              "label": "Margin 0.5rem"
            },
            {
              "value": "md:mb-3",
              "label": "Margin 0.75rem"
            },
            {
              "value": "md:mb-4",
              "label": "Margin 1rem"
            },
            {
              "value": "md:mb-6",
              "label": "Margin 1.5rem"
            },
            {
              "value": "md:mb-8",
              "label": "Margin 2rem"
            },
            {
              "value": "md:mb-10",
              "label": "Margin 2.5rem"
            },
            {
              "value": "md:mb-12",
              "label": "Margin 3rem"
            },
            {
              "value": "md:mb-14",
              "label": "Margin 3.5rem"
            },
            {
              "value": "md:mb-16",
              "label": "Margin 4rem"
            }
          ],
          "default": "md:mb-0",
          "label": "Bottom margin"
        },
        {
          "type": "select",
          "id": "mobile_text_margin_bottom",
          "options": [
            {
              "value": "mb-0",
              "label": "Margin 0"
            },
            {
              "value": "mb-0.5",
              "label": "Margin 0.125rem"
            },
            {
              "value": "mb-1",
              "label": "Margin 0.25rem"
            },
            {
              "value": "mb-2",
              "label": "Margin 0.5rem"
            },
            {
              "value": "mb-3",
              "label": "Margin 0.75rem"
            },
            {
              "value": "mb-4",
              "label": "Margin 1rem"
            },
            {
              "value": "mb-6",
              "label": "Margin 1.5rem"
            },
            {
              "value": "mb-8",
              "label": "Margin 2rem"
            },
            {
              "value": "mb-10",
              "label": "Margin 2.5rem"
            },
            {
              "value": "mb-12",
              "label": "Margin 3rem"
            },
            {
              "value": "mb-14",
              "label": "Margin 3.5rem"
            },
            {
              "value": "mb-16",
              "label": "Margin 4rem"
            }
          ],
          "default": "mb-0",
          "label": "Bottom margin (Mobile)"
        },
        {
          "type": "header",
          "content": "t:sections.multicolumn.settings.options__2"
        },
        {
          "type": "richtext",
          "id": "richtext",
          "default": "<p>Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.</p>",
          "label": "Block richtext"
        },
        {
          "type": "select",
          "id": "richtext_position",
          "options": [
            {
              "value": "",
              "label": "None"
            },
            {
              "value": "md:text-left",
              "label": "Left"
            },
            {
              "value": "md:text-center",
              "label": "Centered"
            },
            {
              "value": "md:text-right",
              "label": "Right"
            }
          ],
          "default": "",
          "label": "Text position"
        },
        {
          "type": "select",
          "id": "mobile_richtext_position",
          "options": [
            {
              "value": "",
              "label": "None"
            },
            {
              "value": "text-left",
              "label": "Left"
            },
            {
              "value": "text-center",
              "label": "Centered"
            },
            {
              "value": "text-right",
              "label": "Right"
            }
          ],
          "default": "",
          "label": "Text position (Mobile)"
        },
        {
          "type": "select",
          "id": "richtext_font_family",
          "options": [
            {
              "value": "font-primary",
              "label": "Primary font"
            },
            {
              "value": "font-display",
              "label": "Secondary font"
            }
          ],
          "default": "font-primary",
          "label": "Font family"
        },
        {
          "type": "select",
          "id": "richtext_font_size",
          "options": [
            {
              "value": "md:text-sm",
              "label": "Text sm"
            },
            {
              "value": "md:text-base",
              "label": "Text base"
            },
            {
              "value": "md:text-lg",
              "label": "Text lg"
            },
            {
              "value": "md:text-xl",
              "label": "Text xl"
            },
            {
              "value": "md:text-2xl",
              "label": "Text 2xl"
            },
            {
              "value": "md:text-3xl",
              "label": "Text 3xl"
            },
            {
              "value": "md:text-4xl",
              "label": "Text 4xl"
            },
            {
              "value": "md:text-5xl",
              "label": "Text 5xl"
            },
            {
              "value": "text-6xl",
              "label": "Text 6xl"
            },
            {
              "value": "text-7xl",
              "label": "Text 7xl"
            },
            {
              "value": "text-8xl",
              "label": "Text 8xl"
            },
            {
              "value": "text-9xl",
              "label": "Text 9xl"
            }
          ],
          "default": "md:text-base",
          "label": "Font size"
        },
        {
          "type": "select",
          "id": "mobile_richtext_font_size",
          "options": [
            {
              "value": "text-sm",
              "label": "Text sm"
            },
            {
              "value": "text-base",
              "label": "Text base"
            },
            {
              "value": "text-lg",
              "label": "Text lg"
            },
            {
              "value": "text-xl",
              "label": "Text xl"
            },
            {
              "value": "text-2xl",
              "label": "Text 2xl"
            },
            {
              "value": "text-3xl",
              "label": "Text 3xl"
            },
            {
              "value": "text-4xl",
              "label": "Text 4xl"
            },
            {
              "value": "text-5xl",
              "label": "Text 5xl"
            },
            {
              "value": "text-6xl",
              "label": "Text 6xl"
            },
            {
              "value": "text-7xl",
              "label": "Text 7xl"
            },
            {
              "value": "text-8xl",
              "label": "Text 8xl"
            },
            {
              "value": "text-9xl",
              "label": "Text 9xl"
            }
          ],
          "default": "text-base",
          "label": "Font size (Mobile)"
        },
        {
          "type": "select",
          "id": "richtext_font_weight",
          "options": [
            {
              "value": "font-light",
              "label": "Font light"
            },
            {
              "value": "font-normal",
              "label": "Font normal"
            },
            {
              "value": "font-medium",
              "label": "Font medium"
            },
            {
              "value": "font-semibold",
              "label": "Font semibold"
            },
            {
              "value": "font-bold",
              "label": "Font bold"
            }
          ],
          "default": "font-normal",
          "label": "Font weight"
        },
        {
          "type": "select",
          "id": "richtext_line_height",
          "options": [
            {
              "value": "leading-none",
              "label": "Line height - None"
            },
            {
              "value": "leading-tight",
              "label": "Line height - Tight"
            },
            {
              "value": "leading-snug",
              "label": "Line height - Snug"
            },
            {
              "value": "leading-normal",
              "label": "Line height - Normal"
            },
            {
              "value": "leading-relaxed",
              "label": "Line height - Relaxed"
            },
            {
              "value": "leading-loose",
              "label": "Line height - Loose"
            }
          ],
          "default": "leading-normal",
          "label": "Line height"
        },
        {
          "type": "header",
          "content": "Richtext margin settings"
        },
        {
          "type": "select",
          "id": "richtext_margin_top",
          "options": [
            {
              "value": "md:mt-0",
              "label": "Margin 0"
            },
            {
              "value": "md:mt-0.5",
              "label": "Margin 0.125rem"
            },
            {
              "value": "md:mt-1",
              "label": "Margin 0.25rem"
            },
            {
              "value": "md:mt-2",
              "label": "Margin 0.5rem"
            },
            {
              "value": "md:mt-3",
              "label": "Margin 0.75rem"
            },
            {
              "value": "md:mt-4",
              "label": "Margin 1rem"
            },
            {
              "value": "md:mt-6",
              "label": "Margin 1.5rem"
            },
            {
              "value": "md:mt-8",
              "label": "Margin 2rem"
            },
            {
              "value": "md:mt-10",
              "label": "Margin 2.5rem"
            },
            {
              "value": "md:mt-12",
              "label": "Margin 3rem"
            },
            {
              "value": "md:mt-14",
              "label": "Margin 3.5rem"
            },
            {
              "value": "md:mt-16",
              "label": "Margin 4rem"
            }
          ],
          "default": "md:mt-0",
          "label": "Top margin"
        },
        {
          "type": "select",
          "id": "mobile_richtext_margin_top",
          "options": [
            {
              "value": "mt-0",
              "label": "Margin 0"
            },
            {
              "value": "mt-0.5",
              "label": "Margin 0.125rem"
            },
            {
              "value": "mt-1",
              "label": "Margin 0.25rem"
            },
            {
              "value": "mt-2",
              "label": "Margin 0.5rem"
            },
            {
              "value": "mt-3",
              "label": "Margin 0.75rem"
            },
            {
              "value": "mt-4",
              "label": "Margin 1rem"
            },
            {
              "value": "mt-6",
              "label": "Margin 1.5rem"
            },
            {
              "value": "mt-8",
              "label": "Margin 2rem"
            },
            {
              "value": "mt-10",
              "label": "Margin 2.5rem"
            },
            {
              "value": "mt-12",
              "label": "Margin 3rem"
            },
            {
              "value": "mt-14",
              "label": "Margin 3.5rem"
            },
            {
              "value": "mt-16",
              "label": "Margin 4rem"
            }
          ],
          "default": "mt-0",
          "label": "Top margin (Mobile)"
        },
        {
          "type": "select",
          "id": "richtext_margin_bottom",
          "options": [
            {
              "value": "md:mb-0",
              "label": "Margin 0"
            },
            {
              "value": "md:mb-0.5",
              "label": "Margin 0.125rem"
            },
            {
              "value": "md:mb-1",
              "label": "Margin 0.25rem"
            },
            {
              "value": "md:mb-2",
              "label": "Margin 0.5rem"
            },
            {
              "value": "md:mb-3",
              "label": "Margin 0.75rem"
            },
            {
              "value": "md:mb-4",
              "label": "Margin 1rem"
            },
            {
              "value": "md:mb-6",
              "label": "Margin 1.5rem"
            },
            {
              "value": "md:mb-8",
              "label": "Margin 2rem"
            },
            {
              "value": "md:mb-10",
              "label": "Margin 2.5rem"
            },
            {
              "value": "md:mb-12",
              "label": "Margin 3rem"
            },
            {
              "value": "md:mb-14",
              "label": "Margin 3.5rem"
            },
            {
              "value": "md:mb-16",
              "label": "Margin 4rem"
            }
          ],
          "default": "md:mb-0",
          "label": "Bottom margin"
        },
        {
          "type": "select",
          "id": "mobile_richtext_margin_bottom",
          "options": [
            {
              "value": "mb-0",
              "label": "Margin 0"
            },
            {
              "value": "mb-0.5",
              "label": "Margin 0.125rem"
            },
            {
              "value": "mb-1",
              "label": "Margin 0.25rem"
            },
            {
              "value": "mb-2",
              "label": "Margin 0.5rem"
            },
            {
              "value": "mb-3",
              "label": "Margin 0.75rem"
            },
            {
              "value": "mb-4",
              "label": "Margin 1rem"
            },
            {
              "value": "mb-6",
              "label": "Margin 1.5rem"
            },
            {
              "value": "mb-8",
              "label": "Margin 2rem"
            },
            {
              "value": "mb-10",
              "label": "Margin 2.5rem"
            },
            {
              "value": "mb-12",
              "label": "Margin 3rem"
            },
            {
              "value": "mb-14",
              "label": "Margin 3.5rem"
            },
            {
              "value": "mb-16",
              "label": "Margin 4rem"
            }
          ],
          "default": "mb-0",
          "label": "Bottom margin (Mobile)"
        }
      ]
    }
  ],
  "presets": [
    {
      "name": "Multicolum",
      "blocks": [
        {
          "type": "column"
        },
        {
          "type": "column"
        },
        {
          "type": "column"
        }
      ]
    }
  ]
}
{% endschema %}