.questories-article {
    max-width: 72ch;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    color: #333;
}

.questories-article p {
    margin: 0 0 1.25rem 0;
    padding: 0;
}

.questories-article h1 {
    font-size: 2.30rem;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
}

.questories-article h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 2.25rem 0 0.75rem 0;
}

.questories-article h3 {
    font-size: 1.2rem;
    line-height: 1.3;
    margin: 1.75rem 0 0.6rem 0;
}

.questories-article img {
    max-width: 100%;
    height: auto;
}

.questories-article figure {
    margin: 2rem 0;
}

.questories-article figcaption {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-top: 0.5rem;
}

/* Limits the width of long articles for easier reading */
.article-body {
    max-width: 800px;
}

.article-body h2 {
    margin-top: 2.75rem;
    margin-bottom: 1rem;
    font-size: 1.65rem;
    line-height: 1.2;
    letter-spacing: 0.025em;
}

.article-image {
    width: 150px;
    max-width: 100%;
    height: auto;
    margin: 0 20px 15px 0;
}

.article-image-wide {
    width: 260px;
}

.article-image.float-left {
    margin: 0 20px 15px 0;
}

.article-image.float-right {
    margin: 0 0 15px 20px;
}

/* Standard portrait or poster figure */
.article-figure {
    width: 150px;
    max-width: 100%;
}

/* Makes the image fill its figure */
.article-figure img {
    width: 100%;
    height: auto;
}

.article-figure {
    width: 16rem;
    max-width: 100%;
}

.article-figure--wide {
    width: 20rem;
}

.article-figure img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
}

.article-figure figcaption {
    font-size: 0.875rem;
    line-height: 1.35;
    color: #6c757d;
}

.article-contents {
    background-color: #f2f8fa;
    border: 1px solid #17a2b8;
    border-left-width: 5px;
    border-radius: 4px;
    padding: 16px 20px;
    margin: 32px 0 40px;
}

.article-contents strong {
    display: block;
    font-size: 18px;
    margin-bottom: 12px;
}

.article-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 8px;
}

.article-contents li {
    padding: 0;
    margin: 0;
}

.article-contents a {
    display: block;
}

@media (max-width: 575.98px) {
    .article-contents ul {
        grid-template-columns: 1fr;
    }
}