/* CSS Document */
/* > ARTICLE */
.article {
    padding: 0 1rem;
}
#colRight {
    display: none;
}
.colLeft {
    display: flex;
    flex-direction: column;
    grid-area: l;
}
.articleTitle h1{
    display: flex;
    order: 1;
    padding: 0;
    font-size: 2.75rem;
    font-family: poppins,sans;
    margin: 1rem 0;
    color: #08639d;
}
.articlePub_date h2 {
    display: flex;
    order: 2;
    font-size: 1.2rem;
    padding-bottom: 1rem;
    color: #0293c6;
    border-bottom: solid 0.1rem var(--colour1);
}
.articleContent_type {
    display: none;
    align-self: center;
    justify-self: center;
}
.articlePhoto {
    order: 3;
    display: flex;
    padding-top: 1rem;
    align-self: center;
    flex-direction: column-reverse;
}
.articlePhoto img {
    display: flex;
    max-width: 100%;
/*    max-height: 75vh;
*/    border: 1px solid;
}
.articleBody_text {
    display: block;
    order: 4;
    width: min(81ch, 100%);
    line-height: 1.6;
    padding: 1rem 0;
    align-self: center;
    text-align: justify;
}
.articleBody_text h3 {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0;
}
.articleBody_text p {
    margin-top: 0;
}
.articleTags {
    color: blue;
    display: block;
    order: 5;
    width: min(81ch, 100%);
    line-height: 1.6;
    padding: 1rem 0;
    align-self: center;
}
.articleBody_text > p:first-child:first-letter {
    color: var(--colour1);
    float: left;
    font-family: Georgia;
    font-size: 75px;
    line-height: 60px;
    padding-top: 0.5rem;
    padding-right: 8px;
    padding-left: 3px;
}
@media (min-width: 992px) {
    .article {
        display: grid;
        grid-template-columns: 3fr 1fr;
        grid-template-areas: "l r";
        padding-left: 4rem;
    }
    .articleBody_text {
        /*    padding: 1rem 0rem 1rem 5rem;
*/
    }
    #colRight {
        display: block;
        grid-area: r;
    }
}
/* 
    2022-11-02
    Callout & CallLink 

*/
@media (min-width: 992px) {
    .callout, .callLink {
        width: 70%;
    }
}
.callout, .callLink {
    display: flex;
    height: auto;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: var(--colour1);
    justify-self: center;
    margin: 0 auto;
}
.callout h2, .callLink h2 {
    margin: 0 1rem;
}
.callout {
    height: auto;
}
.callout::before, .callout::after {
    font: var(--fa-font-solid);
    font-size: 3rem;
}
.callout::before {
    content: '\f10d';
    /*    display: flex;
    flex-direction: column;
    align-content: flex-start;
    justify-content: flex-start;*/
    align-self: flex-start;
}
.callout::after {
    content: '\f10e';
    align-self: flex-end;
}
.callLink {
    /*    float: right;
*/ height: auto;
    /*    margin-left: 1rem;
*/
}
.callLink a:visited {
    color: var(--colour1);
}
/* 
  Fontawesome  
  Step 1: Common Properties
  These styles are required to make icons render reliably */
.icon::before {
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
.callLink::before {
    font: var(--fa-font-solid);
    content: "\f064";
    font-size: 3rem;
    margin-right: 1rem;
}