/* List of all articles */
@media (min-width: 1200px) {
    #help_list {
        column-count: 2;
        column-gap: 4em;
    }
    #help_list > div {
        display: inline-block;
        margin: 0 0 1em 0;
        width: 100%;
    }
    #help_page_search {
        max-width: calc(50% - 2em);
    }
}
#help_list h3 {
    font-size: 1.1em;
    margin-top: 0;
}
#help_list ul {
    list-style-type: none;
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 1.5em;
}
#help_list li {
    padding: 0.5em 0 0.5em 0;
    margin: 0;
    border-top: 1px solid #CCCCCC;
}

/* List of pinned articles */
#help_highlights {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1em;
    margin: 0 -0.5em 0 -0.5em;
}
#help_highlights > a {
    border-radius: 0.5em;
    background: #e0eefb;
    padding: 0.5em;
}
#help_highlights strong {
    display: block;
    margin-bottom: 0.3em;
}
#help_highlights em {
    display: block;
    color: #000000;
    text-decoration: underline;
    text-decoration-color: #e0eefb;
}
@media (max-width: 500px) {
    #help_highlights {
        grid-template-columns: 1fr;
    }
}

/* Search page */
.help_search_bar {
    display: flex;
    margin: 2em 0 2em 0;
    max-width: 50em;
}
.help_search_bar input[type=text] {
    flex: 1;
    margin-right: 0.5em;
}
#help_page_search {
    margin: 1em 0 1em 0;
}

#help_search_results {
    max-width: 50em;
}
#help_search_results > div {
    margin-bottom: 1em;
}
#help_search_results a {
    font-weight: bold;
}

/* Guidelines */
.guidelines_example {
    list-style-type: "✓  ";
}
.guidelines_example::marker {
    color: #008800;
}
div.guidelines_example:before {
    content: "✓  ";
    color: #008800;
}
.guidelines_counter_example {
    list-style-type: "✗  ";
}
.guidelines_counter_example::marker {
    color: #880000;
}
div.guidelines_counter_example:before {
    content: "✗  ";
    color: #880000;
}
