  ﻿.breadcrumb {
    padding: 1em 1em 1em 0em;
    margin: 0 1em;
    width: 100%;
}

.breadcrumb-spacer {
    margin-left: 0.5em;
    margin-right: 0.5em;
}

.blog__listings {
    display: flex;
    flex-direction: column;
}

    .blog__link {
        color: #000000;
        text-decoration: none;
        margin: 1em 0;
    }

    .blog__link:hover .blog__title,
    .blog__link :focus .blog__title {
    text-decoration: underline;
    }

    .blog__card {
        display: flex;
        flex-direction: row;
    }

    @media (max-width: 767.98px) {
        .blog__card {
            flex-direction: column;
        }
    }

    .blog__image {
        width: 460px;
        min-width: 460px;
        max-height: 260px;
        -o-object-fit: cover;
        flex: 50%;
        object-fit: cover;
    }

    @media (max-width: 767.98px) {
        .blog__image {
            min-width: 100%;
        }
    }

    .blog__video {
        width: 460px;
        min-width: 460px;
        max-height: 260px;
        -o-object-fit: cover;
        flex: 50%;
        object-fit: cover;
    }

    @media (max-width: 767.98px) {
        .blog__video {
            min-width: 100%;
            width: 100%;
        }
    }

    .blog__content {
        width: 100%;
        margin: 0 1em;
        font-weight: 300;
    }

    @media (max-width: 767.98px) {
        .blog__content {
            margin: 1em 0;
        }
    }

    .blog__content--image-container {
        display: flex;
        gap: 1em;
        justify-content: center;
        align-items: center;
    }

    @media (max-width: 767.98px) {
        .blog__content--image-container {
            flex-direction: column;
        }
    }

    .blog__content--image-div {
        flex: 1;
        height: auto;
        max-width: 50%;
    }

    .blog__content--image {
        width: 100%;
        height: 100%;
        margin: 0 auto;
        object-fit: contain;
    }

    .blog__title {
        margin: 0;
        font-size: 1.3em;
    }

    .blog__header {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: row;
        margin: 0 1em;
    }

    .blog__header-content {
        display: flex;
        flex-direction: column;
        height: 100%;
        width: 100%;
    }

    .blog__header-image {
        width: 50%;
        object-fit: cover;
    }

    .blog__header-content--video {
        position: relative;
    }

    .blog__header-video-container {
        width: 100%;
        height: 100vh;
    }

    .blog__header-video {
        position: absolute;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .blog__summary {
        font-weight: 700;
        font-size: 1.2em;
    }

    ul {
        padding: revert;
        margin: revert;
    }

    .blog-pagination {
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .blog-pagination__list {
        list-style: none;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }

    .blog-pagination__list-item {
        font-size: 1.2em;
        margin-bottom: 1em;
    }
    
    .blog-pagination__link {
        color: #000000;
        margin: 1em;
        padding: 1em;
    }

    .blog-pagination__current {
        color: #9d0932;
        font-weight: 700;
        margin: 1em;
        padding: 1em;
    }
    
    .blog-pagination__link:hover, .blog-pagination__link:focus {
        font-weight: 700;
    }

    .blog-pagination__arrow {
        color: #9d0932;
        font-weight: 700;
        text-decoration: none;
    }

    .blog-pagination__arrow:hover, .blog-pagination__arrow:focus {
        text-decoration: underline;
    }

    .blog-pagination__arrow::before {
        border-style: solid;
        border-width: 0.25em 0.25em 0 0;
        content: "";
        display: inline-block;
        height: 1em;
        top: 0.2em;
        left: 0.15em;
        position: relative;
        transform: rotate(-45deg);
        vertical-align: top;
        width: 1em;
    }

    .blog-pagination__arrow--prev::before {
        left: 0.25em;
        transform: rotate(-135deg);
        float: left;
        margin-right: 1em;
    }

    .blog-pagination__arrow--next::before {
        left: 0;
        transform: rotate(45deg);
        float: right;
        margin-left: 1em;
    }