/*
Theme Name: Beaver Builder Child Theme - Post Hero Header
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.1
Description: Adds a full screen post hero header to your posts without needing to use a module.
Author: Beaverlodge HQ
Author URI: https://www.beaverlodgehq.com
template: bb-theme
*/

/* Add your custom styles here... */ 

.hero-mask {
    background-size: cover !important; 
    background-repeat: no-repeat !important; 
    background-position: center center !important; 
    height: 400px;
}
.entry-content {
    background-color: rgba(0,0,0,0.3);
    content: '';
    width: 100%;
    height: 100%;
    z-index: 1;
}

.breadcrumbs {
    list-style: none;
    display: flex;
    justify-content: flex-end;
}

.breadcrumbs li,
.breadcrumbs li a {
    color: #ccc;
}

.breadcrumbs li a:hover {
    color: #fff;
}

.breadcrumbs li:nth-last-child(1) {
    color: #fff;
}

.breadcrumbs li:after {
    content: '/';
    padding: 0 5px;
}

.breadcrumbs li:nth-last-child(1):after {
    content: '';
    padding: 0 5px;
}

.headline {
    text-align: center;
    padding-top: 100px;
}

.entry-title {
    color: #fff;
    margin-bottom: 0;
}

.entry-meta li,
.entry-meta li a {
    color: #ccc;
    margin: 0 5px;
    display: inline;
}
.entry-meta li a:hover {
    color: #fff>;
}