/*Couple of fixes for story body*/

/* Default font size and padding prevent news articles from scaling past ~600px width. Override based on screen size.  */
.text-article, .story-intro {
    font-size: 1.2rem;
}
    
/*Beautiful links*/
/*.text-article a {
    text-decoration: none !important;
    border-bottom: 0.0625rem solid #dcdcdc;
    transition: border-color .15s ease-out;
}
.text-article a:hover {
    border-bottom: 0.0625rem solid;
}*/ 

/*Let's make <strong> actually bold. Bootstrap 4 doesn't like bold*/
.text-article strong {
    font-weight: bold;
}

/*Let's make rtl happen. Like anyone cares.*/
.text-article [dir=rtl] {
    unicode-bidi: bidi-override !important;
    direction: unset !important;
    text-align: right;
}

/*Block quotes enhancement*/
.text-article blockquote {
    font-style: italic;
    font-family: Georgia, Times, "Times New Roman", serif;
    padding: 2px 8px 2px 20px;
    border-style: solid;
    border-color: #ccc;
    border-width: 0;
    border-left-width: 5px;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 40px;
    margin-inline-end: 40px;
}

.text-article blockquote p{
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}