.info_help_page {
    --help-accent: var(--jc-amber, #009d8f);
    --help-teal: var(--jc-amber-dark, #0a6f69);
    --help-violet: var(--jc-sky, #3dd6c6);
}

.info_hero--help {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
}

.info_help_hero_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.1rem;
}

.info_help_search {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.1rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 157, 143, 0.14);
    box-shadow: var(--info-shadow-soft);
    backdrop-filter: blur(16px);
}

.info_help_search label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--info-text);
    font-weight: 900;
}

.info_help_search_box {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem;
    border: 1px solid rgba(0, 157, 143, 0.14);
    border-radius: 999px;
    background: #ffffff;
}

.info_help_search_box > i {
    width: 2.35rem;
    height: 2.35rem;
    display: grid;
    place-items: center;
    color: var(--info-blue);
    background: var(--info-blue-soft);
    border-radius: 50%;
}

.info_help_search_box .form-control {
    min-height: 46px;
    padding: 0 0.35rem;
    border: 0;
    border-radius: 0;
    box-shadow: none !important;
    background: transparent;
}

.info_help_search_box .info_primary_btn {
    min-height: 44px;
    box-shadow: none;
    white-space: nowrap;
}

.info_help_clear {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.55rem 0.7rem;
    border-radius: 999px;
    color: var(--info-muted);
    background: var(--info-surface-soft);
    font-weight: 800;
    text-decoration: none !important;
}

.info_help_clear:hover {
    color: var(--info-blue);
}

.info_help_search_hint {
    margin: 0.7rem 0 0;
    color: var(--info-muted);
    font-size: 0.9rem;
}

.info_help_search_hint kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.6rem;
    height: 1.55rem;
    padding: 0 0.45rem;
    border-radius: 8px;
    background: #0f172a;
    color: #fff;
    font-weight: 900;
}

.info_help_shortcuts {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 1rem 0 1.2rem;
}

.info_help_shortcut_card {
    position: relative;
    min-height: 178px;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1rem;
    border: 1px solid var(--info-border);
    border-radius: 26px;
    overflow: hidden;
    color: var(--info-text) !important;
    text-decoration: none !important;
    background:
        radial-gradient(circle at 88% 14%, rgba(61, 214, 198, 0.12), transparent 28%),
        var(--info-surface);
    box-shadow: var(--info-shadow-soft);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.info_help_shortcut_card::after {
    content: "";
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--info-blue), var(--info-amber));
    opacity: 0.22;
}

.info_help_shortcut_card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 157, 143, 0.22);
    box-shadow: var(--info-shadow);
}

.info_help_shortcut_card > span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--info-blue);
    background: var(--info-blue-soft);
    font-size: 1.1rem;
}

.info_help_shortcut_card strong {
    font-size: 0.98rem;
    line-height: 1.25;
}

.info_help_shortcut_card small {
    color: var(--info-muted);
    line-height: 1.5;
}

.info_help_layout {
    row-gap: 1rem;
}

.info_help_side_stack {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.info_help_topics_panel,
.info_recent_panel,
.info_help_article,
.info_related_panel,
.info_help_categories_panel,
.info_support_panel {
    height: auto;
}

.info_help_filter_bar {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--info-border);
    border-radius: 999px;
    background: var(--info-surface-soft);
}

.info_help_filter_bar > i {
    color: var(--info-blue);
}

.info_help_filter_bar .form-control {
    min-height: 40px;
    border: 0;
    background: transparent;
    box-shadow: none !important;
}

.info_help_results,
.info_recent_list {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
}

.info_help_result,
.info_recent_list li {
    list-style: none;
}

.info_help_result_link {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem;
    border: 1px solid var(--info-border);
    border-radius: 22px;
    background: var(--info-surface-soft);
    color: var(--info-text) !important;
    text-decoration: none !important;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.info_help_result_link:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 157, 143, 0.22);
    background: #ffffff;
    box-shadow: var(--info-shadow-soft);
}

.info_help_result_icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--info-blue);
    background: var(--info-blue-soft);
    flex: 0 0 auto;
}

.info_help_result_body {
    min-width: 0;
    display: grid;
    gap: 0.28rem;
}

.info_help_result_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    color: var(--info-muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.info_help_result_meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.info_help_result_body strong {
    color: var(--info-text);
    font-size: 1rem;
    line-height: 1.3;
}

.info_help_result_body small {
    color: var(--info-muted);
    line-height: 1.55;
}

.info_help_result_arrow {
    color: #94a3b8;
    transition: transform 0.18s ease, color 0.18s ease;
}

.info_help_result_link:hover .info_help_result_arrow {
    transform: translateX(3px);
    color: var(--info-blue);
}

.info_help_results_compact {
    gap: 0.6rem;
}

.info_help_result.is_compact .info_help_result_link {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 0.8rem;
    border-radius: 18px;
}

.info_help_result.is_compact .info_help_result_icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
}

.info_help_result.is_compact .info_help_result_arrow,
.info_help_result.is_compact .info_help_result_meta,
.info_help_result.is_compact .info_help_result_body small {
    display: none;
}

.info_help_article_tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.info_help_article_header {
    padding-bottom: 1rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--info-border);
}

.info_help_article_title {
    margin: 0.8rem 0 0.75rem;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    font-weight: 950;
    line-height: 1.05;
    color: var(--info-text);
    letter-spacing: -0.045em;
}

.info_help_keyword_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info_help_keyword_list a,
.info_help_keyword_list span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: var(--info-surface-soft);
    border: 1px solid var(--info-border);
    color: var(--info-muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none !important;
}

.info_help_keyword_list a:hover {
    color: var(--info-blue);
    border-color: rgba(0, 157, 143, 0.22);
}

.info_help_doc_copy {
    color: #314f54;
    font-size: 1rem;
    line-height: 1.8;
}

.info_help_doc_copy h1,
.info_help_doc_copy h2,
.info_help_doc_copy h3,
.info_help_doc_copy h4 {
    margin-top: 1.5rem;
    color: var(--info-text);
    letter-spacing: -0.025em;
}

.info_help_doc_copy p {
    margin-bottom: 1rem;
}

.info_help_doc_copy img,
.info_help_doc_copy iframe,
.info_help_doc_copy video {
    max-width: 100%;
    border-radius: 18px;
}

.info_help_doc_copy table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
}

.info_help_doc_copy th,
.info_help_doc_copy td {
    padding: 0.75rem;
    border: 1px solid var(--info-border);
}

.info_help_categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.info_help_category_chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.68rem;
    border: 1px solid var(--info-border);
    border-radius: 999px;
    color: var(--info-text);
    background: var(--info-surface-soft);
    font-size: 0.86rem;
    font-weight: 850;
    text-decoration: none !important;
}

.info_help_category_chip i {
    color: var(--info-blue);
}

.info_help_category_chip em {
    display: inline-grid;
    place-items: center;
    min-width: 1.45rem;
    height: 1.45rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: #ffffff;
    color: var(--info-muted);
    font-style: normal;
    font-size: 0.72rem;
}

.info_help_category_chip:hover {
    color: var(--info-blue);
    border-color: rgba(0, 157, 143, 0.24);
}

.info_recent_list {
    list-style: none;
}

.info_recent_link {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.82rem;
    border-radius: 18px;
    background: var(--info-surface-soft);
    color: var(--info-text);
    font-weight: 850;
    line-height: 1.35;
    text-decoration: none !important;
}

.info_recent_link i {
    margin-top: 0.1rem;
    color: var(--info-blue);
}

.info_recent_link:hover {
    color: var(--info-blue);
}

.info_support_panel {
    display: grid;
    gap: 0.7rem;
    background:
        radial-gradient(circle at 88% 8%, rgba(61, 214, 198, 0.16), transparent 28%),
        linear-gradient(135deg, #ffffff, #f1faf8);
}

.info_support_panel > i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--info-blue), var(--info-amber));
    font-size: 1.25rem;
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_help_search,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_help_search_box,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_help_result_link,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_help_shortcut_card,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_help_filter_bar,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_help_category_chip,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_recent_link,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_support_panel {
    background:
        radial-gradient(circle at 100% 0%, rgba(61, 214, 198, 0.08), transparent 28%),
        var(--info-surface-soft);
    border-color: var(--info-border);
    color: var(--info-text) !important;
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_help_result_link:hover,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_help_shortcut_card:hover {
    background: rgba(14, 44, 44, 0.96);
    border-color: rgba(61, 214, 198, 0.32);
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_help_search_box .form-control,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_help_filter_bar .form-control {
    color: var(--info-text);
}

:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_help_search_hint kbd,
:is(html[data-theme="dark"], body[data-theme="dark"], body.theme-dark, body.dark, body.dark-mode) .info_help_category_chip em {
    background: rgba(255, 255, 255, 0.1);
    color: var(--info-text);
}

.info_support_panel strong {
    color: var(--info-text);
    font-size: 1.05rem;
}

.info_support_panel p {
    margin: 0;
    color: var(--info-muted);
    line-height: 1.6;
}

.info_help_not_found,
.info_help_no_results {
    min-height: 320px;
}

@media (max-width: 1199.98px) {
    .info_help_shortcuts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .info_hero--help {
        grid-template-columns: 1fr;
    }

    .info_help_side_stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .info_support_panel,
    .info_recent_panel {
        align-self: stretch;
    }
}

@media (max-width: 767.98px) {
    .info_help_shortcuts,
    .info_help_side_stack {
        grid-template-columns: 1fr;
    }

    .info_help_search_box {
        grid-template-columns: auto minmax(0, 1fr);
        border-radius: 24px;
        padding: 0.5rem;
    }

    .info_help_search_box .info_primary_btn,
    .info_help_clear {
        grid-column: 1 / -1;
        width: 100%;
    }

    .info_help_result_link {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .info_help_result_arrow {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .info_help_shortcut_card {
        min-height: 150px;
    }

    .info_help_article_tools .info_ghost_btn {
        width: 100%;
    }
}
