

/* Start:/bitrix/components/bitrix/system.pagenavigation/templates/round/style.css?15905981812917*/
.bx-pagination {
	margin: 10px 0;
}
.bx-pagination .bx-pagination-container {
	text-align: center;
	position: relative;
}
.bx-pagination .bx-pagination-container ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline-block;
}
.bx-pagination .bx-pagination-container ul li {
	display: inline-block;
	margin: 0 2px 15px 2px;
}
.bx-pagination .bx-pagination-container ul li span{
    -webkit-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
       -moz-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    	-ms-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    	 -o-transition: color .3s ease, background-color .3s ease, border-color .3s ease;
    		transition: color .3s ease, background-color .3s ease, border-color .3s ease;
	background: #eff0f1;
	padding: 0 8px;
	display: block;
	height: 32px;
	min-width: 32px;
	line-height: 32px;
	color: #444;
	font-size: 14px;
	border-radius: 16px;
	vertical-align: middle;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bx-pagination .bx-pagination-container ul li a {
	text-decoration: none;
	display: block;
	border-radius: 16px;
	height: 32px;
	min-width: 32px;
	line-height: 32px;
	color: #444;
	vertical-align: middle;
}
.bx-pagination .bx-pagination-container ul li a:hover span{
	background: #DADADA;
}
.bx-pagination .bx-pagination-container ul li.bx-active span{
	background: #0083d1;
	color: #fff;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a span {
	background: #fff;
	border: 2px solid #eff0f1;
	line-height: 28px;
	padding: 0 18px;
	color: #444;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next span{
	color: #aab1b4;
	background: #fff;
	border: 2px solid #eff0f1;
	line-height: 28px;
	padding: 0 18px;
}
.bx-pagination .bx-pagination-container ul li.bx-pag-all a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-prev a:hover span,
.bx-pagination .bx-pagination-container ul li.bx-pag-next a:hover span {
	background: #fff;
	border-color: #DADADA;
	color: #000;
}

/*color schemes*/
.bx-pagination.bx-green  .bx-pagination-container ul li.bx-active span{
	background: #3bc915;
	color: #fff;
}
.bx-pagination.bx-yellow  .bx-pagination-container ul li.bx-active span{
	background: #F9A91D;
	color: #fff;
}
.bx-pagination.bx-red  .bx-pagination-container ul li.bx-active span{
	background: #E22B2B;
	color: #fff;
}
.bx-pagination.bx-blue .bx-pagination-container ul li.bx-active span{
	background: #0083d1;
	color: #fff;
}

/* End */


/* Start:/local/templates/olissys2026/components/bitrix/news/news-new-2026/bitrix/news.list/.default/style.css?17857449312910*/
/* ===== GRID ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}
.news-grid .cat-1 {
    display: flex;
    width: 100%;
    margin: 0;
}

/* планшет — 2 в ряд */
@media(max-width: 1179px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* мобильные — 1 в ряд */
@media(max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ===== PREVIEW TEXT (line-clamp — 10 строк) ===== */
.news-preview-text {
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    color: #666666;
    margin-bottom: 30px;
}

/* ===== CARD ===== */
.cat .cat-1 {
    display: flex;
    width: 100%;
    margin: 0;
}
.cat .cat-1 .cat2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 0 24px 0;
    border-radius: 5px;
    position: relative;
    box-shadow: 0px 4px 50px 0px #0000001A;
}
.cat .cat-1 .cat2:hover {
    box-shadow: 0px 10px 18px rgba(0, 0, 0, .15);
}

/* картинка — фиксированная высота, скругление 20px, без искажений */
.cat .cat-1 .cat2 img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

/* заголовок — жирный, крупнее, максимум 2 строки */
.cat .cat-1 .cat2 .text-1 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-style: normal;
    font-weight: 700;
    font-size: 23px;
    line-height: 27px;
    text-transform: none;
    color: #1A1A1A;
    margin: 4px 0 15px;
}
.cat .cat-1 .cat2 a.text-1 {
    text-decoration: none;
}
.cat .cat-1 .cat2 a.text-1:hover {
    color: #2D9CDB;
}

/* ===== CARD BODY — растягивается, кнопка прижата к низу ===== */
.cat-card-wrp {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}
.sec-confs {
    margin-top: 40px;
}
.cat-link-wrp {
    text-align: right;
    margin-top: auto;
}

/* "Подробнее" — жирный, крупнее, слева */
.cat .link {
    display: block;
    text-align: left;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: #1A1A1A;
    border-bottom: none;
    text-decoration: none !important;
    margin-bottom: 0px;
    padding-bottom: 4px;
}

/* ===== MEDIA QUERIES ===== */
@media(max-width: 813px) {
    .cat-card-wrp {
        padding: 22px 22px 32px 22px;
    }
    .cat .cat-1 .cat2 img {
        height: 180px;
    }
}
/* End */
/* /bitrix/components/bitrix/system.pagenavigation/templates/round/style.css?15905981812917 */
/* /local/templates/olissys2026/components/bitrix/news/news-new-2026/bitrix/news.list/.default/style.css?17857449312910 */
