.post-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: multiply;
}

.layout.fixed-sidebar .sidebar~.layout {
    margin-left: 80px;
}

.post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.post-title {
    font-size: 3.5rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

.author-info a {
    color: white !important;
    text-decoration: none !important;
}

#breadcrumbs {
    color: #ddd;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;

}

#breadcrumbs a {
    text-decoration: none;
    color: #00829f;
}

.author-avatar-post img {
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0px 5px 10px 2px rgba(0, 0, 0, 0.4);
}

.content-post-single {
    padding: 50px;
    margin: 50px 25%;
    background-color: #353739;
    border-radius: 10px;
}

.author-name {
    font-weight: bold;
    font-size: 1.1rem;
}

.post-date {
    font-size: 0.9rem;
    color: #aaa;
}

img.photo {
    width: 70px;
    height: auto;
}


@media (max-width: 580px) {
    .content-post-single {
        margin: 0 !important;
        border-radius: 0px !important;
    }

    .layout.fixed-sidebar .sidebar~.layout {
        margin: 0;
    }

    #breadcrumbs {
        font-size: 0.9rem;
    }

    .post-title {
        font-size: 1.5rem !important;
    }

}
@media (min-width: 580px) and (max-width: 1100px){
    .content-post-single {
        margin: 0 !important;
        border-radius: 0px !important;
    }

    .layout.fixed-sidebar .sidebar~.layout {
        margin: 0;
    }

    #breadcrumbs {
        font-size: 0.9rem;
    }

    .post-title {
       font-size: 1.5rem !important;
    }
    .content-post-single
    {
        padding: 50px 100px;
    }
}

