.social-breadcrumbs {
    text-align: center;
    background: #F9F9F9;
    width: fit-content;
    margin: 0 auto 18px;
    padding: 7px 20px 6px;
    border-radius: 20px;
    color: #BBBBBB;
    display: block;
}

.social-breadcrumbs .breadcrumb-list {
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 12px;
    line-height: 1;
}

.social-breadcrumbs li,
.social-breadcrumbs a {
    font-size: 12px;
    line-height: 1;
    color: #bbbbbb;
}

.social-breadcrumbs li:last-child {
    color: #DA1F2A;
}




.stream-post-back-arrow {
    margin-bottom: 40px;
}

.stream-post-back-arrow a {
    color: #DA1F2A;
    transition: all 300ms;
    display: flex;
    gap: 10px;
}

.stream-post-back-arrow a:hover {
    opacity: .7;
    color: #DA1F2A;
}

.stream-post-back-arrow a:hover::before {
    opacity: .7;
}

.stream-post-back-arrow a::before {
    content: '';
    background-image: url(../img/arrow-back.svg);
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
}


@media screen and (min-width: 750px) {
    .stream-post-back-arrow {
        display: none;
    }
}

@media screen and (max-width: 749px) {
    .social-breadcrumbs.m-hide-mob {
        display: none;
    }
}

