.legal-article {
    max-width: 1200px;
}

.legal-modified-date {
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    color: #818181;
    margin: 0 0 60px;
}

.legal-section {
    margin-bottom: 60px;
}

    .legal-section:last-child {
        margin-bottom: 0;
    }

.legal-section__title {
    font-size: 24px;
    line-height: 33px;
    font-weight: 400;
    color: #333333;
    margin: 0 0 20px;
}

.legal-section__body {
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    color: #333333;
    margin: 0 0 20px 0;
}

    .legal-section__body:last-child {
        margin-bottom: 0;
    }

.legal-section__body a {
    color: var(--color-brand-orange);
}

.legal-section__body a:hover {
    text-decoration: underline;
}

.legal-list {
    margin: 0 0 20px 25px;
    padding: 0;
    list-style: none;
}

    .legal-list li {
        position: relative;
        font-size: 18px;
        line-height: 25px;
        color: #333333;
        margin-bottom: 10px;
    }

ul.legal-list li {
    padding-left: 15px;
}

    ul.legal-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 9px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #FF7A4F;
    }

ol.legal-list {
    counter-reset: legal-counter;
}

    ol.legal-list li {
        padding-left: 22px;
        counter-increment: legal-counter;
    }

        ol.legal-list li::before {
            content: counter(legal-counter) ".";
            position: absolute;
            left: 0;
            top: 0;
            width: 16px;
            color: #333333;
            font-size: 18px;
            line-height: 25px;
            font-weight: 400;
            background: none;
            border-radius: 0;
        }


.layout-rtl .legal-list {
    margin: 0 25px 20px 0;
    padding: 0;
}

.layout-rtl ul.legal-list li {
    padding-left: 0;
    padding-right: 15px;
}

    .layout-rtl ul.legal-list li::before {
        left: auto;
        right: 0;
    }

.layout-rtl ol.legal-list li {
    padding-left: 0;
    padding-right: 22px;
}

.layout-rtl ol.legal-list li::before {
    left: auto;
    right: 0;
}
