.blog-page-hero {
    align-items: center;
    background: url(/themes/custom/brokerage/images/shutterstock_1721392153.png);
    background-position: center;
    background-size: cover;
    display: flex;
    height: 500px;
    justify-content: center;
    padding-top: 73.69px;
    position: relative;
    text-align: center;
    width: 100%;
}

.blog-page-hero::before {
    background-color: rgba(0,0,0,.4);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.path-blog .view-the-signature-blog {
    padding: 100px 0;
}

.view-the-signature-blog .view-content {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    justify-items: center;
    margin: auto;
}

.blog-item {
    background-color: #555;
    display: flex;
    flex-direction: column;
    min-width: 340px;
    width: 100%;
}

.blog-item img {
    height: 350px;
    object-fit: cover;
    object-position: top;
    width: 100%;
}

.blog-item a {
    color: #FFF;
}

.blog-item a:hover {
    color: #FFF;
}

.pager {
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    list-style: none;
    margin-top: 2rem;
    padding: 0;
    text-align: center;
}

.pager a {
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #FFF;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 38px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 14px;
    transition: all .1s ease-in;
}

.pager a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .view-the-signature-blog .view-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}