.page-help-center {
    min-width: 0;
    overflow-x: clip;
    background:
        radial-gradient(circle at 50% 0%, rgba(46, 46, 46, 0.92) 0%, rgba(24, 24, 24, 0.98) 44%, #121212 100%),
        #121212;
}

.page-help-center *,
.page-help-center *::before,
.page-help-center *::after {
    box-sizing: border-box;
}

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

.help-shell {
    width: min(1240px, calc(100% - 32px));
    max-width: 100%;
    margin: 0 auto;
    padding: 24px 0 max(20px, env(safe-area-inset-bottom));
}

.help-kicker,
.help-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    color: var(--accent-yellow);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.help-kicker {
    margin-bottom: 12px;
    padding: 7px 11px;
    border: 1px solid rgba(253, 185, 19, 0.3);
    border-radius: 8px;
    background: rgba(253, 185, 19, 0.1);
}

.help-command-center,
.help-article-hero,
.help-side-card,
.help-article-content,
.help-feedback,
.help-state-card,
.help-article-card,
.help-list-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
        rgba(30, 30, 30, 0.86);
    color: var(--text-primary);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.help-command-center {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 18px;
    padding: clamp(22px, 4vw, 38px);
}

.help-command-copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    min-width: 0;
}

.help-command-copy h1,
.help-article-hero h1,
.help-state-card h1 {
    max-width: 760px;
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.help-command-copy p,
.help-article-hero p,
.help-state-card p,
.help-contact-card p {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
}

.help-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: min(640px, 100%);
}

.help-hero-stats span {
    display: grid;
    gap: 3px;
    min-height: 72px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(18, 18, 18, 0.74);
    color: var(--text-secondary);
    font-size: 0.86rem;
}

.help-hero-stats strong {
    color: var(--text-primary);
    font-size: 1.34rem;
}

.help-search-panel {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(18, 18, 18, 0.76);
}

.help-search-panel > label,
.help-feedback-form label span {
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.help-search-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    min-height: 58px;
    padding: 8px 8px 8px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #141414;
}

.help-search-row i {
    color: var(--accent-yellow);
}

.help-search-row input,
.help-feedback-form textarea {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--text-primary);
    font: inherit;
}

.help-search-row input::placeholder,
.help-feedback-form textarea::placeholder {
    color: #85858b;
}

.help-search-row button,
.help-feedback-actions button,
.help-contact-card a,
.help-article-actions button,
.help-article-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 13px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}

.help-search-row button,
.help-feedback-actions button:first-child,
.help-contact-card a {
    background: var(--flag-gradient);
    color: #111;
}

.help-audience-tabs,
.help-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.help-audience-tabs a,
.help-quick-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.88rem;
    font-weight: 800;
}

.help-audience-tabs a:hover,
.help-audience-tabs a.is-active,
.help-quick-links a:hover {
    color: var(--text-primary);
    border-color: rgba(253, 185, 19, 0.45);
    background: rgba(253, 185, 19, 0.1);
    opacity: 1;
}

.help-workspace {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.help-directory,
.help-article-side {
    position: sticky;
    top: 86px;
    display: grid;
    gap: 14px;
    min-width: 0;
}

.help-workspace-main {
    display: grid;
    gap: 20px;
    min-width: 0;
}

.help-side-card {
    padding: 16px;
}

.help-card-title-row,
.help-section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin: 0 0 14px;
}

.help-card-title-row h2,
.help-side-card h2,
.help-section-heading h2,
.help-feedback h2 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: var(--text-primary);
    font-size: 1.08rem;
    line-height: 1.25;
    letter-spacing: 0;
}

.help-card-title-row a,
.help-section-heading a,
.help-breadcrumb a,
.help-results-meta a {
    color: var(--accent-yellow);
    font-weight: 800;
}

.help-category-nav {
    display: grid;
    gap: 7px;
}

.help-category-nav a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    min-height: 44px;
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--text-secondary);
}

.help-category-nav a span {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    overflow-wrap: anywhere;
    font-weight: 800;
    line-height: 1.3;
}

.help-category-nav a i {
    width: 18px;
    color: var(--accent-yellow);
    text-align: center;
    flex: 0 0 18px;
}

.help-category-nav a strong {
    min-width: 28px;
    padding: 3px 7px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-primary);
    font-size: 0.82rem;
    text-align: center;
}

.help-category-nav a:hover,
.help-category-nav a.is-active {
    border-color: rgba(253, 185, 19, 0.42);
    background: rgba(253, 185, 19, 0.1);
    color: var(--text-primary);
    opacity: 1;
}

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

.help-article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.help-article-card,
.help-list-item {
    min-width: 0;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.help-article-card {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 168px;
    padding: 18px;
}

.help-article-card span,
.help-list-item span,
.help-results-meta {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.help-article-card strong,
.help-list-item strong {
    color: var(--text-primary);
    font-size: 1.02rem;
    line-height: 1.35;
}

.help-article-card p,
.help-list-item p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.55;
}

.help-article-card:hover,
.help-list-item:hover {
    border-color: rgba(253, 185, 19, 0.48);
    background: rgba(42, 42, 42, 0.92);
    opacity: 1;
    transform: translateY(-2px);
}

.help-results-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    text-align: right;
}

.help-article-list {
    display: grid;
    gap: 10px;
}

.help-list-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 104px;
    padding: 15px;
}

.help-list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(253, 185, 19, 0.12);
    color: var(--accent-yellow);
    flex: 0 0 44px;
}

.help-list-item > .fa-chevron-right {
    color: var(--text-muted);
}

.help-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0 0 14px;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.help-reading-progress {
    position: sticky;
    top: 0;
    z-index: 20;
    width: 100%;
    height: 4px;
    margin-bottom: 14px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.help-reading-progress span {
    display: block;
    width: 0%;
    height: 100%;
    background: var(--flag-gradient);
    transition: width 0.12s linear;
}

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

.help-article-main {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.help-article-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    padding: clamp(20px, 3vw, 32px);
}

.help-article-hero h1 {
    font-size: clamp(1.9rem, 3vw, 3rem);
}

.help-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.help-article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    background: rgba(18, 18, 18, 0.7);
    font-size: 0.86rem;
}

.help-article-actions {
    display: grid;
    gap: 8px;
    min-width: 180px;
}

.help-article-actions button,
.help-article-actions a,
.help-feedback-actions button:nth-child(2) {
    background: #242424;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.help-article-actions button:hover,
.help-article-actions a:hover,
.help-feedback-actions button:nth-child(2):hover {
    border-color: rgba(253, 185, 19, 0.45);
    background: #2b2b2b;
    opacity: 1;
}

.help-article-content {
    padding: clamp(20px, 3vw, 34px);
    color: var(--text-primary);
    font-size: 1.02rem;
    line-height: 1.78;
    overflow-wrap: anywhere;
}

.help-article-content h2,
.help-article-content h3 {
    margin: 26px 0 10px;
    color: var(--text-primary);
    line-height: 1.25;
    letter-spacing: 0;
    scroll-margin-top: 92px;
}

.help-article-content h2:first-child,
.help-article-content h3:first-child,
.help-article-content p:first-child {
    margin-top: 0;
}

.help-article-content p {
    margin: 0 0 16px;
}

.help-article-content ul {
    margin: 0 0 18px;
    padding-left: 22px;
}

.help-article-content li {
    margin: 7px 0;
}

.help-article-content a {
    color: var(--accent-yellow);
    font-weight: 800;
}

.help-article-content pre {
    max-width: 100%;
    overflow-x: auto;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #161616;
}

.help-toc-list {
    display: grid;
    gap: 6px;
}

.help-toc-list a {
    display: block;
    padding: 8px 9px;
    border-left: 2px solid transparent;
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
}

.help-toc-list a.is-h3 {
    padding-left: 18px;
    font-size: 0.84rem;
}

.help-toc-list a:hover,
.help-toc-list a.is-active {
    border-left-color: var(--accent-yellow);
    background: rgba(253, 185, 19, 0.09);
    color: var(--text-primary);
    opacity: 1;
}

.help-mini-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
}

.help-mini-stat span {
    color: var(--text-secondary);
}

.help-related-list {
    display: grid;
    gap: 8px;
}

.help-related-list a {
    display: block;
    padding: 9px 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 800;
    line-height: 1.45;
}

.help-contact-card {
    background:
        linear-gradient(135deg, rgba(253, 185, 19, 0.1), rgba(0, 106, 68, 0.08)),
        rgba(30, 30, 30, 0.88);
}

.help-contact-card a {
    width: fit-content;
    margin-top: 14px;
}

.help-feedback {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
    gap: 18px;
    padding: clamp(18px, 3vw, 24px);
}

.help-feedback-copy p {
    margin: 8px 0 0;
    color: var(--text-secondary);
    line-height: 1.55;
}

.help-feedback-message {
    margin-top: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(53, 196, 143, 0.28);
    border-radius: 8px;
    background: rgba(53, 196, 143, 0.12);
    color: #8ff0c8;
    font-weight: 800;
}

.help-feedback-form {
    display: grid;
    gap: 12px;
}

.help-feedback-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.help-feedback-form label {
    display: grid;
    gap: 8px;
}

.help-feedback-form textarea {
    min-height: 94px;
    resize: vertical;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: #141414;
}

.help-state-card {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: clamp(24px, 5vw, 42px);
    text-align: center;
}

.help-state-card i {
    color: var(--accent-yellow);
    font-size: 2rem;
}

.help-state-card h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.35rem;
}

html.light-theme .page-help-center,
html.light-theme body.page-help-center {
    background: #f5f7fb;
}

html.light-theme .help-command-center,
html.light-theme .help-article-hero,
html.light-theme .help-side-card,
html.light-theme .help-article-content,
html.light-theme .help-feedback,
html.light-theme .help-state-card,
html.light-theme .help-article-card,
html.light-theme .help-list-item,
html.light-theme .help-search-panel {
    background: #ffffff;
    border-color: #dde4ef;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

html.light-theme .help-hero-stats span,
html.light-theme .help-search-row,
html.light-theme .help-article-meta span,
html.light-theme .help-article-actions button,
html.light-theme .help-article-actions a,
html.light-theme .help-feedback-actions button:nth-child(2),
html.light-theme .help-feedback-form textarea {
    background: #f8fafc;
    border-color: #dde4ef;
    color: var(--text-primary);
}

html.light-theme .help-audience-tabs a,
html.light-theme .help-quick-links a,
html.light-theme .help-category-nav a strong {
    background: #f8fafc;
    border-color: #dde4ef;
}

html.light-theme .help-article-card:hover,
html.light-theme .help-list-item:hover,
html.light-theme .help-category-nav a:hover,
html.light-theme .help-category-nav a.is-active,
html.light-theme .help-audience-tabs a:hover,
html.light-theme .help-audience-tabs a.is-active {
    background: #fffaf0;
}

body.pwa-standalone.page-help-center .help-shell {
    width: min(1240px, calc(100% - 20px));
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
}

@media (max-width: 1080px) {
    .help-command-center,
    .help-workspace,
    .help-article-layout,
    .help-feedback {
        grid-template-columns: 1fr;
    }

    .help-directory,
    .help-article-side {
        position: static;
    }

    .help-category-nav-card {
        padding-bottom: 12px;
    }

    .help-category-nav {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x proximity;
    }

    .help-category-nav a {
        min-width: min(280px, 84vw);
        scroll-snap-align: start;
    }

    .help-contact-card {
        display: none;
    }

    .help-article-side .help-contact-card {
        display: block;
    }
}

@media (max-width: 760px) {
    .help-shell {
        width: min(100% - 20px, 1240px);
        padding-top: 16px;
    }

    .help-command-center,
    .help-article-hero,
    .help-article-content,
    .help-feedback,
    .help-side-card,
    .help-state-card {
        padding: 18px;
    }

    .help-command-copy h1,
    .help-article-hero h1 {
        font-size: 2rem;
    }

    .help-hero-stats,
    .help-article-grid,
    .help-article-hero {
        grid-template-columns: 1fr;
    }

    .help-article-actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-width: 0;
    }

    .help-article-actions button,
    .help-article-actions a {
        padding: 9px 8px;
        font-size: 0.84rem;
    }

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

    .help-search-row button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .help-audience-tabs,
    .help-quick-links {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x proximity;
    }

    .help-audience-tabs a,
    .help-quick-links a {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .help-section-heading,
    .help-card-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .help-results-meta {
        justify-content: flex-start;
        text-align: left;
    }

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

    .help-list-item > .fa-chevron-right {
        display: none;
    }
}

@media (max-width: 460px) {
    .help-article-actions {
        grid-template-columns: 1fr;
    }

    .help-hero-stats {
        gap: 8px;
    }

    .help-list-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
}

@media print {
    .navbar,
    .site-footer,
    .help-reading-progress,
    .help-breadcrumb,
    .help-article-actions,
    .help-article-side,
    .help-feedback {
        display: none !important;
    }

    .help-shell {
        width: 100%;
        padding: 0;
    }

    .help-article-layout,
    .help-article-hero {
        display: block;
    }

    .help-article-hero,
    .help-article-content {
        border: 0;
        box-shadow: none;
        background: #fff;
        color: #111;
    }
}

/* === Help center v2 responsive polish === */
.page-help-center {
    min-height: 100dvh;
}

.page-help-center .container {
    max-width: none;
}

.help-shell {
    width: min(1280px, calc(100% - 40px));
    padding-top: clamp(18px, 3vw, 34px);
}

.help-command-center {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
    border-radius: 12px;
}

.help-command-copy h1,
.help-article-hero h1,
.help-state-card h1 {
    text-wrap: balance;
}

.help-search-panel {
    align-self: stretch;
    border-radius: 10px;
}

.help-search-row {
    border-radius: 10px;
}

.help-hero-stats span,
.help-side-card,
.help-article-card,
.help-list-item,
.help-article-hero,
.help-article-content,
.help-feedback,
.help-state-card {
    border-radius: 12px;
}

.help-workspace {
    grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
    gap: 22px;
}

.help-category-nav a,
.help-audience-tabs a,
.help-quick-links a,
.help-article-actions button,
.help-article-actions a,
.help-feedback-actions button,
.help-contact-card a {
    min-width: 0;
}

.help-article-card strong,
.help-list-item strong,
.help-category-nav a span {
    overflow-wrap: anywhere;
}

.help-list-item > div:nth-child(2) {
    min-width: 0;
}

.help-list-item p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.help-article-content img,
.help-article-content video,
.help-article-content iframe {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.help-article-content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
    -webkit-overflow-scrolling: touch;
}

.help-article-content code,
.help-article-content pre {
    overflow-wrap: anywhere;
}

body.pwa-standalone.page-help-center .help-shell {
    padding-bottom: calc(110px + env(safe-area-inset-bottom));
}

@media (max-width: 1180px) {
    .help-shell {
        width: min(100% - 28px, 1120px);
    }

    .help-command-center {
        grid-template-columns: 1fr;
    }

    .help-search-panel {
        width: 100%;
    }
}

@media (max-width: 920px) {
    .help-shell {
        width: min(100% - 22px, 860px);
    }

    .help-workspace,
    .help-article-layout,
    .help-feedback {
        grid-template-columns: 1fr;
    }

    .help-directory,
    .help-article-side {
        position: static;
    }

    .help-category-nav-card {
        padding: 14px;
    }

    .help-category-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
    }

    .help-category-nav a {
        min-width: 0;
    }

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

    .help-article-side .help-contact-card,
    .help-toc-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .help-shell {
        width: calc(100% - 16px);
        padding-top: 10px;
    }

    .help-command-center,
    .help-article-hero,
    .help-article-content,
    .help-feedback,
    .help-side-card,
    .help-state-card {
        padding: 16px;
        border-radius: 10px;
    }

    .help-command-copy h1,
    .help-article-hero h1 {
        font-size: clamp(1.72rem, 8vw, 2.15rem);
        line-height: 1.08;
    }

    .help-command-copy p,
    .help-article-hero p {
        font-size: 0.96rem;
    }

    .help-hero-stats {
        grid-template-columns: 1fr;
    }

    .help-search-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        padding: 10px;
    }

    .help-search-row > i {
        display: none;
    }

    .help-search-row input {
        min-height: 42px;
        font-size: 16px;
    }

    .help-audience-tabs,
    .help-quick-links {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
        scroll-snap-type: x proximity;
    }

    .help-audience-tabs a,
    .help-quick-links a {
        flex: 0 0 auto;
        scroll-snap-align: start;
        white-space: nowrap;
    }

    .help-category-nav,
    .help-article-grid,
    .help-article-side {
        grid-template-columns: 1fr;
    }

    .help-list-item {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }

    .help-list-icon {
        width: 42px;
        height: 42px;
    }

    .help-list-item > .fa-chevron-right {
        display: none;
    }

    .help-article-actions {
        grid-template-columns: 1fr;
    }

    .help-feedback-actions,
    .help-feedback-actions button,
    .help-contact-card a,
    .help-state-card .btn {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .help-shell {
        width: calc(100% - 12px);
    }

    .help-command-center,
    .help-article-hero,
    .help-article-content,
    .help-feedback,
    .help-side-card,
    .help-state-card {
        padding: 13px;
    }
}
