:root {
    --help-brand-700: #01286f;
    --help-brand-500: #023592;
    --help-brand-400: #1f56c5;
    --help-sky-500: #00b0e5;
    --help-accent-500: #f9ba00;
    --help-neutral-950: #0f172a;
    --help-neutral-900: #111827;
    --help-neutral-700: #334155;
    --help-neutral-600: #475569;
    --help-neutral-500: #64748b;
    --help-neutral-400: #94a3b8;
    --help-neutral-300: #cbd5e1;
    --help-neutral-200: #e2e8f0;
    --help-neutral-100: #f1f5f9;
    --help-neutral-50: #f8fafc;
    --help-white: #fff;
    --help-radius-sm: 10px;
    --help-radius-md: 14px;
    --help-radius-lg: 18px;
    --help-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --help-shadow-md: 0 14px 36px rgba(2, 53, 146, 0.09);
    --help-container: 80rem;
    --help-workbench: 96rem;
    --help-header-height: 64px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.help-body {
    min-width: 0;
    margin: 0;
    overflow-x: clip;
    color: var(--help-neutral-700);
    background: var(--help-neutral-50);
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

.help-body button,
.help-body input {
    font: inherit;
}

.help-body a {
    color: inherit;
}

.help-body :focus-visible {
    outline: 3px solid rgba(0, 176, 229, 0.38);
    outline-offset: 3px;
}

.help-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.help-skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--help-white);
    background: var(--help-brand-500);
    border-radius: var(--help-radius-sm);
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

.help-skip-link:focus {
    transform: translateY(0);
}

.help-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: clip;
}

.help-page__main {
    flex: 1 0 auto;
    min-width: 0;
}

.help-container {
    width: min(100% - 32px, var(--help-container));
    margin-inline: auto;
}

/* Header */
.help-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: var(--help-neutral-700);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--help-neutral-200);
    box-shadow: var(--help-shadow-sm);
    backdrop-filter: blur(14px);
}

.help-header__inner {
    display: flex;
    align-items: center;
    width: min(100% - 32px, var(--help-container));
    height: var(--help-header-height);
    margin-inline: auto;
    gap: 28px;
}

.help-brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
}

.help-brand__logo {
    display: inline-flex;
    align-items: center;
}

.help-brand__logo img {
    display: block;
    width: auto;
    height: 38px;
    object-fit: contain;
}

.help-brand__divider {
    width: 1px;
    height: 24px;
    margin-inline: 16px;
    background: var(--help-neutral-200);
}

.help-brand__section {
    color: var(--help-neutral-900);
    font-size: 17px;
    font-weight: 650;
    text-decoration: none;
    white-space: nowrap;
}

.help-nav {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    gap: 4px;
    min-width: 0;
}

.help-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-inline: 13px;
    color: var(--help-neutral-600);
    font-size: 14px;
    font-weight: 520;
    text-decoration: none;
    white-space: nowrap;
    transition: color 160ms ease;
}

.help-nav__link::after {
    position: absolute;
    right: 13px;
    bottom: 0;
    left: 13px;
    height: 2px;
    content: "";
    background: var(--help-brand-500);
    opacity: 0;
    transform: scaleX(0.65);
    transition:
        opacity 160ms ease,
        transform 160ms ease;
}

.help-nav__link:hover,
.help-nav__link.is-active {
    color: var(--help-brand-500);
}

.help-nav__link.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.help-header__actions {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.help-header__site-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--help-neutral-500);
    font-size: 13px;
    font-weight: 550;
    text-decoration: none;
    white-space: nowrap;
}

.help-header__site-link:hover {
    color: var(--help-brand-500);
}

.help-header__site-link-icon {
    font-size: 10px;
    transform: rotate(45deg);
}

.help-nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 10px;
    color: var(--help-neutral-700);
    background: transparent;
    border: 1px solid var(--help-neutral-200);
    border-radius: var(--help-radius-sm);
    cursor: pointer;
}

.help-nav-toggle__line {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    background: currentColor;
    border-radius: 2px;
    transition:
        transform 160ms ease,
        opacity 160ms ease;
}

.help-nav-toggle.is-open .help-nav-toggle__line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.help-nav-toggle.is-open .help-nav-toggle__line:nth-child(2) {
    opacity: 0;
}

.help-nav-toggle.is-open .help-nav-toggle__line:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.help-mobile-nav {
    padding: 8px 16px 14px;
    background: var(--help-white);
    border-top: 1px solid var(--help-neutral-100);
}

.help-mobile-nav a {
    display: block;
    padding: 11px 12px;
    color: var(--help-neutral-700);
    font-size: 14px;
    font-weight: 520;
    text-decoration: none;
    border-radius: 8px;
}

.help-mobile-nav a:hover,
.help-mobile-nav a[aria-current="page"] {
    color: var(--help-brand-500);
    background: #eef4ff;
}

/* Footer */
.help-footer {
    flex: 0 0 auto;
    color: var(--help-neutral-500);
    background: var(--help-white);
    border-top: 1px solid var(--help-neutral-200);
}

.help-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100% - 32px, var(--help-container));
    min-height: 72px;
    margin-inline: auto;
    gap: 24px;
    font-size: 13px;
}

.help-footer__inner p {
    margin: 0;
}

.help-footer__links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.help-footer__links a {
    text-decoration: none;
}

.help-footer__links a:hover {
    color: var(--help-brand-500);
}

/* Search form */
.help-search-form {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    padding: 5px;
    background: var(--help-white);
    border: 1px solid #b7c4d6;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(2, 53, 146, 0.11);
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.help-search-form:focus-within {
    border-color: var(--help-brand-400);
    box-shadow:
        0 0 0 3px rgba(31, 86, 197, 0.12),
        0 10px 28px rgba(2, 53, 146, 0.12);
}

.help-search-form__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    color: var(--help-neutral-400);
}

.help-search-form input {
    flex: 1 1 auto;
    min-width: 0;
    height: 46px;
    padding: 0 10px 0 0;
    color: var(--help-neutral-900);
    background: transparent;
    border: 0;
    outline: 0;
}

.help-search-form input::placeholder {
    color: var(--help-neutral-400);
}

.help-search-form button {
    flex: 0 0 auto;
    min-width: 92px;
    padding-inline: 22px;
    color: var(--help-white);
    background: var(--help-brand-500);
    border: 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 650;
    cursor: pointer;
    transition:
        background 160ms ease,
        transform 160ms ease;
}

.help-search-form button:hover {
    background: var(--help-brand-700);
}

.help-search-form button:active {
    transform: translateY(1px);
}

/* Hub */
.help-hub-intro {
    color: var(--help-neutral-900);
    background:
        linear-gradient(90deg, rgba(2, 53, 146, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(2, 53, 146, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, #f4f8ff 0%, #f8fbff 100%);
    background-size: 32px 32px, 32px 32px, auto;
    border-bottom: 1px solid #dbe6f5;
}

.help-hub-intro__inner {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(420px, 1.28fr);
    align-items: center;
    min-height: 224px;
    padding-block: 44px;
    gap: clamp(36px, 7vw, 96px);
}

.help-hub-intro__copy h1 {
    margin: 0 0 10px;
    color: var(--help-brand-700);
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 760;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.help-hub-intro__copy p {
    max-width: 30rem;
    margin: 0;
    color: var(--help-neutral-600);
    font-size: 16px;
    line-height: 1.75;
}

.help-hub-search {
    max-width: 680px;
    justify-self: end;
}

.help-breadcrumb-bar {
    color: var(--help-neutral-500);
    background: var(--help-white);
    border-bottom: 1px solid var(--help-neutral-200);
}

.help-breadcrumb {
    display: flex;
    align-items: center;
    min-height: 48px;
    gap: 10px;
    overflow: hidden;
    font-size: 13px;
    white-space: nowrap;
}

.help-breadcrumb a {
    flex: 0 0 auto;
    text-decoration: none;
}

.help-breadcrumb a:hover {
    color: var(--help-brand-500);
}

.help-breadcrumb i {
    flex: 0 0 auto;
    color: var(--help-neutral-300);
    font-size: 9px;
}

.help-breadcrumb span {
    overflow: hidden;
    color: var(--help-brand-500);
    font-weight: 600;
    text-overflow: ellipsis;
}

.help-hub-content {
    padding-block: 40px 64px;
}

.help-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 24px;
}

.help-section-heading h2 {
    margin: 0;
    color: var(--help-neutral-900);
    font-size: 23px;
    font-weight: 720;
    letter-spacing: -0.015em;
    line-height: 1.35;
}

.help-section-heading p {
    margin: 5px 0 0;
    color: var(--help-neutral-500);
    font-size: 14px;
}

.help-center-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: var(--help-white);
    border: 1px solid var(--help-neutral-200);
    border-radius: var(--help-radius-md);
    box-shadow: var(--help-shadow-sm);
    overflow: hidden;
}

.help-center-card {
    position: relative;
    min-width: 0;
    padding: 26px 28px 22px;
    background: var(--help-white);
    transition:
        background 180ms ease,
        box-shadow 180ms ease;
}

.help-center-card:nth-child(odd) {
    border-right: 1px solid var(--help-neutral-200);
}

.help-center-card:nth-child(n + 3) {
    border-top: 1px solid var(--help-neutral-200);
}

.help-center-card:hover {
    z-index: 1;
    background: #fbfdff;
    box-shadow: inset 3px 0 0 var(--help-center-accent, var(--help-brand-500));
}

.help-center-card__header {
    display: flex;
    align-items: flex-start;
    min-width: 0;
    gap: 14px;
}

.help-center-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    color: var(--help-center-accent, var(--help-brand-500));
    background: #eef4ff;
    background: color-mix(in srgb, var(--help-center-accent, var(--help-brand-500)) 10%, white);
    border: 1px solid #dbe6f5;
    border-color: color-mix(in srgb, var(--help-center-accent, var(--help-brand-500)) 18%, white);
    border-radius: 11px;
    font-size: 18px;
}

.help-center-card__identity {
    flex: 1 1 auto;
    min-width: 0;
}

.help-center-card__identity h3 {
    margin: 0;
    color: var(--help-neutral-900);
    font-size: 18px;
    font-weight: 680;
    line-height: 1.45;
}

.help-center-card__identity h3 a {
    text-decoration: none;
}

.help-center-card__identity h3 a:hover {
    color: var(--help-brand-500);
}

.help-center-card__identity p {
    margin: 5px 0 0;
    overflow: hidden;
    color: var(--help-neutral-500);
    font-size: 13px;
    line-height: 1.6;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.help-center-card__count {
    flex: 0 0 auto;
    padding: 4px 8px;
    color: var(--help-neutral-500);
    background: var(--help-neutral-100);
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
}

.help-center-card__articles {
    margin-top: 22px;
    padding-top: 17px;
    border-top: 1px solid var(--help-neutral-100);
}

.help-center-card__label {
    margin: 0 0 8px;
    color: var(--help-neutral-400);
    font-size: 12px;
    font-weight: 600;
}

.help-center-card__articles ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.help-center-card__articles a {
    display: flex;
    align-items: center;
    min-width: 0;
    padding-block: 6px;
    gap: 9px;
    color: var(--help-neutral-600);
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
}

.help-center-card__articles a i {
    flex: 0 0 auto;
    color: var(--help-neutral-400);
    font-size: 12px;
}

.help-center-card__articles a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.help-center-card__articles a:hover {
    color: var(--help-brand-500);
}

.help-center-card__articles a:hover i {
    color: var(--help-sky-500);
}

.help-center-card__empty {
    min-height: 92px;
    margin: 22px 0 0;
    padding-top: 18px;
    color: var(--help-neutral-400);
    border-top: 1px solid var(--help-neutral-100);
    font-size: 13px;
}

.help-center-card__enter {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    gap: 8px;
    color: var(--help-brand-500) !important;
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}

.help-center-card__enter i {
    font-size: 10px;
    transition: transform 160ms ease;
}

.help-center-card__enter:hover i {
    transform: translateX(3px);
}

.help-latest-section {
    margin-top: 44px;
}

.help-latest-list {
    background: var(--help-white);
    border: 1px solid var(--help-neutral-200);
    border-radius: var(--help-radius-md);
    box-shadow: var(--help-shadow-sm);
    overflow: hidden;
}

.help-latest-row {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) auto 14px;
    align-items: center;
    min-width: 0;
    min-height: 62px;
    padding: 10px 20px;
    gap: 10px;
    color: var(--help-neutral-700);
    text-decoration: none;
    transition: background 160ms ease;
}

.help-latest-row + .help-latest-row {
    border-top: 1px solid var(--help-neutral-100);
}

.help-latest-row:hover {
    background: #f7faff;
}

.help-latest-row__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--help-brand-400);
}

.help-latest-row__body {
    display: flex;
    align-items: baseline;
    min-width: 0;
    gap: 12px;
}

.help-latest-row__title {
    overflow: hidden;
    color: var(--help-neutral-900);
    font-size: 14px;
    font-weight: 560;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.help-latest-row:hover .help-latest-row__title {
    color: var(--help-brand-500);
}

.help-latest-row__category {
    flex: 0 0 auto;
    color: var(--help-neutral-400);
    font-size: 12px;
}

.help-latest-row time {
    color: var(--help-neutral-400);
    font-size: 12px;
    white-space: nowrap;
}

.help-latest-row__arrow {
    color: var(--help-neutral-300);
    font-size: 10px;
}

/* Search page */
.help-search-hero {
    padding-block: 30px 34px;
    background: #f3f7ff;
    border-bottom: 1px solid #dbe6f5;
}

.help-search-hero h1 {
    margin: 0 0 16px;
    color: var(--help-neutral-900);
    font-size: 25px;
    font-weight: 720;
    letter-spacing: -0.015em;
}

.help-search-form--page {
    max-width: 780px;
    box-shadow: var(--help-shadow-sm);
}

.help-search-content {
    padding-block: 32px 64px;
}

.help-search-layout {
    display: grid;
    grid-template-columns: 224px minmax(0, 1fr);
    align-items: start;
    gap: 32px;
}

.help-search-sidebar,
.help-search-results {
    min-width: 0;
}

.help-search-facets {
    overflow: hidden;
    background: var(--help-white);
    border: 1px solid var(--help-neutral-200);
    border-radius: var(--help-radius-md);
    box-shadow: var(--help-shadow-sm);
}

.help-search-facets summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 16px;
    color: var(--help-neutral-900);
    border-bottom: 1px solid var(--help-neutral-100);
    font-size: 14px;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.help-search-facets summary::-webkit-details-marker {
    display: none;
}

.help-search-facets summary i {
    color: var(--help-neutral-400);
    font-size: 10px;
    transition: transform 160ms ease;
}

.help-search-facets[open] summary i {
    transform: rotate(180deg);
}

.help-search-facets__options {
    display: flex;
    flex-direction: column;
    padding: 8px;
    gap: 2px;
}

.help-search-facets:not([open]) > .help-search-facets__options {
    display: none;
}

.help-search-facets__options a {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 9px 10px;
    gap: 9px;
    color: var(--help-neutral-600);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 520;
    text-decoration: none;
}

.help-search-facets__options a i {
    flex: 0 0 16px;
    color: var(--help-neutral-400);
    text-align: center;
}

.help-search-facets__options a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.help-search-facets__options a:hover {
    color: var(--help-brand-500);
    background: #f3f7ff;
}

.help-search-facets__options a.is-active {
    color: var(--help-brand-500);
    background: #eaf1ff;
    font-weight: 650;
}

.help-search-facets__options a.is-active i {
    color: var(--help-brand-500);
}

.help-results-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 49px;
    margin-bottom: 14px;
    gap: 20px;
}

.help-results-header h2 {
    margin: 0;
    color: var(--help-neutral-900);
    font-size: 21px;
    font-weight: 700;
}

.help-results-header p {
    margin: 5px 0 0;
    color: var(--help-neutral-500);
    font-size: 13px;
}

.help-results-header strong {
    color: var(--help-brand-500);
    font-weight: 680;
}

.help-result-list {
    overflow: hidden;
    background: var(--help-white);
    border: 1px solid var(--help-neutral-200);
    border-radius: var(--help-radius-md);
    box-shadow: var(--help-shadow-sm);
}

.help-result-item + .help-result-item {
    border-top: 1px solid var(--help-neutral-100);
}

.help-result-item__link {
    display: block;
    min-width: 0;
    padding: 22px 24px;
    text-decoration: none;
    transition: background 160ms ease;
}

.help-result-item__link:hover {
    background: #f8fbff;
}

.help-result-item__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-width: 0;
    gap: 16px;
}

.help-result-item__heading h3 {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--help-neutral-900);
    font-size: 18px;
    font-weight: 670;
    line-height: 1.5;
}

.help-result-item__link:hover h3 {
    color: var(--help-brand-500);
}

.help-result-item mark {
    padding: 0 2px;
    color: inherit;
    background: #fff0a8;
    border-radius: 2px;
}

.help-result-item__center {
    flex: 0 0 auto;
    padding: 4px 8px;
    color: var(--help-brand-500);
    background: #eaf1ff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 580;
    white-space: nowrap;
}

.help-result-item__snippet {
    display: -webkit-box;
    margin: 9px 0 0;
    overflow: hidden;
    color: var(--help-neutral-600);
    font-size: 14px;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.help-result-item__meta {
    display: flex;
    flex-wrap: wrap;
    margin-top: 13px;
    gap: 8px 18px;
    color: var(--help-neutral-400);
    font-size: 12px;
}

.help-result-item__meta span,
.help-result-item__meta time {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 5px;
}

.help-result-item__meta i {
    flex: 0 0 auto;
}

.help-pagination {
    max-width: 100%;
    margin-top: 24px;
    overflow-x: auto;
    padding: 3px;
}

.help-pagination > nav {
    min-width: max-content;
}

.help-empty-state {
    padding: 56px 24px;
    color: var(--help-neutral-500);
    text-align: center;
    background: var(--help-white);
    border: 1px solid var(--help-neutral-200);
    border-radius: var(--help-radius-md);
    box-shadow: var(--help-shadow-sm);
}

.help-empty-state > i {
    margin-bottom: 16px;
    color: #9fb3d3;
    font-size: 38px;
}

.help-empty-state h2,
.help-empty-state h3 {
    margin: 0;
    color: var(--help-neutral-900);
    font-size: 19px;
    font-weight: 670;
}

.help-empty-state p {
    max-width: 34rem;
    margin: 8px auto 0;
    font-size: 14px;
    line-height: 1.7;
}

.help-empty-state__link {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    gap: 8px;
    color: var(--help-brand-500) !important;
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

/* Shared article workbench */
.help-shell,
.help-layout-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr) 240px;
    align-items: start;
    gap: 28px;
}

.help-shell {
    width: min(100% - 32px, var(--help-workbench));
    margin-inline: auto;
}

.help-layout-grid {
    width: 100%;
}

.help-sidebar,
.help-main,
.help-toc,
.help-sidebar-panel,
.help-article-column,
.help-toc-panel {
    min-width: 0;
}

.help-sidebar,
.help-toc,
.help-sidebar-panel,
.help-toc-panel {
    position: sticky;
    top: calc(var(--help-header-height) + 24px);
    max-height: calc(100vh - var(--help-header-height) - 48px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--help-neutral-300) transparent;
}

.help-main,
.help-article-column {
    width: 100%;
}

.help-toc,
.help-toc-panel {
    color: var(--help-neutral-500);
    font-size: 13px;
}

.help-prose {
    min-width: 0;
    color: var(--help-neutral-700);
    font-size: 16px;
    line-height: 1.9;
    overflow-wrap: anywhere;
}

.help-prose > :first-child {
    margin-top: 0;
}

.help-prose > :last-child {
    margin-bottom: 0;
}

.help-prose h1,
.help-prose h2,
.help-prose h3,
.help-prose h4,
.help-prose h5,
.help-prose h6 {
    color: var(--help-neutral-900);
    font-weight: 700;
    line-height: 1.45;
    scroll-margin-top: calc(var(--help-header-height) + 28px);
}

.help-prose h2 {
    padding-top: 0.35em;
    margin: 2.4em 0 0.85em;
    font-size: 1.5em;
    border-bottom: 1px solid var(--help-neutral-200);
}

.help-prose h3 {
    margin: 2em 0 0.75em;
    font-size: 1.24em;
}

.help-prose h4,
.help-prose h5,
.help-prose h6 {
    margin: 1.7em 0 0.65em;
    font-size: 1.08em;
}

.help-prose p {
    margin: 1.05em 0;
}

.help-prose a {
    color: var(--help-brand-400);
    text-decoration-color: rgba(31, 86, 197, 0.32);
    text-underline-offset: 3px;
}

.help-prose a:hover {
    color: var(--help-brand-700);
    text-decoration-color: currentColor;
}

.help-prose ul,
.help-prose ol {
    margin: 1.15em 0;
    padding-left: 1.75em;
}

.help-prose li {
    margin: 0.45em 0;
    padding-left: 0.2em;
}

.help-prose li::marker {
    color: var(--help-neutral-500);
}

.help-prose blockquote {
    padding: 0.85em 1.15em;
    margin: 1.45em 0;
    color: var(--help-neutral-700);
    background: #eff8ff;
    border-left: 4px solid var(--help-sky-500);
    border-radius: 0 8px 8px 0;
}

.help-prose blockquote > :first-child {
    margin-top: 0;
}

.help-prose blockquote > :last-child {
    margin-bottom: 0;
}

.help-prose code {
    padding: 0.15em 0.38em;
    color: #075985;
    background: #eaf8ff;
    border-radius: 4px;
    font-size: 0.9em;
}

.help-prose pre {
    max-width: 100%;
    padding: 1.1rem 1.25rem;
    margin: 1.5em 0;
    overflow-x: auto;
    color: #e2e8f0;
    background: #172033;
    border-radius: var(--help-radius-sm);
    line-height: 1.65;
}

.help-prose pre code {
    padding: 0;
    color: inherit;
    background: transparent;
}

.help-prose img,
.help-prose video,
.help-prose iframe {
    max-width: 100%;
}

.help-prose img {
    height: auto;
    margin: 1.45em 0;
    border-radius: var(--help-radius-sm);
}

.help-prose hr {
    margin: 2.3em 0;
    border: 0;
    border-top: 1px solid var(--help-neutral-200);
}

.help-prose table {
    width: 100%;
    min-width: 560px;
    border-spacing: 0;
    border-collapse: collapse;
}

.help-prose th,
.help-prose td {
    padding: 0.7em 0.9em;
    text-align: left;
    vertical-align: top;
    border: 1px solid var(--help-neutral-200);
}

.help-prose th {
    color: var(--help-neutral-900);
    background: var(--help-neutral-50);
    font-weight: 650;
}

.help-table-scroll {
    max-width: 100%;
    margin: 1.5em 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    border-radius: var(--help-radius-sm);
    -webkit-overflow-scrolling: touch;
}

.help-mobile-toolbar {
    display: none;
}

.help-mobile-drawer,
.help-mobile-backdrop {
    display: none;
}

.category-toggle .category-toggle-icon {
    transition: transform 160ms ease;
}

.category-toggle[aria-expanded="true"] .category-toggle-icon {
    transform: rotate(90deg);
}

.help-feedback {
    margin-top: 40px;
    padding: 22px 24px;
    background: var(--help-neutral-50);
    border: 1px solid var(--help-neutral-200);
    border-radius: var(--help-radius-md);
}

.help-feedback [data-feedback-status] {
    min-height: 1.5em;
}

.help-feedback [data-feedback-status].is-success {
    color: #047857;
}

.help-feedback [data-feedback-status].is-error {
    color: #b42318;
}

.help-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 500;
    max-width: min(360px, calc(100vw - 32px));
    padding: 11px 15px;
    color: var(--help-white);
    background: var(--help-neutral-950);
    border-radius: var(--help-radius-sm);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
    font-size: 13px;
}

.help-toast.is-visible {
    display: block;
}

.help-no-scroll {
    overflow: hidden;
}

@media (max-width: 1199px) {
    .help-nav {
        display: none;
    }

    .help-nav-toggle {
        display: block;
    }

    .help-header__site-link {
        display: none;
    }

    .help-shell,
    .help-layout-grid {
        grid-template-columns: 260px minmax(0, 1fr);
    }

    .help-toc,
    .help-toc-panel {
        display: none;
    }
}

@media (min-width: 768px) {
    .help-search-facets:not([open]) .help-search-facets__options {
        display: flex;
    }
}

@media (max-width: 767px) {
    :root {
        --help-header-height: 58px;
    }

    .help-container,
    .help-header__inner,
    .help-footer__inner,
    .help-shell {
        width: min(100% - 24px, var(--help-container));
    }

    .help-header__inner {
        height: var(--help-header-height);
    }

    .help-brand__logo img {
        height: 32px;
    }

    .help-brand__divider {
        height: 20px;
        margin-inline: 11px;
    }

    .help-brand__section {
        font-size: 15px;
    }

    .help-footer__inner {
        align-items: flex-start;
        flex-direction: column;
        min-height: 0;
        padding-block: 20px;
        gap: 10px;
    }

    .help-footer__links {
        flex-wrap: wrap;
        gap: 10px 18px;
    }

    .help-hub-intro__inner {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
        padding-block: 30px 34px;
        gap: 24px;
    }

    .help-hub-intro__copy h1 {
        font-size: 32px;
    }

    .help-hub-intro__copy p {
        font-size: 14px;
    }

    .help-hub-search {
        justify-self: stretch;
    }

    .help-search-form {
        padding: 4px;
    }

    .help-search-form__icon {
        flex-basis: 38px;
    }

    .help-search-form input {
        height: 42px;
        font-size: 14px;
    }

    .help-search-form button {
        min-width: 68px;
        padding-inline: 14px;
    }

    .help-hub-content {
        padding-block: 30px 48px;
    }

    .help-section-heading h2 {
        font-size: 20px;
    }

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

    .help-center-card {
        padding: 22px 18px 19px;
    }

    .help-center-card:nth-child(odd) {
        border-right: 0;
    }

    .help-center-card:nth-child(n + 2) {
        border-top: 1px solid var(--help-neutral-200);
    }

    .help-center-card__header {
        gap: 12px;
    }

    .help-center-card__count {
        position: absolute;
        top: 22px;
        right: 18px;
    }

    .help-center-card__identity {
        padding-right: 54px;
    }

    .help-center-card__identity p {
        white-space: normal;
    }

    .help-latest-row {
        grid-template-columns: 28px minmax(0, 1fr) 12px;
        min-height: 64px;
        padding-inline: 14px;
    }

    .help-latest-row__body {
        display: block;
    }

    .help-latest-row__category {
        display: block;
        margin-top: 3px;
    }

    .help-latest-row time {
        display: none;
    }

    .help-search-hero {
        padding-block: 24px 28px;
    }

    .help-search-hero h1 {
        font-size: 22px;
    }

    .help-search-content {
        padding-block: 20px 48px;
    }

    .help-search-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .help-search-facets summary {
        min-height: 44px;
    }

    .help-search-facets__options {
        flex-direction: row;
        padding: 8px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
        scroll-snap-type: x proximity;
    }

    .help-search-facets__options a {
        flex: 0 0 auto;
        max-width: 12rem;
        border: 1px solid transparent;
        scroll-snap-align: start;
    }

    .help-results-header {
        min-height: 0;
        margin-bottom: 12px;
    }

    .help-result-item__link {
        padding: 18px 16px;
    }

    .help-result-item__heading {
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: 8px;
    }

    .help-result-item__heading h3 {
        font-size: 16px;
    }

    .help-result-item__snippet {
        font-size: 13px;
    }

    .help-empty-state {
        padding: 44px 18px;
    }

    .help-shell,
    .help-layout-grid {
        display: block;
    }

    .help-shell > .help-sidebar,
    .help-layout-grid > .help-sidebar-panel {
        display: none;
    }

    .help-mobile-toolbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-width: 0;
        gap: 12px;
    }

    .help-mobile-drawer {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 310;
        display: block;
        width: min(86vw, 340px);
        overflow-y: auto;
        color: var(--help-neutral-700);
        background: var(--help-white);
        box-shadow: 18px 0 48px rgba(15, 23, 42, 0.2);
        transform: translateX(-105%);
        visibility: hidden;
        transition:
            transform 220ms ease,
            visibility 220ms ease;
    }

    [data-help-sidebar] {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 310;
        display: block;
        width: min(86vw, 340px);
        max-height: none;
        overflow-y: auto;
        background: var(--help-white);
        box-shadow: 18px 0 48px rgba(15, 23, 42, 0.2);
        transform: translateX(-105%);
        visibility: hidden;
        transition:
            transform 220ms ease,
            visibility 220ms ease;
    }

    .help-mobile-drawer.is-open,
    [data-help-sidebar].is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .help-mobile-backdrop {
        position: fixed;
        inset: 0;
        z-index: 300;
        display: block;
        background: rgba(15, 23, 42, 0.48);
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 180ms ease,
            visibility 180ms ease;
    }

    [data-help-sidebar-overlay] {
        position: fixed;
        inset: 0;
        z-index: 300;
        display: block;
        background: rgba(15, 23, 42, 0.48);
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 180ms ease,
            visibility 180ms ease;
    }

    .help-mobile-backdrop.is-open,
    [data-help-sidebar-overlay].is-open {
        opacity: 1;
        visibility: visible;
    }

    .help-prose {
        font-size: 15px;
        line-height: 1.82;
    }

    .help-prose h2 {
        font-size: 1.35em;
    }
}

@media (max-width: 420px) {
    .help-brand__logo img {
        width: 112px;
        height: auto;
    }

    .help-brand__divider {
        margin-inline: 8px;
    }

    .help-search-form__icon {
        display: none;
    }

    .help-search-form input {
        padding-left: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
