a.blogpostThumbnail {
    display: block;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    background-color: #ffed00;
    height: 280px;
    padding: 20px;
    color: #6f6f6e;
    background-size: cover;
    background-repeat: no-repeat;
}
a.blogpostThumbnail.loaded {
    color: white;
}
@media (min-width: 768px) {
    a.blogpostThumbnail {
        height: 280px;
    }
}
@media (min-width: 992px) {
    a.blogpostThumbnail {
        height: 300px;
    }
}
@media (min-width: 1200px) {
    a.blogpostThumbnail {
        height: 320px;
    }
}
.blogpostThumbnail::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    content: '';
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity .5s;
    transition-delay: 1s;
}
.blogpostThumbnail.loaded::after {
    opacity: 1;
}
    .blogpostThumbnail picture {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        content: '';
        pointer-events: none;
        z-index: 2;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 0;
        transition: all .5s;
        transform: scale(1.1);
        object-fit: cover;
    }
    .blogpostThumbnail:hover picture {
        transform: scale(1);
    }
    .blogpostThumbnail.loaded picture {
        opacity: 1;
    }
        .blogpostThumbnail img {
            display: block;
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
    .blogpostThumbnail .inner {
        display: block;
        position: relative;
        height: 100%;
        width: 100%;
        z-index: 3;
    }
        .blogpostThumbnail .type {
            display: block;
            text-transform: uppercase;
            padding-bottom: 30px;
            font-size: 12px;
            font-family: "FontFaceBlack", sans-serif;
            text-align: center;
        }
        @media (min-width: 768px) {
            .blogpostThumbnail .type {
                font-size: 13px;
            }
        }
        @media (min-width: 992px) {
            .blogpostThumbnail .type {
                font-size: 14px;
                padding-bottom: 35px;
            }
        }
        @media (min-width: 1200px) {
            .blogpostThumbnail .type {
                font-size: 15px;
                padding-bottom: 40px;
            }
        }
        .blogpostThumbnail h3 {
            color: inherit;
            text-transform: uppercase;
            font-size: 16px;
            margin: 0 0 10px 0;
            max-height: calc(100% - 120px);
        }
        @media (min-width: 768px) {
            .blogpostThumbnail h3 {
                font-size: 18px;
            }
        }
        @media (min-width: 992px) {
            .blogpostThumbnail h3 {
                font-size: 20px;
            }
        }
        @media (min-width: 1200px) {
            .blogpostThumbnail h3 {
                font-size: 22px;
            }
        }
        @keyframes rightAndLeft {
            0% {
                margin-left: 0px;
            }
            50% {
                margin-left: 20px;
            }
            100% {
                margin-left: 0px;
            }
        }
        .blogpostThumbnail .arrow {
            display: block;
            text-align: center;
            font-size: 24px;
        }
        @media (min-width: 768px) {
            .blogpostThumbnail .arrow {
                font-size: 26px;
            }
        }
        @media (min-width: 992px) {
            .blogpostThumbnail .arrow {
                font-size: 28px;
            }
        }
        @media (min-width: 1200px) {
            .blogpostThumbnail .arrow {
                font-size: 40px;
            }
        }
        .blogpostThumbnail:hover .arrow {
            -webkit-animation-name: rightAndLeft;
            animation-name: rightAndLeft;
            -webkit-animation-duration: 1s;
            animation-duration: 1s;
            -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
        }
        .blogpostThumbnail.loaded:hover .arrow {
            color: #ffed00;
        }

        .blogpostThumbnail .shareLinks {
            display: flex;
            position: absolute;
            bottom: 5px;
            left: 0;
        }
            .blogpostThumbnail .shareLinks span {
                margin-left: 5px;
                height: 20px;
                width: 20px;
            }
            @media (min-width: 768px) {
                .blogpostThumbnail .shareLinks span {
                    height: 22px;
                    width: 22px;
                }
            }
            @media (min-width: 992px) {
                .blogpostThumbnail .shareLinks span {
                    height: 24px;
                    width: 24px;
                }
            }
            @media (min-width: 1200px) {
                .blogpostThumbnail .shareLinks span {
                    height: 26px;
                    width: 26px;
                }
            }
                .blogpostThumbnail svg {
                    display: block;
                    height: inherit;
                    width: inherit;
                    transition: transform .25s;
                }
                .blogpostThumbnail svg:hover {
                    transform: scale(1.2);
                }
                    .blogpostThumbnail svg path {
                        fill: #6f6f6e;
                        transition: fill .5s;
                    }
                    .blogpostThumbnail.loaded svg path {
                        fill: white;
                    }
