/* ==========================================================
   Voctos — Legal / Page Hero
   Light silver page top (bg + black→transparent vignette behind the header),
   breadcrumb + big Unbounded heading. Matches seointellect.ru/cookie-policy/.
   ========================================================== */

.voctos-legal-hero {
    position: relative;
    background: #EFF0F4;                 /* bg-eighth */
    padding-top: 110px;
    padding-bottom: 40px;
}
@media (min-width: 1024px) {
    .voctos-legal-hero {
        padding-top: 100px;
        padding-bottom: 56px;
    }
}

/* Dark vignette behind the header, fading into the page grey (exact original) */
.voctos-legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 134px;
    background: linear-gradient(180deg, #000 0%, rgba(137, 137, 137, 0) 100%);
    opacity: .6;
    pointer-events: none;
    z-index: 0;
}
.voctos-legal-hero > .container {
    position: relative;
    z-index: 1;
}

/* ── Breadcrumb ── */
.voctos-legal-hero .lh-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 20px;
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}
.voctos-legal-hero .lh-crumbs li {
    position: relative;
    font-family: 'Unbounded', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}
.voctos-legal-hero .lh-crumbs li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(13, 23, 45, .35);
    transform: translateY(-50%);
}
.voctos-legal-hero .lh-crumbs a {
    color: #0D172D;
    text-decoration: none;
    transition: opacity .18s;
}
.voctos-legal-hero .lh-crumbs a:hover { opacity: .6; }
.voctos-legal-hero .lh-crumbs__current { color: rgba(13, 23, 45, .45); }

/* ── Heading (ref: Unbounded 46px / 400 / line-height 46px / mb 40px) ── */
.voctos-legal-hero .lh-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    color: #0D172D;
    font-size: 30px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-top: 30px;
}
@media (min-width: 1024px) {
    .voctos-legal-hero .lh-title {
        font-size: 46px;
        line-height: 46px;
    }
}

/* ── Content (WYSIWYG) — matches the original prose: 16px / line-height 24px / #0D172D ── */
.voctos-legal-hero .lh-content {
    margin-top: 28px;
    color: #0D172D;
}
@media (min-width: 1024px) {
    .voctos-legal-hero .lh-content { margin-top: 40px; }
}
.voctos-legal-hero .lh-content p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #0D172D;
    margin: 0 0 16px;
}
.voctos-legal-hero .lh-content h2,
.voctos-legal-hero .lh-content h3,
.voctos-legal-hero .lh-content h4 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    color: #0D172D;
    line-height: 1.3;
    margin: 28px 0 14px;
}
.voctos-legal-hero .lh-content h2 { font-size: 24px; }
.voctos-legal-hero .lh-content h3 { font-size: 20px; }
.voctos-legal-hero .lh-content h4 { font-size: 18px; }
.voctos-legal-hero .lh-content ul,
.voctos-legal-hero .lh-content ol {
    margin: 0 0 16px;
    padding-left: 22px;
}
.voctos-legal-hero .lh-content li {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #0D172D;
    margin-bottom: 6px;
}
.voctos-legal-hero .lh-content a {
    color: #7616f4;
    text-decoration: underline;
    transition: opacity .18s;
}
.voctos-legal-hero .lh-content a:hover { opacity: .8; }
.voctos-legal-hero .lh-content strong,
.voctos-legal-hero .lh-content b { font-weight: 700; }
.voctos-legal-hero .lh-content > *:last-child { margin-bottom: 0; }
