.single-dflip {
    #pageBanner {
        display: none;
    }

    .module.standardContent {

        @media only screen and (min-width: 768px) {
            margin-top: 120px;
        }
        @media only screen and (min-width: 992px) {
            margin-top: 200px;
        }
    }

    .embedded-magazine {
        text-align: center;
        .df-popup-thumb {
            width: 450px;
        }
    }
}

.meta-data {
    margin-top: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ccc;
    text-align: center;
}

.meta-data h1 {
    margin-bottom: 0.5rem;
}

.articles-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    @media only screen and (min-width: 768px) {
        grid-template-columns: repeat(4, 1fr);
    }
    gap: 4rem 1rem;
}

.standardContent h2.articles-title {
    margin-left: 0;
}

.article-wrapper {
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.article-wrapper:hover {
    text-decoration: underline;
}

.article-wrapper:hover img {
    transform: scale(1.02);

}

.standardContent .article-wrapper h3 {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    padding: 0.5rem;
}

.article-thumbnail {
    display: flex;
    justify-content: center;
    align-items: center;
}

.article-thumbnail img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.single-dflip, .single-hne-magazine-article {
    .breadcrumbs ul {
        font-family: 'montserrat', Helvetica, Arial, sans-serif;
        list-style-type: none;
        display: flex;
        column-gap: 0.5rem;
        li {
            display: flex;
            column-gap: 0.5rem;
            padding-left: 0;
            &:before {
                content: "";
            }
            &:after {
                content: ">";
            }
            &:last-of-type {
                &:after {
                    content: "";
                }
            }
        }
    }
}