.cover-img {
    max-height: 80vh;
    min-height: 60vh;
    object-fit: cover;
    object-position: center top;
}

#article-info-wrapper {
    border-bottom: 1px solid var(--border-grey);
    padding-bottom: 1em;
    margin-bottom: 2em;
}

p {
    margin: 0;
}

.call-out-fact {
    min-height: 225px;
    justify-content: space-between;
}

.cof-green {
    border-top: 3px solid var(--m-green);
    border-bottom: 3px solid var(--m-green);
}

.cof-blue {
    border-top: 3px solid var(--m-blue);
    border-bottom: 3px solid var(--m-blue);
}

.cof-bg-green {
    background-color: var(--l-green);
}

.call-out-fact h2 {
    font-size: 4em;
}

.featured-img {
    border-bottom: 1px solid var(--border-grey);
    padding-bottom: 1em;
}

.call-out-citation {
    margin-top: .5em;
}

.featured-img .call-out-citation {
    margin: 0;
}

/* Featured image wrapper */
.article .featured-img {
    float: left;
    width: 50%;
    margin: 0 2em 1.5em 0;
}

/* Image itself */
.article .featured-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Clear float at end */
.article::after {
    content: "";
    display: block;
    clear: both;
}

.article p {
    margin-top: 1.2em;
}

.article p:first-of-type {
    margin-top: 0;
}

.cta {
    position: relative;
    background: url('/static/images/refresh/cta_bg.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    overflow: hidden;
}

.cta .btn-a-main {
    width: fit-content;
}

.reference {
    border-bottom: 1px solid var(--border-grey);
    padding-bottom: 1em;
}

@media (max-width: 850px) {
    .row-break {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    #share-article {
        margin-top: 2em;
    }

    .article-info-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .article {
        display: flex;
        flex-direction: column;
        gap: 1.2em;
    }

    .article .featured-img {
        float: none;
        width: 100%;
        margin: 0 0 1em 0;
    }

    .article .mt-md {
        margin: 0px;
    }
}

/* Mobile fallback */
@media (max-width: 768px) {
    .featured-img {
        float: none;
        width: 100%;
        margin: 0 0 1em 0;
    }
}

