.newsBlock{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    width: 100%;
    border-top: 0;
    margin: 1rem 0;
}

.newsBlock .newsBlockTxt{
    width: calc(100% - 150px - 360px - 2rem);
    border-bottom: 1px solid var(--hoverColor);
    padding-bottom: 2rem;
}

@media screen and (max-width: 991px) {
    .newsBlock .newsBlockTxt{
        width: 100%;
        margin-top: 1rem;
    }
}

.newsBlockTxt h4{
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--TitleColor);
}

.newsBlockTxt h4 a{
    font-size: 1.5rem;
}

.newsBlockTxt p{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newsBlock:hover .newsBlockTxt p{
    color: var(--textColor);
}

.newsBlock .btnBox{
    text-align: right;
}

.newsBlock:hover .link_hover{
    color: var(--hoverColor);
}

.newsBlock:hover .link_hover i{
    left: 10px;
    transition: .3s;
}

/* NewsPage */
.share_link{
    display: flex;
    align-items: center;
    justify-content: end;
}

.share_link a{
    display: inline-block;
    border: 1px solid #ccc;
    width: 40px;
    height: 40px;
    text-align: center;
    margin: 0 0.25rem;
}

.share_link a:hover{
    border-color: var(--hoverColor);
    border-radius: 50%;
}

.share_link i{
    font-size: 1.25rem;
    line-height: 40px;
}

@media screen and (max-width: 991px) {
    .share_link{
        width: 100%;
        margin-top: 1rem;
    }
}

.line_icon{
    position: relative;
}

.line_icon::before{
    content: "";
    width: 27px;
    height: 27px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: url(../images/icon_line.png);
    background-size: contain;
    z-index: 2;
}

.line_icon:hover::before{
    background: url(../images/icon_line_o.png);
    background-size: contain;
    z-index: 2;
}

.line_icon:hover::after{
    border: 1px solid #CD5D67;
}

.newsBlock .newsBlockImg{
    margin-right: 2rem;
    max-width: 500px;
}
.newsBlock .newsBlockImg img{
    width: 100%;
}

@media screen and (min-width: 1200px) {
    .pagetitle, .editorWrap, .newsSwiper{
        max-width: 1000px;
    }
}

.swiper-button-next, .swiper-button-prev{
    width: 60px;
    height: 60px;
    background: var(--whiteColor);
    border: 1px solid var(--mainColor);
    border-radius: 50px;
    top: auto;
    bottom: 0;
}

.swiper-button-next{
    left: 52%;
}

.swiper-button-prev{
    left: auto;
    right: 52%;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: 'icomoon' !important;
    font-size: 1.5rem;
    color: var(--mainColor);
}

.swiper-button-prev:after {
    content: '\e903';
}

.swiper-button-next:after {
    content: '\e902';
}

.newsSwiper p{
    text-align: center;
    padding: 0 1rem;
    margin-top: 1rem;
}