/* === WYSIWYG Content Styles === */
.wysiwyg-content {
    color: #3B3D78;
    font-family: "polymath", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}

/* Headings */
.wysiwyg-content h1,
.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4,
.wysiwyg-content h5,
.wysiwyg-content h6 {
    color: #000441;
    font-family: "gamay", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.wysiwyg-content h1 {
    font-size: 2.5rem; /* 40px */
    margin-top: 0;
    font-weight: 600;
}

.wysiwyg-content h2 {
    font-size: 2rem; /* 32px */
    font-weight: 500;
}

.wysiwyg-content h3 {
    font-size: 1.375rem; /* 22px */
}

.wysiwyg-content h4 {
    font-size: 1.25rem; /* 20px */
}

.wysiwyg-content h5 {
    font-size: 1.125rem; /* 18px */
}

.wysiwyg-content h6 {
    font-size: 1rem; /* 16px */
}

/* Paragraphs */
.wysiwyg-content p {
    margin-bottom: 1.5rem; /* 24px */
    color: #3B3D78;
    font-family: "polymath", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}

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

/* Links */
.wysiwyg-content a {
    color: #000781;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.wysiwyg-content a:hover {
    color: #000441;
    text-decoration-thickness: 2px;
}

/* Lists */
.wysiwyg-content ul,
.wysiwyg-content ol {
    margin: 1.5rem 0; /* 24px */
    padding-left: 1.5rem; /* 24px */
}

.wysiwyg-content ul {
    list-style-type: disc;
}

.wysiwyg-content ol {
    list-style-type: decimal;
}

.wysiwyg-content li {
    margin-bottom: 0.5rem; /* 8px */
    color: #3B3D78;
    font-family: "polymath", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}

.wysiwyg-content ul ul,
.wysiwyg-content ol ol,
.wysiwyg-content ul ol,
.wysiwyg-content ol ul {
    margin: 0.75rem 0; /* 12px */
}

.wysiwyg-content ul ul {
    list-style-type: circle;
}

.wysiwyg-content ul ul ul {
    list-style-type: square;
}

/* Blockquotes */
.wysiwyg-content blockquote {
    margin: 2rem 0; /* 32px */
    padding: 1.5rem; /* 24px */
    border-left: 4px solid #FFCD5B;
    background-color: #F9F8F6;
    font-style: italic;
    color: #3B3D78;
}

.wysiwyg-content blockquote p {
    margin-bottom: 0;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5;
}

.wysiwyg-content blockquote cite {
    display: block;
    margin-top: 1rem; /* 16px */
    font-size: 0.875rem; /* 14px */
    color: #3B3D78;
    font-style: normal;
    opacity: 0.8;
}

/* Images */
.wysiwyg-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0; /* 24px */
}

.wysiwyg-content figure {
    margin: 2rem 0; /* 32px */
    text-align: center;
}

.wysiwyg-content figcaption {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #3B3D78;
    opacity: 0.8;
    font-style: italic;
}

/* Tables */
.wysiwyg-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wysiwyg-content th,
.wysiwyg-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #EBE7F4;
}

.wysiwyg-content th {
    background-color: #000441;
    color: white;
    font-weight: 600;
    font-family: "gamay", sans-serif;
}

.wysiwyg-content td {
    background-color: white;
    color: #3B3D78;
}

.wysiwyg-content tr:hover td {
    background-color: #F9F8F6;
}

/* Horizontal Rule */
.wysiwyg-content hr {
    border: none;
    height: 2px;
    background-color: #EBE7F4;
    margin: 3rem 0;
    border-radius: 1px;
}

/* Emphasis */
.wysiwyg-content strong,
.wysiwyg-content b {
    font-weight: 600;
    color: #000781;
}

.wysiwyg-content em,
.wysiwyg-content i {
    font-style: italic;
}

.wysiwyg-content mark {
    background-color: #FFCD5B;
    padding: 0.125rem 0.25rem;
    border-radius: 2px;
}

/* Subscript and Superscript */
.wysiwyg-content sub,
.wysiwyg-content sup {
    font-size: 0.75em;
    line-height: 0;
}

.wysiwyg-content sup {
    vertical-align: super;
}

.wysiwyg-content sub {
    vertical-align: sub;
}

/* Definition Lists */
.wysiwyg-content dl {
    margin: 1.5rem 0;
}

.wysiwyg-content dt {
    font-weight: 600;
    color: #000441;
    font-family: "gamay", sans-serif;
    margin-top: 1rem;
}

.wysiwyg-content dd {
    margin-left: 1rem;
    margin-bottom: 0.5rem;
    color: #3B3D78;
}

/* Address */
.wysiwyg-content address {
    font-style: normal;
    color: #3B3D78;
    margin: 1.5rem 0;
}

/* Small text */
.wysiwyg-content small {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wysiwyg-content h1 {
        font-size: 2rem; /* 32px */
    }

    .wysiwyg-content h2 {
        font-size: 1.75rem; /* 28px */
    }

    .wysiwyg-content h3 {
        font-size: 1.5rem; /* 24px */
    }

    .wysiwyg-content h4 {
        font-size: 1.25rem; /* 20px */
    }

    .wysiwyg-content h5 {
        font-size: 1.125rem; /* 18px */
    }

    .wysiwyg-content h6 {
        font-size: 1rem; /* 16px */
    }

    .wysiwyg-content blockquote {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .wysiwyg-content table {
        font-size: 0.875rem;
    }

    .wysiwyg-content th,
    .wysiwyg-content td {
        padding: 0.75rem 0.5rem;
    }
}

/* === END WYSIWYG Content Styles === */

/* === WYSIWYG Content Modifiers === */
/* Base list icon styles */
.wysiwyg-content ul {
    list-style: none;
    padding-left: 0;
}

.wysiwyg-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.wysiwyg-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 0.75rem;
    /* 12px */
    height: 0.75rem;
    /* 12px */
    background-image: url('../../assets/icons/base.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Убираем стандартные маркеры для всех уровней вложенности */
.wysiwyg-content ul ul,
.wysiwyg-content ul ul ul,
.wysiwyg-content ul ul ul ul {
    list-style: none;
    padding-left: 1.5rem;
}

.wysiwyg-content ul ul li,
.wysiwyg-content ul ul ul li,
.wysiwyg-content ul ul ul ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.wysiwyg-content ul ul li::before,
.wysiwyg-content ul ul ul li::before,
.wysiwyg-content ul ul ul ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 0.75rem;
    height: 0.75rem;
    background-image: url('../../assets/icons/star.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Small icon variant */
.wysiwyg-content--icon-sm ul li::before,
.wysiwyg-content--icon-sm ul ul li::before,
.wysiwyg-content--icon-sm ul ul ul li::before,
.wysiwyg-content--icon-sm ul ul ul ul li::before {
    background-image: url('../../assets/icons/star-sm.svg');
    width: 0.75rem;
    /* 12px */
    height: 0.75rem;
    /* 12px */
    top: 0.375rem;
}

/* Color variants */
.wysiwyg-content--pink ul li::before,
.wysiwyg-content--pink ul ul li::before,
.wysiwyg-content--pink ul ul ul li::before,
.wysiwyg-content--pink ul ul ul ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4648 4.46008C12.2191 3.70915 11.3843 3.3243 10.6484 3.62091L7.38053 4.94331L7.62921 1.45491C7.68593 0.667804 7.05764 -0.0020752 6.26504 -0.0020752C5.47243 -0.0020752 4.84418 0.667804 4.9009 1.45491L5.15104 4.96648L1.8759 3.66429C1.13856 3.37202 0.306689 3.76125 0.0652714 4.51363C-0.176146 5.266 0.274693 6.06468 1.04548 6.24988L4.47334 7.07894L2.22055 9.76436C1.71154 10.3706 1.82646 11.2792 2.47073 11.7407C3.11499 12.2023 4.01668 12.0244 4.43407 11.353L6.28979 8.36813L8.15711 11.3313C8.57887 11.9998 9.48201 12.1734 10.1234 11.7075C10.7647 11.2416 10.8738 10.3329 10.3619 9.7296L8.0844 7.04856L11.4948 6.20212C12.2656 6.01114 12.7106 5.20959 12.4648 4.45866V4.46008Z' fill='%23990B21' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.wysiwyg-content--spray ul li::before,
.wysiwyg-content--spray ul ul li::before,
.wysiwyg-content--spray ul ul ul li::before,
.wysiwyg-content--spray ul ul ul ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4648 4.46008C12.2191 3.70915 11.3843 3.3243 10.6484 3.62091L7.38053 4.94331L7.62921 1.45491C7.68593 0.667804 7.05764 -0.0020752 6.26504 -0.0020752C5.47243 -0.0020752 4.84418 0.667804 4.9009 1.45491L5.15104 4.96648L1.8759 3.66429C1.13856 3.37202 0.306689 3.76125 0.0652714 4.51363C-0.176146 5.266 0.274693 6.06468 1.04548 6.24988L4.47334 7.07894L2.22055 9.76436C1.71154 10.3706 1.82646 11.2792 2.47073 11.7407C3.11499 12.2023 4.01668 12.0244 4.43407 11.353L6.28979 8.36813L8.15711 11.3313C8.57887 11.9998 9.48201 12.1734 10.1234 11.7075C10.7647 11.2416 10.8738 10.3329 10.3619 9.7296L8.0844 7.04856L11.4948 6.20212C12.2656 6.01114 12.7106 5.20959 12.4648 4.45866V4.46008Z' fill='%23144547' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.wysiwyg-content--mantis ul li::before,
.wysiwyg-content--mantis ul ul li::before,
.wysiwyg-content--mantis ul ul ul li::before,
.wysiwyg-content--mantis ul ul ul ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4648 4.46008C12.2191 3.70915 11.3843 3.3243 10.6484 3.62091L7.38053 4.94331L7.62921 1.45491C7.68593 0.667804 7.05764 -0.0020752 6.26504 -0.0020752C5.47243 -0.0020752 4.84418 0.667804 4.9009 1.45491L5.15104 4.96648L1.8759 3.66429C1.13856 3.37202 0.306689 3.76125 0.0652714 4.51363C-0.176146 5.266 0.274693 6.06468 1.04548 6.24988L4.47334 7.07894L2.22055 9.76436C1.71154 10.3706 1.82646 11.2792 2.47073 11.7407C3.11499 12.2023 4.01668 12.0244 4.43407 11.353L6.28979 8.36813L8.15711 11.3313C8.57887 11.9998 9.48201 12.1734 10.1234 11.7075C10.7647 11.2416 10.8738 10.3329 10.3619 9.7296L8.0844 7.04856L11.4948 6.20212C12.2656 6.01114 12.7106 5.20959 12.4648 4.45866V4.46008Z' fill='%2333401B' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.wysiwyg-content--golden ul li::before,
.wysiwyg-content--golden ul ul li::before,
.wysiwyg-content--golden ul ul ul li::before,
.wysiwyg-content--golden ul ul ul ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4648 4.46008C12.2191 3.70915 11.3843 3.3243 10.6484 3.62091L7.38053 4.94331L7.62921 1.45491C7.68593 0.667804 7.05764 -0.0020752 6.26504 -0.0020752C5.47243 -0.0020752 4.84418 0.667804 4.9009 1.45491L5.15104 4.96648L1.8759 3.66429C1.13856 3.37202 0.306689 3.76125 0.0652714 4.51363C-0.176146 5.266 0.274693 6.06468 1.04548 6.24988L4.47334 7.07894L2.22055 9.76436C1.71154 10.3706 1.82646 11.2792 2.47073 11.7407C3.11499 12.2023 4.01668 12.0244 4.43407 11.353L6.28979 8.36813L8.15711 11.3313C8.57887 11.9998 9.48201 12.1734 10.1234 11.7075C10.7647 11.2416 10.8738 10.3329 10.3619 9.7296L8.0844 7.04856L11.4948 6.20212C12.2656 6.01114 12.7106 5.20959 12.4648 4.45866V4.46008Z' fill='%235F4200' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.wysiwyg-content--lavender ul li::before,
.wysiwyg-content--lavender ul ul li::before,
.wysiwyg-content--lavender ul ul ul li::before,
.wysiwyg-content--lavender ul ul ul ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4648 4.46008C12.2191 3.70915 11.3843 3.3243 10.6484 3.62091L7.38053 4.94331L7.62921 1.45491C7.68593 0.667804 7.05764 -0.0020752 6.26504 -0.0020752C5.47243 -0.0020752 4.84418 0.667804 4.9009 1.45491L5.15104 4.96648L1.8759 3.66429C1.13856 3.37202 0.306689 3.76125 0.0652714 4.51363C-0.176146 5.266 0.274693 6.06468 1.04548 6.24988L4.47334 7.07894L2.22055 9.76436C1.71154 10.3706 1.82646 11.2792 2.47073 11.7407C3.11499 12.2023 4.01668 12.0244 4.43407 11.353L6.28979 8.36813L8.15711 11.3313C8.57887 11.9998 9.48201 12.1734 10.1234 11.7075C10.7647 11.2416 10.8738 10.3329 10.3619 9.7296L8.0844 7.04856L11.4948 6.20212C12.2656 6.01114 12.7106 5.20959 12.4648 4.45866V4.46008Z' fill='%233D2D62' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.wysiwyg-content--zest ul li::before,
.wysiwyg-content--zest ul ul li::before,
.wysiwyg-content--zest ul ul ul li::before,
.wysiwyg-content--zest ul ul ul ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4648 4.46008C12.2191 3.70915 11.3843 3.3243 10.6484 3.62091L7.38053 4.94331L7.62921 1.45491C7.68593 0.667804 7.05764 -0.0020752 6.26504 -0.0020752C5.47243 -0.0020752 4.84418 0.667804 4.9009 1.45491L5.15104 4.96648L1.8759 3.66429C1.13856 3.37202 0.306689 3.76125 0.0652714 4.51363C-0.176146 5.266 0.274693 6.06468 1.04548 6.24988L4.47334 7.07894L2.22055 9.76436C1.71154 10.3706 1.82646 11.2792 2.47073 11.7407C3.11499 12.2023 4.01668 12.0244 4.43407 11.353L6.28979 8.36813L8.15711 11.3313C8.57887 11.9998 9.48201 12.1734 10.1234 11.7075C10.7647 11.2416 10.8738 10.3329 10.3619 9.7296L8.0844 7.04856L11.4948 6.20212C12.2656 6.01114 12.7106 5.20959 12.4648 4.45866V4.46008Z' fill='%236E3603' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* LIGHT COLORS */

.wysiwyg-content--golden-light ul li::before,
.wysiwyg-content--golden-light ul ul li::before,
.wysiwyg-content--golden-light ul ul ul li::before,
.wysiwyg-content--golden-light ul ul ul ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4648 4.46008C12.2191 3.70915 11.3843 3.3243 10.6484 3.62091L7.38053 4.94331L7.62921 1.45491C7.68593 0.667804 7.05764 -0.0020752 6.26504 -0.0020752C5.47243 -0.0020752 4.84418 0.667804 4.9009 1.45491L5.15104 4.96648L1.8759 3.66429C1.13856 3.37202 0.306689 3.76125 0.0652714 4.51363C-0.176146 5.266 0.274693 6.06468 1.04548 6.24988L4.47334 7.07894L2.22055 9.76436C1.71154 10.3706 1.82646 11.2792 2.47073 11.7407C3.11499 12.2023 4.01668 12.0244 4.43407 11.353L6.28979 8.36813L8.15711 11.3313C8.57887 11.9998 9.48201 12.1734 10.1234 11.7075C10.7647 11.2416 10.8738 10.3329 10.3619 9.7296L8.0844 7.04856L11.4948 6.20212C12.2656 6.01114 12.7106 5.20959 12.4648 4.45866V4.46008Z' fill='%23FC973B' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.wysiwyg-content--lavender-light ul li::before,
.wysiwyg-content--lavender-light ul ul li::before,
.wysiwyg-content--lavender-light ul ul ul li::before,
.wysiwyg-content--lavender-light ul ul ul ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4648 4.46008C12.2191 3.70915 11.3843 3.3243 10.6484 3.62091L7.38053 4.94331L7.62921 1.45491C7.68593 0.667804 7.05764 -0.0020752 6.26504 -0.0020752C5.47243 -0.0020752 4.84418 0.667804 4.9009 1.45491L5.15104 4.96648L1.8759 3.66429C1.13856 3.37202 0.306689 3.76125 0.0652714 4.51363C-0.176146 5.266 0.274693 6.06468 1.04548 6.24988L4.47334 7.07894L2.22055 9.76436C1.71154 10.3706 1.82646 11.2792 2.47073 11.7407C3.11499 12.2023 4.01668 12.0244 4.43407 11.353L6.28979 8.36813L8.15711 11.3313C8.57887 11.9998 9.48201 12.1734 10.1234 11.7075C10.7647 11.2416 10.8738 10.3329 10.3619 9.7296L8.0844 7.04856L11.4948 6.20212C12.2656 6.01114 12.7106 5.20959 12.4648 4.45866V4.46008Z' fill='%239B88CA' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.wysiwyg-content--mantis-light ul li::before,
.wysiwyg-content--mantis-light ul ul li::before,
.wysiwyg-content--mantis-light ul ul ul li::before,
.wysiwyg-content--mantis-light ul ul ul ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4648 4.46008C12.2191 3.70915 11.3843 3.3243 10.6484 3.62091L7.38053 4.94331L7.62921 1.45491C7.68593 0.667804 7.05764 -0.0020752 6.26504 -0.0020752C5.47243 -0.0020752 4.84418 0.667804 4.9009 1.45491L5.15104 4.96648L1.8759 3.66429C1.13856 3.37202 0.306689 3.76125 0.0652714 4.51363C-0.176146 5.266 0.274693 6.06468 1.04548 6.24988L4.47334 7.07894L2.22055 9.76436C1.71154 10.3706 1.82646 11.2792 2.47073 11.7407C3.11499 12.2023 4.01668 12.0244 4.43407 11.353L6.28979 8.36813L8.15711 11.3313C8.57887 11.9998 9.48201 12.1734 10.1234 11.7075C10.7647 11.2416 10.8738 10.3329 10.3619 9.7296L8.0844 7.04856L11.4948 6.20212C12.2656 6.01114 12.7106 5.20959 12.4648 4.45866V4.46008Z' fill='%2383BC66' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.wysiwyg-content--pink-light ul li::before,
.wysiwyg-content--pink-light ul ul li::before,
.wysiwyg-content--pink-light ul ul ul li::before,
.wysiwyg-content--pink-light ul ul ul ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4648 4.46008C12.2191 3.70915 11.3843 3.3243 10.6484 3.62091L7.38053 4.94331L7.62921 1.45491C7.68593 0.667804 7.05764 -0.0020752 6.26504 -0.0020752C5.47243 -0.0020752 4.84418 0.667804 4.9009 1.45491L5.15104 4.96648L1.8759 3.66429C1.13856 3.37202 0.306689 3.76125 0.0652714 4.51363C-0.176146 5.266 0.274693 6.06468 1.04548 6.24988L4.47334 7.07894L2.22055 9.76436C1.71154 10.3706 1.82646 11.2792 2.47073 11.7407C3.11499 12.2023 4.01668 12.0244 4.43407 11.353L6.28979 8.36813L8.15711 11.3313C8.57887 11.9998 9.48201 12.1734 10.1234 11.7075C10.7647 11.2416 10.8738 10.3329 10.3619 9.7296L8.0844 7.04856L11.4948 6.20212C12.2656 6.01114 12.7106 5.20959 12.4648 4.45866V4.46008Z' fill='%23990B21' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.wysiwyg-content--spray-light ul li::before,
.wysiwyg-content--spray-light ul ul li::before,
.wysiwyg-content--spray-light ul ul ul li::before,
.wysiwyg-content--spray-light ul ul ul ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4648 4.46008C12.2191 3.70915 11.3843 3.3243 10.6484 3.62091L7.38053 4.94331L7.62921 1.45491C7.68593 0.667804 7.05764 -0.0020752 6.26504 -0.0020752C5.47243 -0.0020752 4.84418 0.667804 4.9009 1.45491L5.15104 4.96648L1.8759 3.66429C1.13856 3.37202 0.306689 3.76125 0.0652714 4.51363C-0.176146 5.266 0.274693 6.06468 1.04548 6.24988L4.47334 7.07894L2.22055 9.76436C1.71154 10.3706 1.82646 11.2792 2.47073 11.7407C3.11499 12.2023 4.01668 12.0244 4.43407 11.353L6.28979 8.36813L8.15711 11.3313C8.57887 11.9998 9.48201 12.1734 10.1234 11.7075C10.7647 11.2416 10.8738 10.3329 10.3619 9.7296L8.0844 7.04856L11.4948 6.20212C12.2656 6.01114 12.7106 5.20959 12.4648 4.45866V4.46008Z' fill='%23144547' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.wysiwyg-content--zest-light ul li::before,
.wysiwyg-content--zest-light ul ul li::before,
.wysiwyg-content--zest-light ul ul ul li::before,
.wysiwyg-content--zest-light ul ul ul ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.4648 4.46008C12.2191 3.70915 11.3843 3.3243 10.6484 3.62091L7.38053 4.94331L7.62921 1.45491C7.68593 0.667804 7.05764 -0.0020752 6.26504 -0.0020752C5.47243 -0.0020752 4.84418 0.667804 4.9009 1.45491L5.15104 4.96648L1.8759 3.66429C1.13856 3.37202 0.306689 3.76125 0.0652714 4.51363C-0.176146 5.266 0.274693 6.06468 1.04548 6.24988L4.47334 7.07894L2.22055 9.76436C1.71154 10.3706 1.82646 11.2792 2.47073 11.7407C3.11499 12.2023 4.01668 12.0244 4.43407 11.353L6.28979 8.36813L8.15711 11.3313C8.57887 11.9998 9.48201 12.1734 10.1234 11.7075C10.7647 11.2416 10.8738 10.3329 10.3619 9.7296L8.0844 7.04856L11.4948 6.20212C12.2656 6.01114 12.7106 5.20959 12.4648 4.45866V4.46008Z' fill='%23FEEAD8' /%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
/* === END WYSIWYG Content Modifiers === */