.help-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 22px;
    align-items: start;
}

.help-sidebar,
.help-article {
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.help-sidebar {
    padding: 18px;
}

.help-sidebar h2 {
    margin-top: 0;
    color: var(--purple-dark);
}

.help-category {
    margin-top: 18px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}

.help-link {
    display: block;
    padding: 10px 12px;
    border-radius: 9px;
    color: var(--purple-dark);
    text-decoration: none;
    font-weight: bold;
}

.help-link:hover,
.help-active {
    background: var(--purple-light);
}

.help-article {
    padding: 26px;
}

.help-article h1 {
    margin-top: 0;
    color: var(--purple-dark);
}

.help-summary {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 24px;
}

.help-content h2 {
    color: var(--purple-dark);
    margin-top: 26px;
}

.help-content li {
    margin-bottom: 8px;
}

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