.hp-news2 {
    clear: both;
    overflow: hidden;
    margin-bottom: 40px;
}

@media(min-width:1400px) {
    .hp-news2 {
        overflow: visible;
    }

}



.hp-news2,
.hp-news2 *,
.hp-news2 *:after,
.hp-news2 *:before {
    box-sizing: border-box;
}

.hp-news2__head {
    padding: 20px 0 30px 0;
}


@media(min-width:990px) {
    .hp-news2__head {
        padding-top: 40px;
    }
}

@media(min-width:1400px) {
    .hp-news2__head {
        padding-top: 60px;
        overflow: hidden;
    }
}

.hp-news2__head h2 {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 24px;
    text-align: center;
}

@media(min-width:1400px) {
    .hp-news2__head h2 {
        color: #FFF;
        display: inline-block;
        font-size: 30px;
        text-align: left;
    }

    .hp-news2__head h2:after {
        content: "";
        display: block;
        height: 1px;
        width: 100vw;
        background-color: #FFF;
        position: absolute;
        top: calc(50%);
        left: calc(100% + 20px);
        transform-origin: left;
        transform: scale(0, 1);

        animation-name: scale;
        animation-duration: 4s;
        animation-delay: 1s;
        animation-fill-mode: forwards;
    }
}

.hp-news2__items {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.hp-news2__item {
    width: calc(100% - 20px);
    margin: 10px;
    text-decoration: none;
    background-color: #fff;
    display: block;
    padding: 30px;
    color: #000;
    font-weight: bold;
    font-size: 14px;
    transition: box-shadow 0.3s;
    text-decoration: none;
}

@media(min-width:768px) {
    .hp-news2__item {
        display: flex;
    }
}

@media(min-width:1024px) {
    .hp-news2__item {
        width: calc(50% - 20px);
    }
}


.hp-news2__item:hover {
    box-shadow: 0 3px 15px rgba(87, 77, 51, 0.223);
}



.hp-news2__media {
    margin-bottom: 25px;
    background-size: cover;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

@media(min-width:768px) {
    .hp-news2__media {
        width: 50%;
        margin-bottom: 0px;
        margin-right: 34px;
    }
}


.hp-news2__media:after {
    content: "";
    display: block;
    padding-top: 66.66666%;
}

@media(min-width:768px) {
    .hp-news2__content {
        width: calc(50% - 34px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
    }
}

.hp-news2__content h3 {
    font-size: inherit;
    margin: 0;
    padding: 0;
    line-height: 1.55;
}

.hp-news2__date {
    display: inline-block;
    margin-bottom: 1em;
    line-height: 1.8;
    border-bottom: 2px solid #E30512;
}

.hp-news2__read {
    color: #E30512;
    margin-top: 15px;

}

.hp-news2__read:after {
    display: inline-block;
    width: 2.3em;
    height: 0.8em;
    vertical-align: 0em;
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    margin-left: 0.5em;
    flex-shrink: 0;
    content: "";
    transition: transform 0.3s;
    background-image: url(../images/hp-news2-arrow.svg);
}

.hp-news2__item:hover .hp-news2__read:after {
    transform: translateX(5px);
}

.hp-news2__more {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.hp-news2__more-btn {
    color: #4B4B4B;
    border: 1px solid #4B4B4B;
    padding: 1em 2.5em;
    text-decoration: none;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    font-size: 14px;
    transition: 0.3s;
    font-family: inherit;
    font-weight: bold;
}


.hp-news2__more-btn:hover {
    background-color: #4B4B4B;
    color: #fff;
}

@media(min-width:1400px) {
    .hp-news2__more-btn {
        color: #FFF;
        border-color: #fff;
    }

    .hp-news2__more-btn:hover {
        background-color: #000;
    }
}