.box_news {
    position: relative;
    display: block;
    padding-left: 230px;
    color: #555;
    margin-bottom: 30px;
    min-height: 150px;
}
@media (max-width: 768px) {
    .box_news {
        min-height: inherit;
        padding-left: 0;
    }
}
.box_news figure {
    width: 200px;
    height: 112px;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
}
@media (max-width: 768px) {
    .box_news figure {
        position: relative;
        width: auto;
    }
}
.box_news figure img {
    width: 200px;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    -moz-transform: translate(-50%, -50%) scale(0.9);
    -ms-transform: translate(-50%, -50%) scale(0.9);
    -o-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}
@media (max-width: 768px) {
    .box_news figure img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}
.box_news figure figcaption {
    background-color: #ffc107;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    display: inline-block;
    color: #fff;
    width: 60px;
    height: 60px;
    padding: 15px;
    line-height: 1;
}
.box_news figure figcaption strong {
    display: block;
    font-size: 21px;
    font-size: 1.3125rem;
}
.box_news h3 {
    color: #fc5b62;
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .box_news h3 {
        margin-bottom: 5px;
    }
}


.box_news:hover img {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
.box_news:hover h3 {
    color: #333;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.box_news ul {
    margin: 0;
    padding: 10px 0 0 0;
}
@media (max-width: 768px) {
    .box_news ul {
        padding: 0;
    }
}
.box_news ul li {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    font-size: 12px;
    font-size: 0.75rem;
    margin-right: 5px;
}
.box_news ul li:last-child {
    margin-right: 0;
}
.box_news ul li:last-child:after {
    content: "";
    margin: 0;
}
.box_news ul li:after {
    content: "-";
    margin: 0 0 0 10px;
}
