

/* Agency Custom CSS */


/* Related Posts */

body main article section.related-posts-container .related-posts .related-post .blog-image {
    margin-bottom: 1rem;
    height: 200px;
    min-height: 200px;
    position: relative;
    background-color: rgb(244, 244, 244);
    background-size: cover;
    background-position: center center;
}
    

@media print, screen and (min-width: 64em) {
    body main article section.related-posts-container .related-posts .related-post .blog-image,
    body main article section.related-posts-container .related-posts .related-post p,
    body main article section.related-posts-container .related-posts .related-post h3 {
        width: 95%;
    }
}

body main article section.related-posts-container .related-posts .related-post .button {
    margin-bottom: 1rem;
}


/* Blog Feed Loading Placeholders */

.loadingPlaceHolder {
    opacity: .1;
    animation: fading 1.5s infinite;
}

.loadingPlaceHolder > div > div {
    background-color: #444;
    height: 1rem;
    min-width: 100%;
    min-height: 220px;
    margin-bottom: 1rem;
}

.loadingPlaceHolder p {
    font-size: 0;
    line-height: 0;
    display: inline-block; 
    background-color: #444;
    height: 1rem;
    margin: 0.25rem 0;
    min-width: 100%;
}

.loadingPlaceHolder p.small {
    min-width: 65%;
}

.loadingPlaceHolder p.medium {
    min-width: 80%;
}
    
@keyframes fading {
    0% {
        opacity: .1;
    }

    50% {
        opacity: .2;
    }

    100% {
        opacity: .1;
    }
}
