body{
    margin: 0;
    font-family: "Roboto", sans-serif;
}

a{
    text-decoration: none;
    color: inherit;
}

.news-short-list-item-banner,
.category-banner,
.m-news-item-banner-between-articles,
.m-news-item-top-banner{
    display: none !important;
}

.content-width{
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}

.btn-up{
    opacity: 0.5;
    position: fixed;
    right: 13px;
    bottom: 13px;
    cursor: pointer;
}

.btn-up:hover{
    opacity: 1;
}

.composition{
    margin-top: 50px;
    display: flex;
    align-items: flex-start;
}

.composition-left{
    flex-grow: 1;
}

.category-item{
    margin-bottom: 30px;
}

.category-item-title{
    display: flex;
    align-items: baseline;
    margin-bottom: 30px;
}

.category-item-title-text{
    font-weight: bold;
    font-size: 36px;
    margin-right: 10px;
}

.category-item-title-line{
    flex-grow: 1;
    border-bottom: 1px solid #E5E5E5;
}

.category-banner{
    width: 100%;
    height: 90px;
    background: linear-gradient(113.94deg, #006FD8 5.51%, #4AC5B1 93.55%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    margin: 42px 0;
}

.composition-right{
    flex-shrink: 0;
    width: 300px;
    min-height: 500px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    box-sizing: border-box;
    margin-left: 20px;
    margin-bottom: 20px;
}

.news-short-list{
    display: flex;
    flex-direction: column;
}

.news-short-list-title{
    font-weight: bold;
    font-size: 24px;
    padding: 32px 30px;
    text-align: center;
}

.news-short-list-item{
    padding: 0 16px;
}

.news-short-list-item-title{
    /*height: 62px;*/
    min-height: 45px;
    font-size: 14px;
    font-weight: 600;
    padding-top: 12px;
    border-top: 1px solid #E5E5E5;
    margin-bottom: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.news-short-list-item-date{
    font-size: 12px;
    color: #424242;
    margin-bottom: 13px;
}

.news-short-list-item-banner{
    width: 100%;
    height: 600px;
    background: linear-gradient(to top, #006FD8 5.51%, #4AC5B1 93.55%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
}

.news-full-width-list{
    background: #003E79;
    padding: 40px 0;
    margin: 50px 0;
}

.news-full-width-list-content{
    display: flex;
    justify-content: space-between;
}

.news-full-width-list-content .grid-news-item{
    width: calc((100% - 60px) / 4);
    height: 189px;
    border-radius: 4px;
}

@media (max-width: 980px){
    .content-width{
        max-width: 980px;
        padding: 0 20px;
    }
    .composition{
        margin-top: 40px;
    }
    .category-item {
        margin-top: 20px;
    }
    .category-item-title-text {
        font-weight: bold;
        font-size: 24px;
        line-height: 28px;
        margin-right: 6px;
    }
    .category-item-title {
        margin-bottom: 12px;
    }
    .news-full-width-list-content{
        flex-direction: column;
        align-items: center;
    }
    .news-full-width-list{
        background: transparent;
        margin: 0;
        padding: 0;
    }
}