.swls-section {
    --swls-height: 100vh;
    --swls-mobile-height: 420px;
    --swls-image-width: 74%;
    --swls-card-width: 45%;
    --swls-card-spacing: 7%;
    --swls-card-padding: 76px 84px;
    --swls-card-bg: #eee8df;
    --swls-side-bg: #eee8df;
    --swls-text-color: #3a3332;
    --swls-button-bg: #b8b1a5;
    --swls-button-color: #ffffff;
    --swls-title-size: 64px;
    position: relative;
    min-height: var(--swls-height);
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    background: var(--swls-side-bg);
}

@supports (min-height: max(1px, 1vh)) {
    .swls-layout-olea_right,
    .swls-layout-olea_left {
        min-height: max(var(--swls-height), 100vh);
    }
}

.swls-layout-olea_right .swls-image,
.swls-layout-olea_left .swls-image {
    min-height: 100%;
}

.swls-section * {
    box-sizing: border-box;
}

.swls-image {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.swls-layout-olea_right .swls-image {
    left: 0;
    right: auto;
    width: var(--swls-image-width);
}

.swls-layout-olea_left .swls-image {
    left: calc(100% - var(--swls-image-width));
    right: 0;
    width: auto;
}

.swls-layout-cover .swls-image {
    inset: 0;
    width: auto;
}

.swls-card {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: var(--swls-card-width);
    max-width: 790px;
    min-width: 460px;
    padding: var(--swls-card-padding);
    background: var(--swls-card-bg);
    color: var(--swls-text-color);
    will-change: transform, opacity;
    overflow: visible;
}

.swls-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.swls-card-right .swls-card {
    right: var(--swls-card-spacing);
}

.swls-card-left .swls-card {
    left: var(--swls-card-spacing);
}

.swls-layout-olea_right .swls-card {
    top: 51%;
}

.swls-layout-olea_left .swls-card {
    top: 50%;
}

.swls-style-light {
    --swls-card-bg: #eee8df;
    --swls-side-bg: #eee8df;
    --swls-text-color: #3a3332;
}

.swls-style-dark {
    --swls-card-bg: #3a3332;
    --swls-side-bg: #3a3332;
    --swls-text-color: #ffffff;
}

/* Dark card must always display white text, even if the active theme has stronger h2/p styles. */
.swls-style-dark .swls-card,
.swls-style-dark .swls-title,
.swls-style-dark .swls-subtitle,
.swls-style-dark .swls-content,
.swls-style-dark .swls-content p,
.swls-style-dark .swls-content span,
.swls-style-dark .swls-content div,
.swls-style-dark .swls-content li,
.swls-style-dark .swls-content a {
    color: #ffffff !important;
}

.swls-title {
    margin: 0 0 24px;
    color: inherit;
    font-size: clamp(42px, 4.05vw, var(--swls-title-size));
    font-weight: 300;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.swls-titlefont-serif .swls-title {
    font-family: Cormorant Garamond, Didot, Bodoni 72, Georgia, Times New Roman, serif;
}

.swls-titlefont-theme .swls-title {
    font-family: inherit;
}

.swls-subtitle {
    margin: 0 0 22px;
    color: inherit;
    font-family: inherit;
    font-size: clamp(16px, 1.05vw, 20px);
    font-weight: 300;
    line-height: 1.45;
}

.swls-content {
    color: inherit;
    font-size: clamp(14px, 0.86vw, 16px);
    line-height: 1.85;
    font-weight: 300;
    max-width: 680px;
    width: 100%;
}

.swls-content::after {
    content: "";
    display: block;
    clear: both;
}

.swls-content p {
    margin: 0 0 22px;
}

.swls-content p:last-child {
    margin-bottom: 0;
}

.swls-button-wrap {
    display: block;
    clear: both;
    width: 100%;
    margin-top: 34px;
    position: relative;
    z-index: 4;
}

.swls-button {
    position: relative !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 17px 31px;
    min-height: 50px;
    background: var(--swls-button-bg);
    color: var(--swls-button-color) !important;
    border: 0;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    transition: transform 220ms ease, opacity 220ms ease;
}

.swls-button:hover,
.swls-button:focus {
    opacity: 0.9;
    transform: translateY(-1px);
}

.swls-animate-left .swls-card,
.swls-animate-right .swls-card,
.swls-animate-fade .swls-card {
    opacity: 0;
    transition: opacity 950ms ease, transform 950ms ease;
}

.swls-animate-left .swls-card {
    transform: translate(-90px, -50%);
}

.swls-animate-right .swls-card {
    transform: translate(90px, -50%);
}

.swls-animate-fade .swls-card {
    transform: translate(0, -50%);
}

.swls-animate-none .swls-card,
.swls-section.is-visible .swls-card {
    opacity: 1;
    transform: translate(0, -50%);
}

@media (max-width: 1400px) {
    .swls-card {
        min-width: 430px;
    }
}

@media (max-width: 1200px) {
    .swls-section {
        --swls-card-width: 50%;
    }

    .swls-card {
        min-width: 390px;
        padding: 56px 60px;
    }
}

@media (max-width: 900px) {
    .swls-section {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .swls-image,
    .swls-layout-olea_right .swls-image,
    .swls-layout-olea_left .swls-image,
    .swls-layout-cover .swls-image {
        position: relative;
        inset: auto;
        left: auto;
        right: auto;
        width: 100%;
        height: var(--swls-mobile-height);
    }

    .swls-card,
    .swls-card-left .swls-card,
    .swls-card-right .swls-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 100%;
        max-width: none;
        min-width: 0;
        padding: 44px 30px;
        opacity: 1;
        transform: none;
    }

    .swls-title {
        font-size: clamp(36px, 10vw, 48px);
        margin-bottom: 18px;
    }

    .swls-section.is-visible .swls-card,
    .swls-animate-left .swls-card,
    .swls-animate-right .swls-card,
    .swls-animate-fade .swls-card,
    .swls-animate-none .swls-card {
        opacity: 1;
        transform: none;
    }
}
