
.post-img {
    width: 100%;
    margin: 20px 0;
}

.post-img img {
    border-radius: var(--medium-radius);
    max-height: 450px;
    box-shadow: var(--medium-shadow);
}



#articleContent strong {
    font-weight: bold;
    color: var(--secondary-brown);
}

#articleContent ul {
    padding-left: 15px;
    list-style-type: disc;
    margin: 10px 0;
}

#articleContent img {
    border-radius: var(--medium-radius);
    box-shadow: var(--small-shadow);
}

#articleContent h2 {
    margin-bottom: 10px;
    text-wrap: initial;
}

#articleContent p {
    text-align: justify;
    margin-top: 5px;
}

#articleContent p a {
    display: inline;
    color: var(--green-dark);
    text-decoration: underline;
}

#articleContent p a:hover {
    color: var(--brown);
}

.floatl {
    float: left;
    margin-right: 20px;
}

.floatr {
    float: right;
    margin-left: 20px;
}



    /* Pad Version */
    @media screen and (min-width: 768px) {
        .post-img {
            margin: 25px 0;
        }


    }


        /* Desktop Version */
        @media screen and (min-width: 992px) {
            .post-img {
                margin: 30px 0;
            }


        }