

/* Start:/local/templates/polmira/components/bitrix/news/articles/bitrix/news.list/.default/style.css?17526748616801*/
.atricles__filters ul{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 48px 0;
    padding: 0;
}
.atricles__filters li{
    width: fit-content;
    text-align: center;
    border-radius: 8px;
    background: #F3F2F9;
    cursor: pointer;
}
.atricles__filters li a{
    color: #6D7487;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 4px 16px;
    justify-content: center;
    align-items: flex-start;
}

.atricles__filters li.active,
.atricles__filters li:hover{
    background: #922F27;
    transition: .3s;
}
.atricles__filters li.active a,
.atricles__filters li:hover a{
    color: #FFF;
    font-weight: 700;
    transition: .3s;
}

.atricles__body{
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
    margin-left: -24px;
}

/*Карточка статьи*/
.article{
    padding: 16px 15px 16px 16px;
    border-radius: 16px;
    background: #F4F4F8;
    box-shadow: 0px 4px 12px 0px rgba(20, 53, 117, 0.13);
    display: flex;
    gap: 16px;
    height: 217px;
    margin-left: 24px;
    position: relative;
}
.article__link{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.article:hover .article__photo img{
    transform: scale(1.1);
    opacity: .7;
}
.article__photo{
    height: 100%;
    min-width: fit-content;
    overflow: hidden;
    border-radius: 8px;
    background: #000000;
}
.article__photo img{
    display: block;
    min-width: 166px;
    width: 166px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .3s;
}

.article__body{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.article__stats{
    display: flex;
    gap: 12px;
    justify-content: end;
    align-items: center;
}
.article__stats > div{
    height: 24px;
    display: flex;
    align-items: center
}
.article__like,
.article__share{
    cursor: pointer;
    position: relative;
    z-index: 2;
}
.article__like:hover path{
    fill: #922F27;
    transition: .3s;
}
.article__views{
    gap: 8px;
}
.article__views__count{
    color: #B9B9C9;
    font-size: 14px;
    font-weight: 600;
}

.article__title{
    color: #181010;
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.article.col2 .article__title{
    -webkit-line-clamp: 3;
    line-clamp: 3;
}
.article__text{
    color: #181010;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    word-wrap: break-word;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 16px;
    font-weight: 400;
}
.article-btn{
    color: #922F27;
    font-size: 14px;
    font-weight: 700;
}
.article__date{
    color: #B9B9C9;
    width: 100%;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
}

.article.col3{
    width: calc(100% / 3 - 24px);
}
.article.col3 .article__text{
    display: none;
}
.article.col2,
.article.big-mode{
    width: calc(50% - 24px);
}

.article.col2,
.article.big-mode{
    height: 440px;
    flex-direction: column;
}
.article.col2 .article__photo img{
    max-width: 100%;
    width: 100%;
    max-height: 196px;
}

.article.col2 .article__title,
.article.big-mode .article__title{
    font-size: 22px;
}
.article.col2 .article__date,
.article.big-mode .article__date,
.col-dbl .article__date{
    position: absolute;
    top: 0;
    left: 0;
    width: initial;
}
.col-dbl{
    width: calc(50% - 24px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: 24px;
}
.col-dbl .article{
    width: 100%;
    height: 100%;
    max-height: 208px;
    margin-left: 0;
}
.col-dbl .article .article__title,
.article.col2 .article__title{
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.article.col2:not(:has(div.article__photo)) .article__text,
.article.big-mode:not(:has(div.article__photo)) .article__text{
    -webkit-line-clamp: 7;
    line-clamp: 7;
}


@media (max-width: 1105px) {
    .article.col3{
        width: calc(50% - 24px);
    }
    .col-dbl .article__text{
        display: none;
    }
}
@media (max-width: 1105px) and (min-width: 768px) {
    .article.col2{
        height: 217px;
        flex-direction: row;
    }
    .article.col2 .article__photo img{
        width: 166px;
    }
    .article.col2 .article__text{
        display: none;
    }
    .article.big-mode .article__text{
        display: -webkit-box;
    }
    .article.col2 .article__title{
        font-size: 16px;
    }
    .article.col2 .article__date, .col-dbl .article__date{
        position: static;
        width: 100%;
    }
    .article.big-mode{
        height: 440px;
        flex-direction: column;
    }
    .article.big-mode .article__photo img{
        max-width: 100%;
        width: 100%;
        max-height: 196px;
    }
}
@media (max-width: 768px) {
    .col-dbl .article__date{
        position: static;
        width: 100%;
    }
    .article.col3,
    .article.col2,
    .col-dbl
    {
        width: 100%;
    }
    .article{
        height: 207px;
    }
    .article__text{
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}
@media (max-width: 768px) and (min-width: 475px) {
    .col-dbl .article__text,
    .article.col3 .article__text{
        display: -webkit-box;
    }
}

.counter{
    display: none;
    padding: 0 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 2px solid #6D7487;
    color: #6D7487;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
}
.counter.filter-hidden{
    color: #922F27;
    border: 2px solid #922F27;
}

@media (max-width: 768px) {
    .counter{
        display: flex;
    }
    .col-dbl .article{
        height: 207px;
        max-height: initial;
    }
}

.main-subsidiary.offer{
    margin-top: 80px;
}
.atricles__filters li.hidden.mod{
    display: none;
}














.ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__link_more{
    background: none !important;
    padding: 0 !important;
}
.ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__icon_more{
    background-image: url('/local/templates/polmira/components/bitrix/news/articles/images/share.svg') !important;
    height: 16px !important;
    width: 16px !important;
    transition: .3s;
}
.ya-share2:hover .ya-share2__item_more.ya-share2__item_has-pretty-view .ya-share2__icon_more{
    background-image: url('/local/templates/polmira/components/bitrix/news/articles/images/share-b.svg') !important;
}
/* End */
/* /local/templates/polmira/components/bitrix/news/articles/bitrix/news.list/.default/style.css?17526748616801 */
