#grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0;
}

@media (max-width: 800px) {
    #grid {
        grid-template-columns: 1fr;
        padding: 0;
        margin: 0;
    }
}

/***** Search Results *****/
.searchResults, .noResults {
    color: var(--blue);
    display: none;
    font-size: 24px;
    font-weight: 600;
    padding-top: 10px;
}

.noResultsText {
    color: #000;
    font-size: 16px;
    font-weight: 400;
}

#gridArticles, #gridIncludes { /* Left and Right */
    padding: 0 15px;
    min-width: 0;
}

.gridArticlesEntry {
    border-bottom: 2px solid #b4b4b4;
    padding-bottom: 30px;
    padding-top: 20px;
}

.gridArticlesEntry:last-child {
    border-bottom: none;
}

.gridArticlesEntryTitle {
    color: var(--blue);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    padding: 20px 0 10px;
}

.gridArticlesEntryTitleLink {
}

.gridArticlesEntryAuthor {
    color: var(--blue);
}

.gridArticlesEntrySummary {
    margin-bottom: 10px;
}

#gridIncludes {
    margin-top: 40px;
}

/* Responsive */
.gridArticlesEntryTitle {
    padding-top: 10px;
}

/* =========================
   Articles
========================= */

/* Title/Author */
.articleTitle {
    color: var(--blue);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    padding-top: 20px;
}

.articleTitleLink {
    color: var(--blue);
}

.articleTitleLink:hover {
    color: #23527C;
}

.articleAuthor {
    display: block;
    color: var(--blue);
    margin-top: 20px;
}

.articleAuthor:hover {
    color: #23527C;
}

.articleAuthorLink {
}

/* Responsive - Title/Author */
@media (max-width: 800px) {
    .articleTitle {
        padding-top: 10px;
    }
}

/* Body Content */

.articleParagraph {
    margin-bottom: 10px;
}

.articleParagraphLink {
    color: var(--blue);
}

.articleParagraphLink:hover {
    color: #23527C;
}


.articleHeading {
    display: block;
    margin-bottom: 10px;
}

.articleH4 {
    color: var(--blue);
    font-size: 24px;
    margin-bottom: 10px;
}

.articleH4Strong {
}

.articleList {
    padding-left: 15px;
}

.articleOl {
}

.articleOlItem {
}

.articleListItem {
}

.articleImage {
    max-width: 300px;
    margin-bottom: 10px;
}

/***** Related Section *****/
.articleRelated {
}

.articleRelatedTitle {
    color: var(--blue);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.1;
    margin: 10px 0;
}

.articleRelatedParagraph {
    margin-bottom: 10px;
}

.articleRelatedLink {
    color: var(--blue);
}

/***** Tags Section *****/

.articleTags {
    margin: 60px 0 40px;
}

.articleTagsHeading {
    color: var(--blue);
    font-size: 24px;
    font-weight: 600;
}

.articleTagsLinks {
    color: var(--blue);
}

.articleTagsLinksCapitalized {
    text-transform: capitalize;
}

.articleTagsLinksUppercase {
    text-transform: uppercase;
}

.articleTagsLinksSeparator {
}