div#Root-Frame{
    max-width: 900px;
    
}

div#Masthead-Frame {
    padding: 10px;
  }

@media not print {
    @media  not (max-width: 750px) {
    
        div#Root-Frame > div{
            margin-left: auto;
            margin-right: auto;
            max-width: 750px;
        }
    }
    
}

@media print {
    div.article > h1.headline{
        font-size: 200%;
    }
}



div.article{
    border-bottom: 4px solid black;
}

/* Share row, just below the article */
.social-share {
    border-bottom: 1px dotted grey;
}

@media print {
    .social-share {
        display: none;
    }
}

.share-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.share-row a.image-link img {
    max-height: 30px;
    margin: auto;
    display: block;
}

.share-row a.image-link {
    background: #202020;
    display: block;
    flex-grow: 1;
    padding: 5px;
}

.share-row a.image-link.facebook { background: #4267B2;}
.share-row a.image-link.twitter { background: #1DA1F2;}

/* Comments */

label.newline-label {
    display: block;
}

.comment-hidden-element{
    display: none;
}

.comment-body-row {
    display: flex;
    gap:10px;
}

.comment-body-input {
    flex-grow: 1;
}

textarea.comment-form-content {
    width: 100%;
    height: 30px;
    font-size: 11pt;
    padding: 5px;
  }

#recaptcha-container{
    margin-top: 18px;
    margin-bottom: 10px;
}

#submit {
    width: 303px;
    height: 30px;
}

@media only screen and (max-width: 640px){
    .comment-body-row {
        display: flex;
        gap:10px;
        flex-direction: column;
    }
    #submit {
        width: 100%;
    }
    
}


/* Images */

.article > img{
    max-width: 100%;
    border: 1px solid black;
}

img.small-image{
    max-width: 300px;
    float: left;
    margin-right: 10px;
}

@media only screen and (max-width: 550px){
    img.small-image{
        max-width: 300px;
        float: none;
        display: block;
        margin-right: auto;
        margin-left: auto;
    }
    
}

.article > img.featured-image:first-child {
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    float:none;
}

.article > img.featured-image {
    max-width: 60%;
    float: right;
    margin-left: 10px;
}

@media only screen and (max-width: 650px){
    .article > img.featured-image {
        float: none;
        display: block;
        margin-right: auto;
        margin-left: auto;
        max-width: 80%;
    }
    
}

@media print {
    .article > img.featured-image:first-child {
        max-width: 70%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    
}

.article > p {
    font-size: 13pt;
}

.article > p.byline + p:not([class]):first-letter, 
.article > p.byline + p[class=""]:first-letter{
    color: #AA0000;
    float: left;
    font-size: 3em;
    
}