.image-box__wrapper {
    background-size: cover;
    overflow: hidden;
    height: 150px;
    width: 100%;
}

.news-2-item {
    width: 100%;
    min-height: 340px;
}

.news-2-item__text {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-2-item__text--title {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.characters__image-wrapper {
    width: 100%;
    height: 100%;
    /* position: relative; */
    transition: all .5s;
}

.characters__image {
    width: auto;
    height: 100%;
    border-radius: 0;
    display: block;
    margin: 0 auto;
    /* position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); */
    transition: all .5s;
}

.news-2-item:hover .news-2-item__text--title {
    white-space: unset;
    overflow: unset;
    text-overflow: unset;
}

.news-2-item:hover .characters__image {
    filter: grayscale(1) blur(2px);
}

.btn-more {
    color: #555;
    font-size: .8rem;
    transition: all .2s;
}

.btn-more:hover,
.btn-more:visited {
    background-color: #ddd;
    color: #333;
    padding: .3rem 1rem;
}

.btn-more:focus,
.btn-more:active {
    background-color: #bbb;
    color: #333;
    padding: .3rem 1rem;
}