.fk-legal-page {
    background: #ffffff;
    color: #202020;
    padding: 64px 24px 80px;
}

.fk-legal-page__container {
    width: min(100%, 960px);
    margin: 0 auto;
}

.fk-legal-page__article {
    margin: 0;
}

.fk-legal-page__header {
    margin: 0 0 44px;
    padding: 0 0 24px;
    border-bottom: 1px solid #dedede;
}

.fk-legal-page__title {
    margin: 0;
    color: #111111;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 700;
}

.fk-legal-page__content {
    color: #303030;
    font-size: 1.05rem;
    line-height: 1.75;
}

.fk-legal-page__content h2 {
    position: relative;
    margin: 52px 0 20px;
    padding-left: 20px;
    color: #111111;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.25;
    font-weight: 700;
}

.fk-legal-page__content h2:first-child {
    margin-top: 0;
}

.fk-legal-page__content h2::before {
    content: "";
    position: absolute;
    top: 0.2em;
    bottom: 0.2em;
    left: 0;
    width: 3px;
    background: var(--fk-red, #d71920);
}

.fk-legal-page__content p {
    margin: 0 0 18px;
}

.fk-legal-page__content ul,
.fk-legal-page__content ol {
    margin: 20px 0 28px;
    padding: 0;
    list-style: none;
}

.fk-legal-page__content li {
    position: relative;
    margin: 10px 0;
    padding-left: 24px;
}

.fk-legal-page__content ul > li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--fk-red, #d71920);
}

.fk-legal-page__content ol {
    counter-reset: fk-legal-list;
}

.fk-legal-page__content ol > li {
    counter-increment: fk-legal-list;
}

.fk-legal-page__content ol > li::before {
    content: counter(fk-legal-list) ".";
    position: absolute;
    left: 0;
    color: var(--fk-red, #d71920);
    font-weight: 700;
}

.fk-legal-page__content strong {
    color: #111111;
    font-weight: 700;
}

.fk-legal-page__content a {
    color: #b9000e;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.fk-legal-page__content a:hover,
.fk-legal-page__content a:focus-visible {
    color: var(--fk-red, #d71920);
}

@media (max-width: 800px) {
    .fk-legal-page {
        padding: 44px 20px 60px;
    }

    .fk-legal-page__header {
        margin-bottom: 34px;
        padding-bottom: 20px;
    }

    .fk-legal-page__content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .fk-legal-page__content h2 {
        margin-top: 40px;
    }
}

@media (max-width: 520px) {
    .fk-legal-page {
        padding: 36px 18px 48px;
    }

    .fk-legal-page__content li {
        padding-left: 22px;
    }
}
