body.hn-page {
    background: var(--hn-bg);
}

body.hn-page .c-form-sidebar {
    background: var(--hn-paper);
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius-card);
    box-shadow: var(--hn-shadow-card);
    padding: 24px 28px;
    height: fit-content;
    box-sizing: border-box;
}

body.hn-page .c-form-sidebar input[type="text"],
body.hn-page .c-form-sidebar input[type="email"],
body.hn-page .c-form-sidebar input[type="tel"],
body.hn-page .c-form-sidebar input[type="number"],
body.hn-page .c-form-sidebar select,
body.hn-page .c-form-sidebar textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1.5px solid var(--hn-line);
    border-radius: var(--hn-radius);
    background: var(--hn-paper);
    color: var(--hn-ink);
    font-size: 14px;
    padding: 10px 12px;
}

body.hn-page .c-form-sidebar input[type="text"]:focus,
body.hn-page .c-form-sidebar input[type="email"]:focus,
body.hn-page .c-form-sidebar input[type="tel"]:focus,
body.hn-page .c-form-sidebar input[type="number"]:focus,
body.hn-page .c-form-sidebar select:focus,
body.hn-page .c-form-sidebar textarea:focus {
    border-color: var(--hn-ink);
    outline: none;
}

body.hn-page .c-form-sidebar .wpcf7-submit,
body.hn-page .c-form-sidebar input[type="submit"] {
    background: var(--hn-red);
    color: #fff;
    border: 0;
    border-radius: var(--hn-radius);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 22px;
    cursor: pointer;
    transition: background 0.15s ease;
}

body.hn-page .c-form-sidebar .wpcf7-submit:hover,
body.hn-page .c-form-sidebar input[type="submit"]:hover {
    background: var(--hn-red-dark);
}

body.hn-kontakt {
    background: var(--hn-paper);
}

body.hn-kontakt .kt-head {
    background: var(--hn-bg);
    border-bottom: 1px solid var(--hn-line);

    padding: 30px max(32px, calc((100% - var(--hn-container)) / 2 + 32px)) 36px;
}

body.hn-kontakt .kt-head h1 {
    max-width: none;
    margin: 0;
    padding: 0;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--hn-ink);
    text-align: left;
    text-transform: none;
}

body.hn-kontakt #breadcrumbs {
    max-width: none;
    margin: 0 0 22px;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--hn-muted);
    text-align: left;
}

body.hn-kontakt .kt-head .kt-lead {
    margin: 14px 0 0;
    max-width: 640px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--hn-muted);
}

body.hn-kontakt #breadcrumbs a {
    color: var(--hn-muted);
    font-weight: 600;
    transition: color 0.15s ease;
}

body.hn-kontakt #breadcrumbs a:hover {
    color: var(--hn-red);
}

body.hn-kontakt #breadcrumbs .breadcrumb_last,
body.hn-kontakt #breadcrumbs strong {
    color: var(--hn-ink);
    font-weight: 700;
}

body.hn-kontakt .kt-section {
    max-width: var(--hn-container);
    margin: 0 auto;
    box-sizing: border-box;

    padding: 40px 32px 88px;
}

body.hn-kontakt .kt-lead {
    max-width: 640px;
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--hn-muted);
}

body.hn-kontakt .kt-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

body.hn-kontakt .kt-form {
    background: var(--hn-paper);
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius-card);
    box-shadow: var(--hn-shadow-card);
    padding: 32px;
}

body.hn-kontakt .kt-form h2 {
    display: block;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--hn-ink);
    margin: 0 0 6px;
}

body.hn-kontakt .kt-form .sub {
    font-size: 14px;
    line-height: 1.6;
    color: var(--hn-muted);
    margin: 0 0 24px;
}

body.hn-kontakt .kt-form form.wpcf7-form {
    display: grid;
    gap: 18px;
}

body.hn-kontakt .cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

body.hn-kontakt .cf-field {
    display: grid;
    gap: 7px;
}

body.hn-kontakt .cf-field label {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hn-muted);
}

body.hn-kontakt .cf-field .wpcf7-form-control-wrap {
    display: block;
}

body.hn-kontakt .cf-field input,
body.hn-kontakt .cf-field select,
body.hn-kontakt .cf-field textarea {
    width: 100%;
    box-sizing: border-box;
    height: 46px;
    border: 1.5px solid var(--hn-line);
    border-radius: var(--hn-radius);
    background: var(--hn-paper);
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--hn-ink);
    outline: none;
    transition: border-color 0.15s ease;
}

body.hn-kontakt .cf-field textarea {
    height: auto;
    min-height: 140px;
    padding: 12px 14px;
    resize: vertical;
}

body.hn-kontakt .cf-field input::placeholder,
body.hn-kontakt .cf-field textarea::placeholder {
    color: var(--hn-muted-2);
    font-weight: 500;
}

body.hn-kontakt .cf-field input:focus,
body.hn-kontakt .cf-field select:focus,
body.hn-kontakt .cf-field textarea:focus {
    border-color: var(--hn-ink);
}

body.hn-kontakt .cf-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230D0E11" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="m6 9 6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 40px;
    cursor: pointer;
}

body.hn-kontakt .cf-consent .wpcf7-form-control-wrap {
    display: block;
}

body.hn-kontakt .cf-consent .wpcf7-list-item {
    margin: 0;
}

body.hn-kontakt .cf-consent .wpcf7-list-item label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}

body.hn-kontakt .cf-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--hn-red);
    flex: none;
    cursor: pointer;
}

body.hn-kontakt .cf-consent .wpcf7-list-item-label {
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--hn-muted);
}

body.hn-kontakt .cf-consent a {
    color: var(--hn-red);
    font-weight: 700;
    text-decoration: none;
}

body.hn-kontakt .cf-consent a:hover {
    text-decoration: underline;
}

body.hn-kontakt .kt-form input[type="submit"] {
    display: inline-block;
    height: 50px;
    padding: 0 32px;
    border: 0;
    border-radius: var(--hn-radius);
    background: var(--hn-red);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s ease;
}

body.hn-kontakt .kt-form input[type="submit"]:hover {
    background: var(--hn-ink);
}

body.hn-kontakt .kt-form .wpcf7-not-valid-tip {
    font-size: 12px;
    font-weight: 600;
    color: var(--hn-red);
    margin-top: 4px;
}

body.hn-kontakt .kt-form .wpcf7-response-output {
    margin: 0;
    padding: 14px 16px;
    border: 1px solid rgba(232, 19, 47, 0.35);
    border-radius: var(--hn-radius);
    background: var(--hn-red-soft);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--hn-red-dark);
}

body.hn-kontakt .kt-form form.sent .wpcf7-response-output {
    border-color: #bfe5cc;
    background: #eaf7ef;
    color: #1f8a4c;
}

body.hn-kontakt .kt-aside {
    display: grid;
    gap: 20px;
}

body.hn-kontakt .ca-card {
    background: var(--hn-paper);
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius-card);
    box-shadow: var(--hn-shadow-card);
    padding: 26px 28px;
}

body.hn-kontakt .ca-card h3 {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hn-muted);
    margin: 0 0 18px;
}

body.hn-kontakt .ca-list {
    display: grid;
    gap: 16px;
}

body.hn-kontakt .ca-item {
    display: grid;
    gap: 3px;
}

body.hn-kontakt .ca-item .k {
    font-size: 12px;
    font-weight: 600;
    color: var(--hn-muted);
}

body.hn-kontakt .ca-item a,
body.hn-kontakt .ca-item .v {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--hn-ink);
    text-decoration: none;
}

body.hn-kontakt .ca-item a:hover {
    color: var(--hn-red);
}

body.hn-kontakt .ca-owner p {
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.65;
    color: var(--hn-muted);
    margin: 0 0 14px;
}

body.hn-kontakt .ca-owner .addr {
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.6;
    font-style: normal;
    color: var(--hn-ink);
}

body.hn-kontakt .kt-map {
    margin-top: 48px;
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius-card);
    overflow: hidden;
}

body.hn-kontakt .kt-map iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}

@media (max-width: 900px) {
    body.hn-kontakt .kt-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    body.hn-kontakt .cf-row {
        grid-template-columns: 1fr;
    }

    body.hn-kontakt .kt-form {
        padding: 24px 20px;
    }
}

@media (max-width: 760px) {
    body.hn-kontakt > h1,
    body.hn-kontakt #breadcrumbs,
    body.hn-kontakt .kt-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

body.hn-wspolpraca .hero img {
    border-radius: var(--hn-radius-card);
}

body.hn-wspolpraca .belt {
    background: var(--hn-band);
}

body.hn-wspolpraca .belt h1 {
    color: var(--hn-ink);
    letter-spacing: -0.02em;
}

body.hn-wspolpraca .belt p {
    color: var(--hn-muted);
}

body.hn-wspolpraca .information {
    background: var(--hn-bg);
}

@media only screen and (min-width: 1200px) {
    body.hn-wspolpraca .information .container {
        max-width: var(--hn-container);
    }
}

body.hn-wspolpraca .information .col-1 h2,
body.hn-wspolpraca .information .col-2 h2,
body.hn-wspolpraca .information .list p {
    color: var(--hn-ink);
}

body.hn-wspolpraca .information .col-1 .link-wrapper .link {
    color: var(--hn-ink);
}

body.hn-wspolpraca .information .col-1 .link-wrapper .link:hover {
    color: var(--hn-red);
}

body.hn-wspolpraca .information .col-1 .link-wrapper .page-button {
    background: var(--hn-red);
    border-radius: var(--hn-radius);
}

body.hn-wspolpraca .information .col-1 .link-wrapper .page-button:hover {
    background: var(--hn-red-dark);
}

body.hn-wspolpraca .numbers h2,
body.hn-wspolpraca .numbers .small,
body.hn-wspolpraca .numbers .desc {
    color: var(--hn-ink);
}

body.hn-wspolpraca .form h2 {
    color: var(--hn-ink);
}

body.hn-wspolpraca .diagram [fill="#00057d"] {
    fill: var(--hn-red);
}
body.hn-wspolpraca .diagram [fill="#6a7be7"],
body.hn-wspolpraca .diagram [fill="#6A7BE7"] {
    fill: #ff8a9b;
}

body.hn-blog .bl-head,
body.hn-blog .bl-section,
body.hn-blog .art-container {
    max-width: var(--hn-container);
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 32px;
    padding-right: 32px;
}

body.hn-blog {
    background: var(--hn-paper);
}

body.hn-blog .bl-head {
    max-width: none;

    padding: 30px max(32px, calc((100% - var(--hn-container)) / 2 + 32px)) 36px;
    background: var(--hn-bg);
    border-bottom: 1px solid var(--hn-line);
}

body.hn-blog .bl-head h1 {
    display: block;
    max-width: none;
    margin: 0;
    padding: 0;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--hn-ink);
    text-align: left;
}

body.hn-blog .bl-head .lead {
    max-width: 640px;
    margin: 14px 0 0 !important;
    font-size: 16px;
    line-height: 1.7;
    color: var(--hn-muted);
}

body.hn-blog #breadcrumbs {
    max-width: none;
    margin: 0 0 12px;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--hn-muted);
    text-align: left;
}
body.hn-blog #breadcrumbs a {
    color: var(--hn-muted);
    transition: color 0.15s ease;
}
body.hn-blog #breadcrumbs a:hover {
    color: var(--hn-red);
}
body.hn-blog #breadcrumbs .breadcrumb_last,
body.hn-blog #breadcrumbs strong {
    color: var(--hn-ink);
    font-weight: 700;
}

body.hn-blog .bl-section {
    padding-top: 28px;
    padding-bottom: 88px;
}

body.hn-blog .blog-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
body.hn-blog .blog-cats a {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 18px;
    border: 1.5px solid var(--hn-line);
    border-radius: var(--hn-radius-pill);
    background: var(--hn-paper);
    font-size: 13px;
    font-weight: 700;
    color: var(--hn-ink);
    text-decoration: none;
    transition: border-color 0.12s ease, color 0.12s ease, background 0.12s ease;
}
body.hn-blog .blog-cats a:hover {
    border-color: var(--hn-red);
    color: var(--hn-red);
}
body.hn-blog .blog-cats a.is-active {
    background: var(--hn-ink);
    border-color: var(--hn-ink);
    color: #fff;
}

body.hn-blog .blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

body.hn-blog .blog-card {
    display: flex;
    flex-direction: column;
    background: var(--hn-paper);
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius-card);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
body.hn-blog .blog-card:hover {
    box-shadow: 0 18px 44px -28px rgba(13, 14, 17, 0.28);
    border-color: var(--hn-ink);
}
body.hn-blog .blog-card .img {
    aspect-ratio: 16 / 10;
    background: var(--hn-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hn-muted-2);
    border-bottom: 1px solid var(--hn-line);
    overflow: hidden;
}
body.hn-blog .blog-card .img svg {
    width: 34px;
    height: 34px;
}
body.hn-blog .blog-card .img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
body.hn-blog .blog-card .body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 20px 22px;
    flex: 1;
}
body.hn-blog .blog-card .cat {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hn-red);
}
body.hn-blog .blog-card h3 {
    display: block;
    font-family: var(--font-head);
    font-size: 16.5px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--hn-ink);
    margin: 0;
    transition: color 0.15s ease;
}
body.hn-blog .blog-card:hover h3 {
    color: var(--hn-red);
}
body.hn-blog .blog-card .meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--hn-muted);
}
body.hn-blog .blog-card .meta .sep {
    color: var(--hn-line);
}
body.hn-blog .blog-card p {
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--hn-muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
body.hn-blog .blog-card .more {
    margin-top: auto;
    padding-top: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--hn-ink);
    transition: color 0.15s ease;
}
body.hn-blog .blog-card:hover .more {
    color: var(--hn-red);
}

body.hn-blog .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 40px;
}
body.hn-blog .pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius);
    background: var(--hn-paper);
    color: var(--hn-ink);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.15s ease;
}
body.hn-blog .pagination .page-numbers:hover {
    border-color: var(--hn-red);
    color: var(--hn-red);
}

body.hn-blog .pagination .page-numbers.current {
    background: var(--hn-red);
    border-color: var(--hn-red);
    color: #fff;
}

body.hn-blog .art-container {
    padding-top: 24px;
    padding-bottom: 88px;
}

body.hn-legal article.description,
body.hn-legal article.description p,
body.hn-legal article.description span,
body.hn-legal article.description li {
    font-size: 11pt;
    line-height: 1.5;
}
body.hn-legal article.description b,
body.hn-legal article.description strong {
    font-size: 11pt;
    font-weight: 600;
    line-height: 1.5;
}

body.hn-blog .article-head .meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
body.hn-blog .article-head .date {
    font-size: 13px;
    font-weight: 600;
    color: var(--hn-muted);
}
body.hn-blog .article-head .date .upd {
    font: inherit;
    color: inherit;
}
body.hn-blog .article-head .rt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
body.hn-blog .article-head .rt .kk-star-ratings {
    margin: 0;
}
body.hn-blog .article-head h1 {
    display: block;
    max-width: none;
    margin: 0 0 24px;
    padding: 0;
    font-family: var(--font-head);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--hn-ink);
    text-align: left;
    text-wrap: pretty;
}

body.hn-blog .article-hero {
    position: relative;
    border-radius: var(--hn-radius-card);
    overflow: hidden;
    border: 1px solid var(--hn-line);
    aspect-ratio: 21 / 9;
    background: var(--hn-bg);
    margin-bottom: 20px;
}
body.hn-blog .article-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
body.hn-blog .article-hero .hero-cat {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 14px;
    border-radius: var(--hn-radius-pill);
    background: var(--hn-red);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.hn-blog .article-byline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0 22px;
    border-bottom: 1px solid var(--hn-line);
    margin-bottom: 32px;
}
body.hn-blog .article-byline .who {
    display: flex;
    align-items: center;
    gap: 12px;
}
body.hn-blog .article-byline .who img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: block;
}
body.hn-blog .article-byline .nm {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--hn-ink);
}
body.hn-blog .article-byline .role {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--hn-muted);
}
body.hn-blog .article-share {
    display: flex;
    gap: 8px;
}
body.hn-blog .article-share a,
body.hn-blog .article-share button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1.5px solid var(--hn-line);
    border-radius: 50%;
    background: var(--hn-paper);
    color: var(--hn-ink);
    cursor: pointer;
    transition: border-color 0.12s ease, color 0.12s ease, background 0.12s ease;
}
body.hn-blog .article-share a:hover,
body.hn-blog .article-share button:hover {
    border-color: var(--hn-ink);
    background: var(--hn-ink);
    color: #fff;
}
body.hn-blog .article-share button.is-copied {
    border-color: #1f8a4c;
    background: #1f8a4c;
    color: #fff;
}
body.hn-blog .article-share svg {
    width: 16px;
    height: 16px;
}

body.hn-blog .article-body p {
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--hn-muted);
    margin: 0 0 18px;
    text-wrap: pretty;
}
body.hn-blog .article-body > p:first-child {
    font-weight: 600;
    color: var(--hn-ink);
}
body.hn-blog .article-body h2 {
    display: block;
    font-family: var(--font-head);
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--hn-ink);
    margin: 40px 0 14px;
}
body.hn-blog .article-body h3 {
    display: block;
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--hn-ink);
    margin: 28px 0 12px;
}
body.hn-blog .article-body ul,
body.hn-blog .article-body ol {
    margin: 0 0 18px;
    padding-left: 22px;
    display: grid;
    gap: 8px;
}
body.hn-blog .article-body li {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--hn-muted);
}
body.hn-blog .article-body ul li::marker {
    color: var(--hn-red);
}
body.hn-blog .article-body a {
    color: var(--hn-red);
    font-weight: 700;
    text-decoration: none;
}
body.hn-blog .article-body a:hover {
    text-decoration: underline;
}
body.hn-blog .article-body b,
body.hn-blog .article-body strong {
    color: var(--hn-ink);
    font-weight: 700;
}
body.hn-blog .article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--hn-radius-card);
}

body.hn-blog .article-body .art-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 0 22px;
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius-card);
    scrollbar-width: thin;
    scrollbar-color: var(--hn-red) rgba(13, 14, 17, 0.08);
}
body.hn-blog .article-body .art-table-wrap::-webkit-scrollbar {
    height: 4px;
}
body.hn-blog .article-body .art-table-wrap::-webkit-scrollbar-track {
    background: rgba(13, 14, 17, 0.08);
}
body.hn-blog .article-body .art-table-wrap::-webkit-scrollbar-thumb {
    background: var(--hn-red);
}
body.hn-blog .article-body table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.5;
}
body.hn-blog .article-body table th,
body.hn-blog .article-body table td {
    padding: 10px 14px;
    border-bottom: 1px solid var(--hn-line);
    text-align: left;
    vertical-align: top;
    color: var(--hn-ink-2);
}
body.hn-blog .article-body table th {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--hn-muted);
    background: var(--hn-bg);
    white-space: nowrap;
}
body.hn-blog .article-body table tr:last-child td {
    border-bottom: 0;
}
body.hn-blog .article-body table tbody tr:nth-child(even) td {
    background: var(--hn-bg);
}
@media (max-width: 760px) {
    body.hn-blog .article-body table {
        min-width: 620px;
    }
}

body.hn-blog .article-toc {
    background: var(--hn-bg);
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius-card);
    padding: 20px 24px;
    margin: 0 0 28px;
}
body.hn-blog .article-toc .t {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hn-muted);
    margin-bottom: 12px;
}
body.hn-blog .article-toc ol {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 7px;
}
body.hn-blog .article-toc li {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--hn-ink);
}
body.hn-blog .article-toc li::marker {
    color: var(--hn-muted-2);
    font-weight: 700;
}
body.hn-blog .article-toc a {
    color: var(--hn-ink);
    text-decoration: none;
}
body.hn-blog .article-toc a:hover {
    color: var(--hn-red);
}

body.hn-blog .article-body .yarpp-related {
    margin-top: 36px;
    padding: 22px 24px;
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius-card);
}
body.hn-blog .article-body .yarpp-related h3 {
    display: block;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    color: var(--hn-ink);
    margin: 0 0 12px;
}
body.hn-blog .article-body .yarpp-related ol,
body.hn-blog .article-body .yarpp-related ul {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
}
body.hn-blog .article-body .yarpp-related li {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}
body.hn-blog .article-body .yarpp-related a {
    color: var(--hn-ink);
    font-weight: 700;
    text-decoration: none;
}
body.hn-blog .article-body .yarpp-related a:hover {
    color: var(--hn-red);
    text-decoration: none;
}

body.hn-blog .article-author {
    margin-top: 48px;
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius-card);
    background: var(--hn-paper);
    padding: 26px 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
body.hn-blog .article-author > img {
    flex: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
}
body.hn-blog .article-author h3 {
    display: block;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--hn-ink);
    margin: 0 0 6px;
}
body.hn-blog .article-author p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--hn-muted);
    margin: 0;
}

body.hn-blog .article-more {
    margin-top: 56px;
}
body.hn-blog .article-more h2 {
    display: block;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--hn-ink);
    margin: 0 0 20px;
    padding: 0;
    max-width: none;
}
body.hn-blog .article-more .grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
body.hn-blog .am-card {
    display: flex;
    flex-direction: column;
    background: var(--hn-paper);
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius-card);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
body.hn-blog .am-card:hover {
    box-shadow: 0 18px 44px -28px rgba(13, 14, 17, 0.28);
    border-color: var(--hn-ink);
}
body.hn-blog .am-card .img {
    aspect-ratio: 16 / 10;
    background: var(--hn-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hn-muted-2);
    border-bottom: 1px solid var(--hn-line);
    overflow: hidden;
}
body.hn-blog .am-card .img svg {
    width: 30px;
    height: 30px;
}
body.hn-blog .am-card .img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
body.hn-blog .am-card .body {
    padding: 16px 18px 20px;
    display: grid;
    gap: 8px;
}
body.hn-blog .am-card h3 {
    display: block;
    font-family: var(--font-head);
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--hn-ink);
    margin: 0;
    transition: color 0.15s ease;
}
body.hn-blog .am-card:hover h3 {
    color: var(--hn-red);
}
body.hn-blog .am-card p {
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--hn-muted);
    margin: 0;
}

body.hn-blog .article-comments {
    margin-top: 56px;
}
body.hn-blog .article-comments > h2 {
    display: block;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--hn-ink);
    margin: 0 0 20px;
    padding: 0;
    max-width: none;
}
body.hn-blog .article-comments .comment-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 12px;
}
body.hn-blog .article-comments .comment-list .children {
    list-style: none;
    margin: 12px 0 0;
    padding-left: 24px;
    display: grid;
    gap: 12px;
}
body.hn-blog .article-comments .comment-body {
    background: var(--hn-paper);
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius-card);
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--hn-ink-2);
}
body.hn-blog .article-comments .comment-author {
    font-weight: 800;
    color: var(--hn-ink);
}
body.hn-blog .article-comments .comment-author img {
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}
body.hn-blog .article-comments .comment-meta {
    font-size: 12px;
    color: var(--hn-muted-2);
    margin-bottom: 8px;
}
body.hn-blog .article-comments .comment-meta a {
    color: var(--hn-muted-2);
}
body.hn-blog .article-comments .reply a {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--hn-red);
}

body.hn-blog .article-comments .comment-respond {
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius-card);
    background: var(--hn-paper);
    padding: 26px 28px;
}
body.hn-blog .article-comments .comment-reply-title {
    display: block;
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--hn-ink);
    margin: 0 0 16px;
}
body.hn-blog .article-comments .comment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 0;
}
body.hn-blog .article-comments .comment-form > p {
    margin: 0;
    grid-column: 1 / -1;
}

body.hn-blog .article-comments .comment-form > p.comment-notes { order: 0; }
body.hn-blog .article-comments .comment-form > p.comment-form-author { grid-column: 1 / 2; order: 1; }
body.hn-blog .article-comments .comment-form > p.comment-form-email { grid-column: 2 / 3; order: 2; }
body.hn-blog .article-comments .comment-form > p.comment-form-comment { order: 3; }
body.hn-blog .article-comments .comment-form > p.comment-form-cookies-consent { order: 4; }
body.hn-blog .article-comments .comment-form > p.form-submit { order: 5; }
@media (max-width: 640px) {
    body.hn-blog .article-comments .comment-form > p.comment-form-author,
    body.hn-blog .article-comments .comment-form > p.comment-form-email { grid-column: 1 / -1; }
}
body.hn-blog .article-comments .comment-notes {
    font-size: 12.5px;
    color: var(--hn-muted);
}
body.hn-blog .article-comments .comment-form label {
    display: block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hn-muted);
    margin-bottom: 7px;
}
body.hn-blog .article-comments .comment-form input[type="text"],
body.hn-blog .article-comments .comment-form input[type="email"],
body.hn-blog .article-comments .comment-form textarea {
    width: 100%;
    box-sizing: border-box;
    height: 46px;
    border: 1.5px solid var(--hn-line);
    border-radius: var(--hn-radius);
    background: var(--hn-paper);
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--hn-ink);
    outline: none;
    transition: border-color 0.15s ease;
}
body.hn-blog .article-comments .comment-form textarea {
    height: auto;
    min-height: 120px;
    padding: 12px 14px;
    resize: vertical;
}
body.hn-blog .article-comments .comment-form input:focus,
body.hn-blog .article-comments .comment-form textarea:focus {
    border-color: var(--hn-ink);
}
body.hn-blog .article-comments .comment-form .cookies-consent,
body.hn-blog .article-comments .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    color: var(--hn-muted);
}
body.hn-blog .article-comments .comment-form-cookies-consent input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--hn-red);
    flex: none;
}
body.hn-blog .article-comments .comment-form-cookies-consent label {
    display: inline;
    margin: 0;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: var(--hn-muted);
}
body.hn-blog .article-comments .comment-form input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 28px;
    border: 0;
    border-radius: var(--hn-radius);
    background: var(--hn-red);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s ease;
}
body.hn-blog .article-comments .comment-form input[type="submit"]:hover {
    background: var(--hn-ink);
}

@media (max-width: 1100px) {
    body.hn-blog .blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.hn-blog .article-more .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    body.hn-blog .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.hn-blog .bl-head,
    body.hn-blog .bl-section,
    body.hn-blog .art-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 640px) {
    body.hn-blog .article-head h1 {
        font-size: 26px;
    }

    body.hn-blog .article-byline {
        flex-direction: column;
        align-items: flex-start;
    }

    body.hn-blog .article-more .grid {
        grid-template-columns: 1fr;
    }

    body.hn-blog .article-comments .comment-form-author,
    body.hn-blog .article-comments .comment-form-email {
        grid-column: 1 / -1;
    }
}

@media (max-width: 540px) {
    body.hn-blog .blog-grid {
        grid-template-columns: 1fr;
    }
}

body.hn-generic {
    background: var(--hn-bg);
}
body.hn-generic .o-container-full-w > h1 {
    max-width: var(--hn-container);
    margin: 0 auto;
    box-sizing: border-box;
    padding: 24px 32px 4px;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--hn-ink);
    text-align: left;
}
body.hn-generic .o-container-full-w > #breadcrumbs {
    max-width: var(--hn-container);
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 32px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hn-muted);
    text-align: left;
}
@media (max-width: 760px) {
    body.hn-generic .o-container-full-w > h1 {
        padding-left: 20px;
        padding-right: 20px;
    }
    body.hn-generic .o-container-full-w > #breadcrumbs {
        padding-left: 20px;
        padding-right: 20px;
    }
}
body.hn-generic .o-container-full-w > #breadcrumbs a {
    color: var(--hn-muted);
    transition: color 0.15s ease;
}
body.hn-generic .o-container-full-w > #breadcrumbs a:hover {
    color: var(--hn-red);
}
body.hn-generic .new-container .description {
    color: var(--hn-ink-2);
    line-height: 1.7;
}

body.hn-mapa {
    background: var(--hn-bg);
}

body.hn-mapa .hn-mapa-main {
    padding-bottom: 24px;
}

body.hn-mapa .hn-mapa-main h1 {
    max-width: none;
    margin: 0;
    padding: 24px 0 4px;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--hn-ink);
    text-align: left;
}

body.hn-mapa .hn-mapa-main #breadcrumbs {
    max-width: none;
    margin: 0;
    padding: 0 0 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--hn-muted);
    text-align: left;
}

body.hn-mapa .hn-mapa-main #breadcrumbs a {
    color: var(--hn-muted);
    transition: color 0.15s ease;
}

body.hn-mapa .hn-mapa-main #breadcrumbs a:hover {
    color: var(--hn-red);
}

body.hn-mapa .hn-mapa-card {
    margin-top: 8px;
    padding: 28px 32px;
    background: var(--hn-paper);
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius-card);
    box-shadow: var(--hn-shadow-card);
}

body.hn-mapa .hn-mapa-card a {
    color: var(--hn-ink-2);
    text-decoration: none;
    transition: color 0.15s ease;
}

body.hn-mapa .hn-mapa-card a:hover {
    color: var(--hn-red);
}

body.hn-mapa .hn-mapa-tiles {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

body.hn-mapa .hn-mapa-tiles li {
    margin: 0;
    padding: 0;
}

body.hn-mapa .hn-mapa-tiles a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 72px;
    padding: 20px 22px;
    box-sizing: border-box;
    background: var(--hn-bg);
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius-card);
    font-size: 16px;
    font-weight: 700;
    color: var(--hn-ink);
    transition: border-color 0.15s ease, color 0.15s ease;
}

body.hn-mapa .hn-mapa-tiles a::after {
    content: '→';
    color: var(--hn-red);
    font-weight: 800;
    transition: transform 0.15s ease;
}

body.hn-mapa .hn-mapa-tiles a:hover {
    border-color: var(--hn-red);
    color: var(--hn-red);
}

body.hn-mapa .hn-mapa-tiles a:hover::after {
    transform: translateX(3px);
}

body.hn-mapa .hn-mapa-sec h2 {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--hn-ink);
    margin: 28px 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--hn-line);
}

body.hn-mapa .hn-mapa-sec:first-child h2 {
    margin-top: 0;
}

body.hn-mapa .hn-mapa-sec h2 a {
    color: var(--hn-ink);
}

body.hn-mapa .hn-mapa-sec h2 a:hover {
    color: var(--hn-red);
}

body.hn-mapa .hn-mapa-cols {
    list-style: none;
    margin: 0;
    padding: 0;
    column-count: 4;
    column-gap: 28px;
}

body.hn-mapa .hn-mapa-cols li {
    break-inside: avoid;
    margin: 0;
    padding: 3px 0;
    font-size: 13.5px;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    body.hn-mapa .hn-mapa-cols {
        column-count: 3;
    }
}

@media (max-width: 900px) {
    body.hn-mapa .hn-mapa-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.hn-mapa .hn-mapa-cols {
        column-count: 2;
    }
}

@media (max-width: 620px) {
    body.hn-mapa .hn-mapa-card {
        padding: 20px;
    }

    body.hn-mapa .hn-mapa-tiles {
        grid-template-columns: minmax(0, 1fr);
    }

    body.hn-mapa .hn-mapa-cols {
        column-count: 1;
    }
}

body.hn-claim .claim-hero {
    background: var(--hn-ink);
    color: #fff;
    padding: 30px 0 56px;
}

body.hn-claim .claim-hero .inner,
body.hn-claim .claim-layout {
    max-width: var(--hn-container);
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 32px;
    padding-right: 32px;
}

body.hn-claim .claim-hero #breadcrumbs {
    max-width: none;
    margin: 0 0 36px;
    padding: 0;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
    text-align: left;
}

body.hn-claim .claim-hero #breadcrumbs a {
    color: rgba(255, 255, 255, 0.62);
    transition: color 0.15s ease;
}

body.hn-claim .claim-hero #breadcrumbs a:hover {
    color: #fff;
}

body.hn-claim .claim-hero #breadcrumbs .breadcrumb_last,
body.hn-claim .claim-hero #breadcrumbs strong {
    color: #fff;
    font-weight: 700;
}

body.hn-claim .claim-hero h1 {
    display: block;
    max-width: 660px;
    margin: 0;
    padding: 0;
    font-family: var(--font-head);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: #fff;
    text-align: left;
    text-wrap: balance;
}

body.hn-claim .claim-hero .lead,
body.hn-blog .bl-head .lead {
    display: block;
    padding: 0;
    border: 0;
    text-align: inherit;
}

body.hn-claim .claim-hero .lead {
    max-width: 560px;
    margin: 16px 0 0 !important;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    text-wrap: pretty;
}

body.hn-claim .claim-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 72px;
    align-items: start;
    padding-top: 56px;
    padding-bottom: 88px;
}

body.hn-claim .claim-benefits h2,
body.hn-claim .claim-steps h2 {
    display: block;
    font-family: var(--font-head);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--hn-ink);
    margin: 0 0 10px;
}

body.hn-claim .claim-benefits .sub {
    font-size: 14px;
    line-height: 1.65;
    color: var(--hn-muted);
    margin: 0 0 22px;
    text-wrap: pretty;
}

body.hn-claim .claim-benefit-list {
    display: grid;
    gap: 14px;
}

body.hn-claim .claim-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--hn-paper);
    border: 1px solid var(--hn-line);
    border-radius: 12px;
}

body.hn-claim .claim-benefit .ico {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--hn-red-soft);
    color: var(--hn-red);
    display: grid;
    place-items: center;
}

body.hn-claim .claim-benefit .ico svg {
    width: 20px;
    height: 20px;
}

body.hn-claim .claim-benefit .t {
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--hn-ink);
}

body.hn-claim .claim-benefit .d {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--hn-muted);
    text-wrap: pretty;
}

body.hn-claim .claim-steps {
    margin-top: 44px;
}

body.hn-claim .claim-steps h2 {
    margin-bottom: 22px;
}

body.hn-claim .claim-step-list {
    display: grid;
    gap: 14px;
}

body.hn-claim .claim-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--hn-paper);
    border: 1px solid var(--hn-line);
    border-radius: 12px;
}

body.hn-claim .claim-step .ico {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--hn-red-soft);
    color: var(--hn-red);
    display: grid;
    place-items: center;
    font-size: 17px;
    font-weight: 800;
}

body.hn-claim .claim-step .t {
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--hn-ink);
    padding-top: 3px;
}

body.hn-claim .claim-step .t span {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--hn-muted);
}

body.hn-claim .claim-aside {
    position: sticky;
    top: 96px;
}

body.hn-claim .contact-card {
    background: var(--hn-paper);
    border: 1px solid var(--hn-line);
    border-radius: 14px;
    box-shadow: 0 18px 44px -32px rgba(13, 14, 17, 0.18);
    overflow: hidden;
}

body.hn-claim .contact-card-head {
    background: var(--hn-bg);
    color: var(--hn-ink);
    padding: 26px 28px 24px;
    border-bottom: 1px solid var(--hn-line);
}

body.hn-claim .contact-card-head h3 {
    display: block;
    font-family: var(--font-head);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--hn-ink);
    margin: 0;
    text-wrap: balance;
}

body.hn-claim .contact-card-head p {
    margin: 10px 0 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--hn-muted);
}

body.hn-claim .contact-card .wpcf7 {
    padding: 24px 28px 28px;
}

body.hn-claim .contact-card .cf-field {
    margin-bottom: 16px;
}

body.hn-claim .contact-card .cf-field .wpcf7-form-control-wrap {
    display: block;
}

body.hn-claim .contact-card .cf-field input {
    width: 100%;
    box-sizing: border-box;
    border: 1.5px solid transparent;
    border-radius: var(--hn-radius);
    background: #eeede8;
    padding: 13px 15px;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--hn-ink);
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

body.hn-claim .contact-card .cf-field input::placeholder {
    color: var(--hn-muted);
    font-weight: 500;
}

body.hn-claim .contact-card .cf-field input:focus {
    outline: none;
    border-color: var(--hn-red);
    background: var(--hn-paper);
    box-shadow: 0 0 0 3px var(--hn-red-soft);
}

body.hn-claim .contact-card .cf-field input.wpcf7-not-valid {
    border-color: var(--hn-red);
    background: var(--hn-red-soft);
}

body.hn-claim .contact-card .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--hn-red);
}

body.hn-claim .cf-consent {
    margin: 4px 0 18px;
}

body.hn-claim .cf-consent .wpcf7-list-item {
    margin: 0;
}

body.hn-claim .cf-consent .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

body.hn-claim .cf-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--hn-red);
    flex: none;
    cursor: pointer;
}

body.hn-claim .cf-consent .wpcf7-list-item-label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.55;
    color: var(--hn-muted);
}

body.hn-claim .cf-consent .wpcf7-list-item-label a {
    color: var(--hn-ink);
    text-decoration: underline;
}

body.hn-claim .contact-card input[type="submit"] {
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: var(--hn-radius);
    background: var(--hn-red);
    color: #fff;
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s ease;
}

body.hn-claim .contact-card input[type="submit"]:hover {
    background: var(--hn-red-dark);
}

body.hn-claim .cf-foot {
    margin: 16px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--hn-muted);
}

body.hn-claim .cf-foot svg {
    flex: none;
    width: 14px;
    height: 14px;
    margin-top: 1px;
}

body.hn-claim .contact-card .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px 14px;
    border: 1px solid rgba(232, 19, 47, 0.35);
    border-radius: var(--hn-radius);
    background: var(--hn-red-soft);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--hn-red-dark);
}

body.hn-claim .contact-success {
    display: none;
    padding: 40px 28px 44px;
    text-align: center;
}

body.hn-claim .contact-card.is-sent .wpcf7 {
    display: none;
}

body.hn-claim .contact-card.is-sent .contact-success {
    display: block;
}

body.hn-claim .contact-success .ok {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(31, 138, 76, 0.1);
    color: #1f8a4c;
    display: grid;
    place-items: center;
}

body.hn-claim .contact-success .ok svg {
    width: 30px;
    height: 30px;
}

body.hn-claim .contact-success h3 {
    display: block;
    font-family: var(--font-head);
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--hn-ink);
    margin: 0 0 10px;
}

body.hn-claim .contact-success p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--hn-muted);
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    body.hn-claim .claim-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    body.hn-claim .claim-aside {
        position: static;
        max-width: 560px;
    }
}

@media (max-width: 720px) {
    body.hn-claim .claim-hero {
        padding: 22px 0 44px;
    }

    body.hn-claim .claim-hero .inner,
    body.hn-claim .claim-layout {
        padding-left: 20px;
        padding-right: 20px;
    }

    body.hn-claim .claim-layout {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}

body.error404 {
    background: var(--hn-bg);
}

body.error404 .hn-404 {
    padding: 64px 32px 96px;
}

body.error404 .hn-404-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

body.error404 .hn-404-code {
    display: block;
    font-size: clamp(96px, 16vw, 168px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--hn-ink);
}

body.error404 .hn-404-code em {
    font-style: normal;
    color: var(--hn-red);
}

body.error404 .hn-404-inner h1 {
    display: block;
    max-width: none;
    margin: 18px auto 0;
    padding: 0;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--hn-ink);
    text-align: center;
}

body.error404 .hn-404-lead {
    max-width: 560px;
    margin: 12px auto 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--hn-muted);
}

body.error404 .hn-404 .hn-hero-search {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: 32px auto 0;
}

body.error404 .hn-404 .hn-search-row {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--hn-line);
    border-radius: calc(var(--hn-radius) + 2px);
    padding: 6px;
    margin: 0;
    box-shadow: 0 18px 40px -24px rgba(13, 14, 17, 0.35);
}

body.error404 .hn-404 .hn-search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
    padding: 0 8px 0 14px;
    margin: 0;
    color: var(--hn-muted);
}

body.error404 .hn-404 .hn-search-field > svg {
    flex: none;
    width: 18px;
    height: 18px;
}

body.error404 .hn-404 .hn-search-row input.c-search__input {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    height: 52px;
    border: 0;
    outline: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--hn-ink);
    padding: 0;
    margin: 0;
}

body.error404 .hn-404 .hn-search-row input.c-search__input::placeholder {
    color: var(--hn-muted-2);
    font-weight: 600;
}

body.error404 .hn-404 .hn-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--hn-red);
    color: #fff;
    border: 0;
    border-radius: var(--hn-radius);
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 26px;
    height: 52px;
    flex: none;
    margin: 0;
    cursor: pointer;
    transition: background 0.15s ease;
}

body.error404 .hn-404 .hn-search-btn:hover {
    background: var(--hn-red-dark);
}

body.error404 .hn-404 .hn-search-btn svg {
    width: 16px;
    height: 16px;
}

body.error404 .hn-404 .ajaxSpinner {
    display: none;
    flex: none;
    align-self: center;
    margin-right: 10px;
}

body.error404 .hn-404 #dynamic-search {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    bottom: auto;
    transform: none;
    padding: 0;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--hn-line);
    border-radius: 8px;
    box-shadow: 0 24px 48px -16px rgba(13, 14, 17, 0.25);
    max-height: 380px;
    overflow-y: auto;
    z-index: 60;
}

body.error404 .hn-404 #dynamic-search-inner {
    max-height: none;
    overflow: visible;
}

body.error404 .hn-404 #dynamic-search-inner a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    color: var(--hn-ink);
    border-bottom: 1px solid var(--hn-line);
}

body.error404 .hn-404 #dynamic-search-inner a:last-child {
    border-bottom: 0;
}

body.error404 .hn-404 #dynamic-search-inner a:hover {
    background: var(--hn-red-soft);
}

body.error404 .hn-404 #dynamic-search-inner a p {
    margin: 0;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

body.error404 .hn-404 #dynamic-search-inner a p:last-child {
    color: var(--hn-muted);
    font-size: 13px;
    white-space: nowrap;
}

body.error404 .hn-404 #dynamic-search-inner > p {
    margin: 0;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--hn-muted);
    text-align: left;
}

body.error404 .hn-404 #dynamic-search-inner > p.hn-ds-head {
    padding: 11px 16px 7px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hn-muted-2);
}

body.error404 .hn-404-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

body.error404 .hn-404-btn {
    display: inline-flex;
    align-items: center;
    padding: 11px 20px;
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius);
    background: var(--hn-paper);
    color: var(--hn-ink);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

body.error404 .hn-404-btn:hover {
    border-color: var(--hn-red);
    color: var(--hn-red);
}

body.error404 .hn-404-btn.is-primary {
    background: var(--hn-red);
    border-color: var(--hn-red);
    color: #fff;
}

body.error404 .hn-404-btn.is-primary:hover {
    background: var(--hn-red-dark);
    border-color: var(--hn-red-dark);
}

@media (max-width: 560px) {
    body.error404 .hn-404 {
        padding: 40px 20px 64px;
    }
}

body.hn-auth .hn-auth-wrap {
    box-sizing: border-box;
    padding: 48px 32px 72px;
}

body.hn-auth .hn-auth-card {
    background: var(--hn-paper);
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius-card);
    box-shadow: var(--hn-shadow-card);
    max-width: 460px;
    margin: 0 auto;
    padding: 30px 32px 26px;
    box-sizing: border-box;
}

body.hn-auth .hn-auth-kicker {
    display: block;
    color: var(--hn-red);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

body.hn-auth .hn-auth-card h1 {
    display: block;
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--hn-ink);
    margin: 0 0 8px;
    padding: 0;
    max-width: none;
    text-align: left;
}

body.hn-auth .hn-auth-lead {
    font-size: 14px;
    line-height: 1.6;
    color: var(--hn-muted);
    margin: 0 0 20px;
}

body.hn-auth .hn-auth-field {
    margin: 0 0 14px;
}

body.hn-auth .hn-auth-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--hn-ink);
    margin-bottom: 6px;
    text-align: left;
}

body.hn-auth .hn-auth-card input[type="email"],
body.hn-auth .hn-auth-card input[type="text"],
body.hn-auth .hn-auth-card input[type="tel"],
body.hn-auth .hn-auth-card input[type="number"],
body.hn-auth .hn-auth-card input[type="password"] {
    width: 100%;
    box-sizing: border-box;
    height: 46px;
    border: 1.5px solid var(--hn-line);
    border-radius: var(--hn-radius);
    background: var(--hn-paper);
    color: var(--hn-ink);
    font-size: 15px;
    padding: 4px 14px;
}

body.hn-auth .hn-auth-card input::placeholder {
    color: var(--hn-muted);
    font-weight: 500;
}

body.hn-auth .hn-auth-card input[type="email"]:focus,
body.hn-auth .hn-auth-card input[type="text"]:focus,
body.hn-auth .hn-auth-card input[type="tel"]:focus,
body.hn-auth .hn-auth-card input[type="number"]:focus,
body.hn-auth .hn-auth-card input[type="password"]:focus {
    outline: none;
    border-color: var(--hn-red);
    box-shadow: 0 0 0 3px var(--hn-red-soft);
}

body.hn-auth .hn-auth-passwrap {
    position: relative;
    display: block;
}

body.hn-auth .hn-auth-passwrap input {
    padding-right: 48px;
}

body.hn-auth .hn-auth-peek {
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: var(--hn-radius);
    background: none;
    color: var(--hn-muted);
    cursor: pointer;
}

body.hn-auth .hn-auth-peek:hover {
    color: var(--hn-ink);
}

body.hn-auth .hn-auth-peek svg {
    width: 20px;
    height: 20px;
}

body.hn-auth .hn-auth-peek .ico-hide {
    display: none;
}

body.hn-auth .hn-auth-peek.is-on .ico-show {
    display: none;
}

body.hn-auth .hn-auth-peek.is-on .ico-hide {
    display: block;
}

body.hn-auth .hn-auth-card input[type="submit"] {
    width: 100%;
    border: 0;
    border-radius: var(--hn-radius);
    background: var(--hn-red);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 16px;
    margin-top: 6px;
    cursor: pointer;
    transition: background 0.15s ease;
}

body.hn-auth .hn-auth-card input[type="submit"]:hover {
    background: var(--hn-red-dark);
}

body.hn-auth .hn-auth-reqs {
    margin: 0 0 14px;
    padding: 12px 14px;
    background: var(--hn-bg);
    border: 1px solid var(--hn-line);
    border-radius: var(--hn-radius);
    text-align: left;
}

body.hn-auth .hn-auth-reqs > span {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--hn-ink);
}

body.hn-auth .hn-auth-reqs ul {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
}

body.hn-auth .hn-auth-reqs li {
    position: relative;
    padding-left: 22px;
    font-size: 12.5px;
    line-height: 1.8;
    color: var(--hn-muted);
}

body.hn-auth .hn-auth-reqs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 800;
    color: #c2c4bf;
}

body.hn-auth .hn-auth-reqs li.is-ok {
    color: var(--hn-ink);
}

body.hn-auth .hn-auth-reqs li.is-ok::before {
    color: #1a7f4b;
}

body.hn-auth .hn-auth-reqs.is-error li:not(.is-ok) {
    color: var(--hn-red-dark);
}

body.hn-auth .hn-auth-reqs.is-error li:not(.is-ok)::before {
    content: '✕';
    color: var(--hn-red);
}

body.hn-auth .hn-auth-links {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--hn-line);
    text-align: center;
    font-size: 14px;
    color: var(--hn-muted);
}

body.hn-auth .hn-auth-links p {
    margin: 8px 0 0;
    color: var(--hn-muted);
}

body.hn-auth .hn-auth-links a {
    color: var(--hn-red);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease;
}

body.hn-auth .hn-auth-links a:hover {
    color: var(--hn-red-dark);
    text-decoration: underline;
}

body.hn-auth .hn-auth-legal {
    margin: 14px 0 0;
    font-size: 12px;
    line-height: 1.6;
    color: var(--hn-muted);
    text-align: center;
}

body.hn-auth .hn-auth-legal a {
    color: var(--hn-muted);
    text-decoration: underline;
}

body.hn-auth .hn-auth-legal a:hover {
    color: var(--hn-red);
}

body.hn-auth .hn-auth-card .error,
body.hn-auth .hn-auth-card .success {
    border-radius: var(--hn-radius);
    padding: 12px 14px;
    margin: 0 0 16px;
    font-size: 13.5px;
    font-weight: 600;
    text-align: left;
}

body.hn-auth .hn-auth-card .error {
    border: 1px solid rgba(232, 19, 47, 0.35);
    background: var(--hn-red-soft);
    color: var(--hn-red-dark);
}

body.hn-auth .hn-auth-card .success {
    border: 1px solid rgba(26, 127, 75, 0.35);
    background: rgba(26, 127, 75, 0.09);
    color: #1a7f4b;
}

body.hn-auth .hn-auth-card .success a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width: 520px) {
    body.hn-auth .hn-auth-wrap {
        padding: 24px 16px 48px;
    }

    body.hn-auth .hn-auth-card {
        padding: 24px 20px 22px;
    }
}

body.hn-kontakt > h1,
body.hn-blog .bl-head h1,
body.hn-blog .article-head h1,
body.hn-generic .o-container-full-w > h1,
body.hn-mapa .hn-mapa-main h1,
body.hn-claim .claim-hero h1,
body.hn-auth .hn-auth-card h1 {
    text-transform: none;
}

@media (pointer: coarse) {
    body.error404 .hn-404 .hn-search-row input.c-search__input {
        font-size: 16px;
    }
}
