{% set imageSrc = null %}{% if image is not null %}{% set imageSrc = image %}{% endif %}{% if not center %}{% set containerClasses = 'container flex flex-wrap lg:flex-nowrap gap-8 justify-between' %}{% set contentClasses = 'w-full lg:w-7/12' %}{% set content2Classes = 'w-full lg:w-4/12' %}{% if imageSrc is not null %}{% set containerClasses = 'container flex flex-wrap lg:flex-nowrap gap-8 items-center justify-between' %}{% set contentClasses = 'w-full lg:w-1/2' %}{% set content2Classes = 'w-full lg:w-1/2' %}{% endif %}{% else %}{% set containerClasses = 'container' %}{% set contentClasses = 'w-full' %}{% endif %}<section class="{{ center ? 'page-main-content page-main-content--center' : 'page-main-content' }} {{ theme == 'purple' ? 'page-main-content--purple' : '' }}"><div class="{{ containerClasses }}">{% if imageSrc is not null %}<div class="page-main-content__image w-full lg:w-5/12"><div class="page-main-content__image-container"><imgsrc="{{ imageCache(imageSrc, 'cropResize', 1500, 1000) }}"alt="Hero Image"loading="lazy">{% if theme != 'purple' %}<imgclass="pointer-events-none"src="{{ asset("build/images/gradient-pill-landscape.svg") }}"role="presentation"loading="lazy">{% endif %}</div></div>{% endif %}{% if block('content') %}<div class="page-main-content__text {{ contentClasses }}">{% block content %}{% endblock %}{% if block('buttons') %}<div class="page-main-content__buttons">{% block buttons %}{% endblock %}</div>{% endif %}</div>{% endif %}{% if block('content2') and imageSrc is null %}<div class="page-main-content__text {{ content2Classes }}">{% block content2 %}{% endblock %}</div>{% endif %}</div></section>