#blog-recent {
    padding: 35px 0;
}
#blog-recent .br-title a {
    font-family: "BebasNeueBold", Helvetica, Arial, sans-serif;
    color: #961619;
    font-size: 4rem;
    text-decoration: underline;
}
#blog-recent .br-container {
    display: flex;
    flex-direction: row;
}
#blog-recent a.br-link {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
}
#blog-recent a.br-link:first-child {
    margin-right: 20px;
    display: flex;
}
#blog-recent a.br-link:last-child {
    margin-left: 20px;
    display: flex;
}
#blog-recent .br-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    transition: box-shadow 1s;
}
#blog-recent .br-card:hover {
    box-shadow: 0 27px 24px 0 rgba(0,0,0,0.2),0 40px 77px 0 rgba(0,0,0,0.22);
}
#blog-recent .br-card .brc-content-container {
    background: repeating-linear-gradient(135deg, #eee, #eee 1px, #ddd 1px, #eee 2px);
    color: #961619;
    font-weight: bold;
    flex: 1;
    padding: 20px;
    line-height: 1.35rem;
}
#blog-recent .br-card .brc-info {
    background-size: cover;
    background-position: center center;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.5rem;
    text-shadow: 1px 1px 1px #000;
    padding: 15px 20px 10px 20px;
}
#blog-recent .br-card .brc-title {
    font-family: "BebasNeueBold", Helvetica, Arial, sans-serif;
}
#blog-recent .br-card .brc-author-data {
    font-family: "BebasNeueLight", Helvetica, Arial, sans-serif;
}
@media screen and (max-width:1200px) {
    #blog-recent a.br-link:first-child {
        margin-right: 15px;
    }
    #blog-recent a.br-link:last-child {
        margin-left: 15px;
    }
}
@media screen and (max-width:992px) {
    #blog-recent .br-title a {
        font-size: 3.5rem;
    }
    #blog-recent a.br-link:first-child {
        margin-right: 10px;
    }
    #blog-recent a.br-link:last-child {
        margin-left: 10px;
    }
}
@media screen and (max-width:767px) {
    #blog-recent .br-container {
        flex-direction: column;
    }
    #blog-recent a.br-link:first-child, #blog-recent a.br-link:last-child {
        margin: 10px 0;
    }
}
@media screen and (max-width:600px) {
    #blog-recent {
        padding: 25px 0;
    }
    #blog-recent .br-title a {
        font-size: 3rem;
    }
}
@media screen and (max-width:480px) {
    #blog-recent {
        padding: 20px 0;
    }
    #blog-recent .br-title a {
        font-size: 2.5rem;
    }
    #blog-recent a.br-link:first-child, #blog-recent a.br-link:last-child {
        margin: 5px 0;
    }
    #blog-recent .br-card .brc-content-container {
        padding: 15px;
    }
    #blog-recent .br-card .brc-info {
        padding: 10px 15px 5px 15px;
    }
}
@media screen and (max-width:350px) {
    #blog-recent .br-card .brc-content-container {
        padding: 10px;
        font-size: .9rem;
        line-height: 1.15rem;
    }
    #blog-recent .br-card .brc-info {
        padding: 5px 10px 0 10px;
    }
    #blog-recent .br-card .brc-title {
        line-height: 1.15rem;
        margin-bottom: 5px;
    }
    #blog-recent .br-card .brc-author-data {
        line-height: 1.15rem;
    }
    #blog-recent .br-card .brc-author-data .brc-sep {
        display: none;
    }
    #blog-recent .br-card .brc-author-data .brc-author, #blog-recent .br-card .brc-author-data .brc-date {
        display: block;
        width: 100%;
    }
}