/**
 * Help Center Content Styles
 *
 * ONLY help-specific content styles (categories, articles, sidebar).
 * Header and footer come from unified components.
 * Base styles come from app CSS (vars.css, general.css, bootstrap).
 */

/* Help Container */
.help-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.help-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.help-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.help-intro {
    font-size: 1rem;
    color: var(--theme-subtle-foreground);
    margin: 0;
}

/* Categories Grid */
.help-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.help-category-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--theme-background-secondary-bg);
    border-radius: var(--theme-card-border-radius, 8px);
    text-decoration: none;
    color: var(--theme-foreground);
    border: 1px solid var(--theme-border-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.help-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--theme-foreground);
}

.category-icon {
    width: 48px;
    height: 48px;
    background: var(--theme-tertiary-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--theme-interactive);
    flex-shrink: 0;
}

.category-content {
    flex: 1;
    min-width: 0;
}

.category-content h2 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.category-count {
    font-size: 0.8125rem;
    color: var(--theme-subtle-foreground);
    margin: 0;
}

.category-arrow {
    color: var(--theme-subtle-foreground);
    font-size: 0.875rem;
}

.help-stats {
    text-align: center;
    margin-top: 2rem;
    color: var(--theme-subtle-foreground);
    font-size: 0.875rem;
}

/* Layout with Sidebar */
.help-category-page,
.help-article-page,
.help-search-page,
.help-404-page {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

/* Sidebar */
.help-sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
}

.sidebar-nav h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--theme-subtle-foreground);
    margin: 0 0 0.75rem;
    padding: 0 0.5rem;
}

.sidebar-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    color: var(--theme-foreground);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
}

.sidebar-nav li a:hover {
    background: var(--theme-tertiary-bg);
}

.sidebar-nav li.active a {
    background: var(--theme-interactive);
    color: white;
}

.sidebar-nav li a i {
    width: 20px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--theme-interactive);
}

.sidebar-nav li.active a i {
    color: white;
}

.sidebar-nav li a .article-count {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--theme-subtle-foreground);
}

.sidebar-nav li.active a .article-count {
    color: rgba(255, 255, 255, 0.8);
}

/* Breadcrumb */
.help-breadcrumb {
    margin-bottom: 1.5rem;
}

.help-breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.help-breadcrumb li {
    display: flex;
    align-items: center;
    color: var(--theme-subtle-foreground);
}

.help-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--theme-border-color);
}

.help-breadcrumb a {
    color: var(--theme-interactive);
    text-decoration: none;
}

.help-breadcrumb a:hover {
    text-decoration: underline;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.article-card {
    display: block;
    padding: 1.25rem;
    background: var(--theme-background-secondary-bg);
    border-radius: var(--theme-card-border-radius, 8px);
    text-decoration: none;
    color: var(--theme-foreground);
    border: 1px solid var(--theme-border-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--theme-foreground);
}

.article-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.article-card p {
    font-size: 0.875rem;
    color: var(--theme-subtle-foreground);
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.article-link {
    font-size: 0.8125rem;
    color: var(--theme-interactive);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Article Content */
.help-article {
    background: var(--theme-background-secondary-bg);
    padding: 2rem;
    border-radius: var(--theme-card-border-radius, 8px);
    border: 1px solid var(--theme-border-color);
}

.help-article h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--theme-border-color);
}

.article-content {
    font-size: 1rem;
    line-height: 1.7;
}

.article-content h2 {
    font-size: 1.375rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.article-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.article-content p {
    margin: 0 0 1rem;
}

.article-content ul,
.article-content ol {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content a {
    color: var(--theme-interactive);
}

.article-content code {
    background: var(--theme-tertiary-bg);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-family: var(--font-mono, monospace);
    font-size: 0.875em;
}

.article-content pre {
    background: var(--theme-tertiary-bg);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1rem 0;
}

.article-content pre code {
    background: none;
    padding: 0;
}

.article-action {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--theme-border-color);
}

/* Help Content Area */
.help-content {
    min-width: 0;
}

.help-content h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
}

.help-content h1 i {
    color: var(--theme-interactive);
    margin-right: 0.5rem;
}

/* Search Results */
.results-count {
    color: var(--theme-subtle-foreground);
    margin-bottom: 1.5rem;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-result-item {
    display: block;
    padding: 1.25rem;
    background: var(--theme-background-secondary-bg);
    border-radius: var(--theme-card-border-radius, 8px);
    text-decoration: none;
    color: var(--theme-foreground);
    border: 1px solid var(--theme-border-color);
}

.search-result-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-result-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--theme-interactive);
}

.result-category {
    font-size: 0.75rem;
    color: var(--theme-subtle-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.result-snippet {
    font-size: 0.875rem;
    color: var(--theme-subtle-foreground);
    margin: 0.5rem 0 0;
    line-height: 1.5;
}

/* Instant Search Dropdown */
.help-search {
    position: relative;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: var(--theme-background-secondary-bg);
    border: 1px solid var(--theme-border-color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
}

.search-results-dropdown .search-result-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0;
    background: transparent;
    text-decoration: none;
    color: var(--theme-foreground);
    transition: background 0.15s;
}

.search-results-dropdown .search-result-item:first-child {
    border-radius: 8px 8px 0 0;
}

.search-results-dropdown .search-result-item:last-child {
    border-radius: 0 0 8px 8px;
}

.search-results-dropdown .search-result-item:only-child {
    border-radius: 8px;
}

.search-results-dropdown .search-result-item:hover,
.search-results-dropdown .search-result-item.highlighted {
    background: var(--theme-tertiary-bg);
}

.search-results-dropdown .search-result-item strong {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--theme-foreground);
}

.search-results-dropdown .search-result-item span {
    font-size: 0.8125rem;
    color: var(--theme-subtle-foreground);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-results-dropdown .no-results {
    padding: 1.5rem;
    text-align: center;
    color: var(--theme-subtle-foreground);
    font-size: 0.875rem;
}

.search-results-dropdown mark {
    background: #fef08a;
    padding: 0 2px;
    border-radius: 2px;
}

.dark .search-results-dropdown mark {
    background: #854d0e;
}

/* No Results */
.no-results,
.no-articles {
    text-align: center;
    padding: 3rem;
    color: var(--theme-subtle-foreground);
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* 404 & Not Generated */
.not-found-content,
.not-generated-content {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--theme-background-secondary-bg);
    border-radius: var(--theme-card-border-radius, 8px);
    border: 1px solid var(--theme-border-color);
}

.not-found-content i,
.not-generated-content i {
    font-size: 4rem;
    color: var(--theme-subtle-foreground);
    margin-bottom: 1.5rem;
}

.not-found-content h1,
.not-generated-content h1 {
    font-size: 2rem;
    margin: 0 0 1rem;
}

/* ============================================
   MINIMAL HELP PAGE DESIGN (ChatGPT-inspired)
   ============================================ */

/* Minimal container - centered, narrow */
.help-minimal {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Minimal Hero - Just the heading */
.help-minimal-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.help-minimal-hero h1 {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--theme-foreground);
    margin: 0;
}

/* Minimal Chat Container */
/* Chat section flex container for element ordering */
.help-minimal-chat-section {
    display: flex;
    flex-direction: column;
}

.help-minimal-chat {
    order: 1;
    margin-bottom: 0;
}

.help-minimal-chat-section .public-chat-embedded-actions-bar {
    order: 2;
}

.help-minimal-chat-section .help-suggestion-chips {
    order: 3;
}

.help-minimal-chat-section .help-support-contact {
    order: 4;
}

/* Hide the original handover button container from the partial */
.help-minimal .public-chat-embedded-handover-container {
    display: none !important;
}

/* Overlays - use fixed positioning on help page for full-screen coverage */
.help-minimal .public-chat-embedded-handover-overlay,
.help-minimal .public-chat-embedded-confirm-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.help-minimal .public-chat-embedded-handover-overlay.visible,
.help-minimal .public-chat-embedded-confirm-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* Hide the header and welcome area in minimal mode */
.help-minimal .public-chat-embedded {
    background: transparent;
    border: none;
    box-shadow: none;
    height: auto;
    min-height: 0;
}

.help-minimal .public-chat-embedded-header {
    display: none;
}

.help-minimal .public-chat-embedded-messages {
    display: none;
}

.help-minimal .public-chat-embedded--has-messages .public-chat-embedded-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 1rem;
    padding: 0;
    /* No max-height - show full content, page scrolls if needed */
    overflow: visible;
}

/* User messages - right-aligned bubble */
.help-minimal .public-chat-embedded-message--user {
    align-self: flex-end;
    max-width: 85%;
}

.help-minimal .public-chat-embedded-message--user .public-chat-embedded-message-content {
    background: var(--theme-interactive);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 1rem 1rem 0.25rem 1rem;
}

/* Assistant messages - left-aligned, no bubble */
.help-minimal .public-chat-embedded-message--assistant {
    align-self: flex-start;
    max-width: 100%;
}

.help-minimal .public-chat-embedded-message--assistant .public-chat-embedded-message-content {
    background: transparent;
    color: var(--theme-foreground);
    padding: 0;
}

/* Chat Actions Bar (feedback + clear) - Icon buttons only, left-aligned below input */
.public-chat-embedded-actions-bar {
    display: none;
    justify-content: flex-start;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.help-minimal.has-chat-messages .public-chat-embedded-actions-bar {
    display: flex;
}

.public-chat-embedded-feedback-btn,
.public-chat-embedded-clear-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-subtle-foreground);
    transition: all 0.15s ease;
    padding: 0;
}

.public-chat-embedded-feedback-btn:hover {
    color: var(--theme-interactive);
    background: var(--theme-tertiary-bg);
}

.public-chat-embedded-feedback-btn.active {
    background: var(--theme-interactive);
    color: white;
}

.public-chat-embedded-feedback-btn.inactive {
    opacity: 0.4;
    cursor: default;
}

.public-chat-embedded-feedback-btn.inactive:hover {
    background: transparent;
    color: var(--theme-subtle-foreground);
}

.public-chat-embedded-feedback-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.public-chat-embedded-feedback-btn svg,
.public-chat-embedded-clear-btn svg {
    width: 18px;
    height: 18px;
}

.public-chat-embedded-clear-btn:hover {
    color: var(--theme-accent);
    background: rgba(239, 68, 68, 0.08);
}

/* Support Contact Button - Below FAQ chips, centered */
.help-support-contact {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.help-support-contact-btn,
.help-support-contact-btn.public-chat-embedded-handover-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: transparent;
    border: 1px solid var(--theme-border-color);
    border-radius: 8px;
    color: var(--theme-subtle-foreground);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    width: auto !important;
    flex-shrink: 0;
    margin-top: 0;
}

.help-support-contact-btn:hover {
    border-color: var(--theme-interactive);
    color: var(--theme-interactive);
    background: var(--theme-tertiary-bg);
}

.help-support-contact-btn svg {
    width: 18px;
    height: 18px;
}

/* Footer/Input - The main focus in minimal mode */
.help-minimal .public-chat-embedded-footer {
    background: transparent;
    border: none;
    padding: 0;
}

.help-minimal .public-chat-embedded-form {
    background: var(--theme-background-secondary-bg);
    border: 1px solid var(--theme-border-color);
    border-radius: 24px;
    padding: 0.5rem 0.5rem 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.help-minimal .public-chat-embedded-form:focus-within {
    border-color: var(--theme-interactive);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.help-minimal .public-chat-embedded-input {
    border: none;
    background: transparent;
    padding: 0.875rem 0;
    font-size: 1rem;
    flex: 1;
    min-width: 0;
}

.help-minimal .public-chat-embedded-input::placeholder {
    color: var(--theme-subtle-foreground);
}

.help-minimal .public-chat-embedded-input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.help-minimal .public-chat-embedded-send {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--theme-interactive);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.1s;
}

.help-minimal .public-chat-embedded-send:hover:not(:disabled) {
    background: var(--theme-interactive-hover, #1d4ed8);
    transform: scale(1.05);
}

.help-minimal .public-chat-embedded-send:disabled {
    background: var(--theme-tertiary-bg);
    color: var(--theme-subtle-foreground);
}

/* Hide handover button in minimal mode initially */
/* Handover button container - positioned via flex order */
.help-minimal .public-chat-embedded-handover-container {
    display: none;
    order: 3;
    text-align: center;
    margin-top: 1rem;
}

.help-minimal.has-chat-messages .public-chat-embedded-handover-container {
    display: block;
}

.help-minimal .public-chat-embedded-handover-btn {
    background: transparent;
    border: none;
    color: var(--theme-subtle-foreground);
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.help-minimal .public-chat-embedded-handover-btn:hover {
    color: var(--theme-foreground);
}

/* Clear button - show only when has messages */
.help-minimal .public-chat-embedded-clear {
    display: none;
}

.help-minimal .public-chat-embedded--has-messages .public-chat-embedded-clear {
    display: flex;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--theme-background-secondary-bg);
    border: 1px solid var(--theme-border-color);
    color: var(--theme-subtle-foreground);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    opacity: 0.7;
    transition: opacity 0.2s;
}

/* Suggestion Chips */
.help-suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.help-chip {
    background: var(--theme-background-secondary-bg);
    border: 1px solid var(--theme-border-color);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--theme-foreground);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.help-chip:hover {
    background: var(--theme-tertiary-bg);
    border-color: var(--theme-interactive);
}

/* Topics Accordion - Collapsed by default */
.help-topics-minimal {
    border-top: 1px solid var(--theme-border-color);
    padding-top: 2rem;
    margin-top: auto;
}

.help-topics-accordion {
    width: 100%;
}

.help-topics-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--theme-subtle-foreground);
    font-size: 0.875rem;
    padding: 0.5rem;
    list-style: none;
    transition: color 0.2s;
}

.help-topics-toggle::-webkit-details-marker {
    display: none;
}

.help-topics-toggle:hover {
    color: var(--theme-foreground);
}

.help-topics-toggle i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.help-topics-accordion[open] .help-topics-toggle i {
    transform: rotate(180deg);
}

.help-topics-content {
    padding-top: 1.5rem;
}

.help-topics-minimal .help-categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.help-category-card-mini {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--theme-background-secondary-bg);
    border: 1px solid var(--theme-border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--theme-foreground);
    font-size: 0.875rem;
    transition: border-color 0.2s, background 0.2s;
}

.help-category-card-mini:hover {
    border-color: var(--theme-interactive);
    background: var(--theme-tertiary-bg);
    text-decoration: none;
    color: var(--theme-foreground);
}

.help-category-card-mini i {
    color: var(--theme-interactive);
    font-size: 0.8125rem;
}

.help-category-card-mini .category-count {
    background: var(--theme-tertiary-bg);
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    color: var(--theme-subtle-foreground);
}

/* Responsive for minimal design */
@media (max-width: 640px) {
    .help-minimal {
        padding: 1.5rem 1rem;
        justify-content: flex-start;
        padding-top: 3rem;
    }

    .help-minimal-hero h1 {
        font-size: 1.375rem;
    }

    .help-suggestion-chips {
        gap: 0.375rem;
    }

    .help-chip {
        font-size: 0.8125rem;
        padding: 0.375rem 0.75rem;
    }
}

/* ============================================
   LEGACY STYLES (for other help pages)
   ============================================ */

/* Help Chat Section (embedded AI support) - for article/category pages */
.help-chat-section {
    position: sticky;
    top: 80px;
    align-self: start;
}

.help-chat-section .public-chat-embedded {
    height: 550px;
    max-height: calc(100vh - 120px);
}

/* Help Index Page Sections (legacy) */
.help-section {
    margin-bottom: 2.5rem;
}

.help-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
    color: var(--theme-foreground);
}

.help-section-title i {
    color: var(--theme-interactive);
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 991px) {
    /* On smaller screens, stack the columns */
    .help-container > .row {
        flex-direction: column-reverse;
    }

    .help-chat-section {
        position: static;
        margin-bottom: 2rem;
    }

    .help-chat-section .public-chat-embedded {
        height: 400px;
        max-height: 50vh;
    }
}

@media (max-width: 768px) {
    .help-hero h1 {
        font-size: 1.5rem;
    }

    .help-category-page,
    .help-article-page,
    .help-search-page,
    .help-404-page {
        grid-template-columns: 1fr;
    }

    .help-sidebar {
        position: static;
        margin-bottom: 1rem;
    }

    .sidebar-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .sidebar-nav li a {
        padding: 0.5rem 0.75rem;
        background: var(--theme-background-secondary-bg);
        border: 1px solid var(--theme-border-color);
    }

    .sidebar-nav li a .article-count {
        display: none;
    }

    .help-article {
        padding: 1.25rem;
    }

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