/* BEGIN b-card-23 */
.b-card-23 {
    display: block;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--color-main);
    box-shadow: 1px 1px 5px #bbb;
    border-radius: 12px;
    overflow: hidden;
    height: calc(100% - 30px);
}
.b-card-23 .b_title {
    font-size: 17px;
    font-weight: bold;
    line-height: 1.4;
    margin: 14px 0 14px;
    -webkit-transition: 0.3s color ease-in-out;
    -o-transition: 0.3s color ease-in-out;
    transition: 0.3s color ease-in-out;
}
.b-card-23 .b_desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #605f5f;
    font-size: 13px;
}
.b-card-23:hover .b_title {
    color: var(--color-main);
}
.b-card-23 .b_content {
    padding: 10px 20px 25px;
}
.b-card-23 .b_date {
    color: #434343;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
}
.b-card-23 .b_button {
    display: inline-block;
    margin-top: 20px;
    padding: 7px 20px;
    background: var(--primary-color);
    color: var(--brown-color);
    border-radius: 30px;
    font-weight: 500;
}
.b-card-23 .b_button:hover {
    background: var(--gold-light);
}
.b-card-23 img {
    transform: translate3d(-6.66%, 0, 0);
    -webkit-transform: translate3d(-6.66%, 0, 0);
    width: calc(100% + 10%);
    max-width: none;
    transition: opacity .35s, transform .45s;
}
.b-card-23:hover img {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}
/* END b-card-23 */
@media screen and (max-width: 479px) {
    .b-card-23 .b_content {
        padding: 10px 10px 21px;
    }
}