.help-v3-container {
    width: 100%;
}

.help-v3-panel {
    overflow: hidden;
}

.help-v3-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted, #64748b);
}

.help-v3-breadcrumb a {
    color: var(--primary, #2563eb);
    font-weight: 700;
    text-decoration: none;
}

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

.help-v3-list {
    display: grid;
    gap: 1rem;
}

.help-v3-card {
    width: 100%;
}

.help-v3-article {
    max-width: 960px;
}

.help-v3-article-body {
    line-height: 1.75;
}

.help-v3-article h2 {
    margin: 2.25rem 0 0.8rem;
    font-size: 1.45rem;
}

.help-v3-article h3 {
    margin: 1.8rem 0 0.65rem;
    font-size: 1.15rem;
}

.help-v3-article p {
    margin: 0.8rem 0;
}

.help-v3-introduction {
    margin-top: 0;
    font-size: 1.08rem;
}

.help-v3-callout {
    margin: 1.75rem 0;
    padding: 1.25rem;
    border: 1px solid rgba(37, 99, 235, 0.22);
    border-left: 4px solid var(--primary, #2563eb);
    border-radius: 1rem;
    background: rgba(37, 99, 235, 0.06);
}

.help-v3-callout strong {
    display: block;
    margin-bottom: 0.45rem;
}

.help-v3-callout p {
    margin: 0;
}

.help-v3-callout-tip {
    border-color: rgba(22, 163, 74, 0.25);
    border-left-color: #16a34a;
    background: rgba(22, 163, 74, 0.07);
}

.help-v3-callout-warning {
    border-color: rgba(234, 88, 12, 0.25);
    border-left-color: #ea580c;
    background: rgba(234, 88, 12, 0.07);
}

.help-v3-steps {
    display: grid;
    gap: 1rem;
    padding: 0;
    list-style: none;
    counter-reset: help-step;
}

.help-v3-steps li {
    position: relative;
    min-height: 2.5rem;
    padding: 0.55rem 0 0.55rem 3.25rem;
    counter-increment: help-step;
}

.help-v3-steps li::before {
    position: absolute;
    top: 0.3rem;
    left: 0;
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border-radius: 999px;
    background: var(--primary, #2563eb);
    color: #fff;
    font-weight: 800;
    content: counter(help-step);
}

.help-v3-navigation {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color, #e2e8f0);
}

.help-v3-nav-link {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1rem;
    border: 1px solid var(--border-color, #e2e8f0);
    border-radius: 1rem;
    color: inherit;
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.help-v3-nav-link:hover {
    border-color: var(--primary, #2563eb);
    transform: translateY(-2px);
}

.help-v3-nav-link small {
    color: var(--text-muted, #64748b);
    font-weight: 700;
}

.help-v3-nav-link strong {
    overflow-wrap: anywhere;
}

.help-v3-nav-category {
    justify-content: center;
    text-align: center;
}

.help-v3-nav-next {
    text-align: right;
}

.help-v3-nav-empty {
    min-width: 0;
}

@media (max-width: 800px) {
    .help-v3-navigation {
        grid-template-columns: 1fr;
    }

    .help-v3-nav-next {
        text-align: left;
    }

    .help-v3-nav-empty {
        display: none;
    }
}
