/* Legal pages */
.legal-page {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 34px;
    border: 1px solid var(--color-border);
    border-radius: 28px;
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
    box-sizing: border-box;
}

.legal-page__header {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--color-border);
}

.legal-page__header h1,
.legal-page h1 {
    max-width: 820px;
    margin: 0 0 14px;
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.legal-page__header p {
    max-width: 820px;
    margin: 0;
    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.5;
}

.legal-page__header p + p {
    margin-top: 8px;
}

.legal-page h2 {
    max-width: 820px;
    margin: 34px 0 12px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

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

.legal-page p {
    max-width: 820px;
    margin: 0 0 12px;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.65;
}

.legal-page p:last-child {
    margin-bottom: 0;
}

.legal-page strong {
    font-weight: 800;
}

.legal-page ul {
    max-width: 820px;
    margin: 14px 0 18px;
    padding: 0;
    list-style: none;
}

.legal-page li {
    position: relative;
    padding-left: 22px;
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.58;
}

.legal-page li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

.legal-page li + li {
    margin-top: 8px;
}

.legal-page address {
    max-width: 820px;
    margin-top: 18px;
    padding: 20px;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: #ffffff;
    font-style: normal;
    box-sizing: border-box;
}

.legal-page address p {
    margin-bottom: 8px;
}

.legal-page address p:last-child {
    margin-bottom: 0;
}

.legal-page a {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.legal-page a:hover {
    color: var(--color-muted);
    text-decoration: none;
}

.legal-page--advertising-consent .legal-page__header,
.legal-page--image-public-data-consent .legal-page__header {
    border-bottom-color: rgba(255, 201, 49, 0.28);
}

.legal-page--privacy-policy .legal-page__header,
.legal-page--personal-data-consent .legal-page__header {
    border-bottom-color: rgba(104, 219, 224, 0.28);
}

.legal-page--public-offer .legal-page__header,
.legal-page--user-agreement .legal-page__header {
    border-bottom-color: rgba(255, 36, 36, 0.16);
}

@media (max-width: 900px) {
    .legal-page {
        max-width: none;
        padding: 30px;
        border-radius: 26px;
    }
}

@media (max-width: 640px) {
    .legal-page {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .legal-page__header {
        margin-bottom: 24px;
        padding-bottom: 18px;
    }

    .legal-page__header h1,
    .legal-page h1 {
        font-size: clamp(30px, 9vw, 38px);
    }

    .legal-page h2 {
        margin-top: 30px;
        font-size: 22px;
    }

    .legal-page p,
    .legal-page li {
        font-size: 15px;
    }

    .legal-page address {
        padding: 16px;
        border-radius: 18px;
    }
}