.endo-legal {
    min-height: 100svh;
    background: #fff;
}

.endo-legal__hero {
    position: relative;
    padding:
        clamp(82px, 9vw, 130px)
        0
        clamp(54px, 6vw, 82px);
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            rgba(0, 61, 196, 0.045) 0%,
            rgba(228, 45, 150, 0.025) 55%,
            rgba(255, 255, 255, 0) 100%
        );
}

.endo-legal__hero::before,
.endo-legal__hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.endo-legal__hero::before {
    top: -120px;
    right: 7%;
    width: 320px;
    height: 320px;
    background: rgba(0, 61, 196, 0.035);
}

.endo-legal__hero::after {
    right: -70px;
    bottom: -130px;
    width: 260px;
    height: 260px;
    background: rgba(228, 45, 150, 0.04);
}

.endo-legal__hero .container {
    position: relative;
    z-index: 1;
}

.endo-legal__eyebrow {
    margin: 0 0 14px;
    color: var(--pink);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.endo-legal__title {
    max-width: 880px;
    margin: 0;
    color: var(--text);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.endo-legal__section {
    padding:
        clamp(58px, 7vw, 92px)
        0
        clamp(90px, 10vw, 140px);
}

.endo-legal__content {
    width: min(100%, 860px);
    margin-inline: auto;
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
}

.endo-legal__content > *:first-child {
    margin-top: 0;
}

.endo-legal__content > *:last-child {
    margin-bottom: 0;
}

.endo-legal__content h2,
.endo-legal__content h3,
.endo-legal__content h4 {
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.endo-legal__content h2 {
    margin:
        clamp(54px, 7vw, 78px)
        0
        20px;
    padding-top: 6px;
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.15;
}

.endo-legal__content h3 {
    margin: 38px 0 15px;
    color: var(--blue);
    font-size: 20px;
    line-height: 1.25;
}

.endo-legal__content h4 {
    margin: 30px 0 12px;
    font-size: 16px;
    line-height: 1.3;
}

.endo-legal__content p {
    margin: 0 0 22px;
    color: rgba(10, 10, 10, 0.76);
}

.endo-legal__content strong {
    color: var(--text);
    font-weight: 700;
}

.endo-legal__content a {
    color: var(--blue);
    font-weight: 600;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    transition:
        color 0.25s ease,
        text-decoration-color 0.25s ease;
}

.endo-legal__content ul,
.endo-legal__content ol {
    display: grid;
    gap: 10px;
    margin: 0 0 28px;
    padding-left: 24px;
    color: rgba(10, 10, 10, 0.76);
}

.endo-legal__content li {
    padding-left: 4px;
}

.endo-legal__content li::marker {
    color: var(--blue);
    font-weight: 700;
}

.endo-legal__content blockquote {
    margin: 34px 0;
    padding: 24px 28px;
    border-left: 3px solid var(--blue);
    border-radius: 0 18px 18px 0;
    background: var(--soft);
    color: var(--text);
}

.endo-legal__content blockquote p:last-child {
    margin-bottom: 0;
}

.endo-legal__content hr {
    height: 1px;
    margin: 52px 0;
    border: 0;
    background: var(--line);
}

.endo-legal__content table {
    width: 100%;
    margin: 32px 0;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    font-size: 13px;
}

.endo-legal__content th,
.endo-legal__content td {
    padding: 14px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.endo-legal__content th {
    background: var(--soft);
    color: var(--blue);
    font-weight: 700;
}

.endo-legal__content th:last-child,
.endo-legal__content td:last-child {
    border-right: 0;
}

.endo-legal__content tr:last-child td {
    border-bottom: 0;
}

@media (hover: hover) {
    .endo-legal__content a:hover {
        color: var(--pink);
    }
}

@media (max-width: 780px) {
    .endo-legal__hero {
        padding:
            64px 0
            48px;
    }

    .endo-legal__title {
        font-size: clamp(38px, 11vw, 54px);
    }

    .endo-legal__section {
        padding:
            48px 0
            80px;
    }

    .endo-legal__content {
        width: 100%;
        font-size: 14px;
        line-height: 1.75;
    }

    .endo-legal__content h2 {
        margin-top: 48px;
        font-size: 26px;
    }

    .endo-legal__content h3 {
        margin-top: 32px;
        font-size: 19px;
    }

    .endo-legal__content blockquote {
        padding: 20px;
    }

    .endo-legal__content table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .endo-legal__hero {
        padding:
            52px 0
            40px;
    }

    .endo-legal__section {
        padding-bottom: 64px;
    }

    .endo-legal__content ul,
    .endo-legal__content ol {
        padding-left: 20px;
    }
}