/* =========================================================
   ANTHONY CONSTRUCTION — ARTICLE TEST STYLES
   Built specifically for the current articles.html
   ========================================================= */

/* Article outer area */
.article-main-wrapper {
    background: #f7f6f2;
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Main article card/container */
.article-read-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 60px 70px;
    box-sizing: border-box;
}

/* Article header */
.article-header {
    max-width: 780px;
    margin: 0 auto 60px;
}

.journal-meta {
    margin-bottom: 22px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #666;
}

.journal-tag {
    color: #222;
}

.journal-separator {
    margin: 0 8px;
    color: #aaa;
}

.article-headline {
    max-width: 780px;
    margin: 0 0 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: #181818;
}

.article-deck {
    max-width: 700px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.55;
    color: #555;
}

/* =========================================================
   READING COLUMN
   This is the actual paragraph boundary.
   Everything below is contained within this width.
   ========================================================= */

.article-body-text {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    box-sizing: border-box;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

/* =========================================================
   PARAGRAPHS
   ========================================================= */

.article-body-text p {
    margin: 0 0 30px 0 !important;
    padding: 0 !important;

    /* This is the magazine first-line indent */
    text-indent: 2em !important;
}

/* Intro ALSO has an indent */
.article-body-text p.article-intro {
    margin: 0 0 32px 0 !important;
    text-indent: 2em !important;

    font-size: 22px;
    line-height: 1.65;
}

/* =========================================================
   IMAGE
   The figure is 85% of the SAME 720px paragraph column.
   It is centered, so both sides have equal space.
   ========================================================= */

.article-body-text figure.article-feature {
    display: block;

    width: 85% !important;
    max-width: 85% !important;

    margin: 55px auto 55px auto !important;
    padding: 0 !important;

    box-sizing: border-box;
}

.article-body-text figure.article-feature img {
    display: block;

    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;
}

/* Image description */
.article-body-text figure.article-feature figcaption {
    display: block;

    margin: 10px 0 0 0 !important;
    padding: 0 !important;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 1.5;
    color: #777;
}

/* =========================================================
   TOPIC SECTIONS
   ========================================================= */

.article-section {
    margin-top: 80px;
}

.article-body-text .article-section h2 {
    margin: 0 0 30px 0 !important;
    padding: 25px 0 0 0 !important;

    border-top: 1px solid #ccc;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1.2;
    color: #181818;
}

/* Every topic paragraph keeps its indent */
.article-body-text .article-section p {
    text-indent: 2em !important;
}

/* =========================================================
   PULL QUOTE
   ========================================================= */

.article-body-text .article-pullquote {
    margin: 50px 0 !important;
    padding: 22px 28px !important;

    border-left: 3px solid #222;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-style: italic;
    line-height: 1.45;
    text-indent: 0 !important;
}

/* =========================================================
   CLOSING
   ========================================================= */

.article-closing {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #ccc;
}

.article-closing-label {
    margin-bottom: 18px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #444;
}

.article-body-text .article-closing h2 {
    margin: 0 0 28px 0 !important;
    padding: 0 !important;
    border: 0 !important;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
}

.article-body-text .article-closing p {
    text-indent: 2em !important;
}

/* =========================================================
   BACK LINK
   ========================================================= */

.article-back-nav {
    width: 100%;
    max-width: 720px;
    margin: 65px auto 0;
    padding-top: 25px;
    border-top: 1px solid #ccc;
}

.article-back-nav .journal-read-link {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #222;
    text-decoration: none;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .article-main-wrapper {
        padding-top: 35px;
        padding-bottom: 50px;
    }

    .article-read-container {
        padding: 35px 22px 55px;
    }

    .article-header {
        margin-bottom: 45px;
    }

    .article-headline {
        font-size: 42px;
        letter-spacing: -0.8px;
    }

    .article-deck {
        font-size: 19px;
    }

    .article-body-text {
        max-width: 100%;
        font-size: 17px;
        line-height: 1.75;
    }

    .article-body-text p {
        margin-bottom: 30px !important;
        text-indent: 1.5em !important;
    }

    .article-body-text p.article-intro {
        font-size: 20px;
        text-indent: 1.5em !important;
    }

    /* Still inset from the paragraph boundary */
    .article-body-text figure.article-feature {
        width: 90% !important;
        max-width: 90% !important;
    }

    .article-body-text .article-section h2 {
        font-size: 29px;
    }

    .article-pullquote {
        font-size: 22px;
    }
}
