

/* Start:/bitrix/templates/podem/components/bitrix/news/stati/bitrix/news.list/.default/style.css?17858766512985*/
.stati-section {
	--stati-blue: #4153A6;
	--stati-green: #8CC63F;
	--stati-white: #fff;
	--stati-text: #333;
	--stati-muted: #3a3d44;
	--stati-radius: 12px;
	--stati-shadow: 0 4px 18px rgba(65, 83, 166, 0.1);
	--stati-shadow-hover: 0 10px 28px rgba(65, 83, 166, 0.18);
	color: var(--stati-text);
}

.stati-section{
	margin-bottom: 60px; 
}

.stati-list-title {
	margin: 0 0 28px;
	font-size: 32px;
	font-weight: 700;
	color: var(--stati-blue);
}

.stati-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.stati-card {
	display: flex;
	flex-direction: column;
	background: var(--stati-white);
	border-radius: var(--stati-radius);
	box-shadow: var(--stati-shadow);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stati-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--stati-shadow-hover);
}

.stati-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #f3f5fa;
	position: relative;
}

.stati-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	position: relative;
	z-index: 5;
}

.stati-card:hover .stati-card__image img {
	transform: scale(1.04);
}

.stati-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 20px 22px 24px;
}

.stati-card__date {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--stati-muted);
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    right: 0px;
    top: 0px;
    padding: 3px 7px;
    border-radius: 0px 0px 0px var(--stati-radius);
	z-index: 10;
}

.stati-card__title {
	margin: 0 0 12px !important;
	padding: 0px !important;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 700;
}

.stati-card__title a {
	color: var(--stati-blue);
	text-decoration: none;
	transition: color 0.2s ease;
}

.stati-card__title a:hover {
	color: var(--stati-green);
}

.stati-card__preview {
	flex: 1;
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 1.55;
	color: #4b5563;
}

.stati-card__preview p {
	margin: 0;
}

.stati-card__more {
	align-self: flex-start;
	margin-top: auto;
	font-size: 14px;
	font-weight: 700;
	color: var(--stati-green);
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
}

.stati-card__more:hover {
	color: var(--stati-blue);
}

.stati-pager {
	margin-top: 32px;
	text-align: center;
}

.stati-pager--top {
	margin-top: 0;
	margin-bottom: 24px;
}

.stati-pager--bottom .navigation-arrows{
	display: none !important;
}

.stati-pager--bottom .navigation-title{
	display: none !important;
}

@media (min-width: 768px) {
	.stati-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.stati-list {
		grid-template-columns: repeat(3, 1fr);
	}

	.stati-list-title {
		font-size: 36px;
	}
}

/* End */


/* Start:/bitrix/templates/podem/components/bitrix/news/stati/include/popular.css?17858766883448*/
.stati-popular {
	margin-top: 0;
	margin-bottom: 40px;
}

.stati-popular .stati-list-title {
	margin-bottom: 24px;
}

.stati-popular__slider {
	position: relative;
}

.stati-popular__slider .stati-card__preview {
	flex: 1;
	display: -webkit-box; 
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	line-clamp: 5;
	overflow: hidden;
}

.stati-popular__slider .stati-card__body{
	background: #edf4fd;
}

.stati-popular-swiper {
	overflow: hidden;
}

.stati-popular-swiper .swiper-slide {
	height: auto;
}

/* До инициализации Swiper: сетка как у финального breakpoints, лишние слайды скрыты */
.stati-popular:not(.is-ready) .stati-popular-swiper .swiper-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	transform: none !important;
}

.stati-popular:not(.is-ready) .stati-popular-swiper .swiper-slide {
	width: 100% !important;
	margin: 0 !important; 
}

.stati-popular:not(.is-ready) .stati-popular-swiper .swiper-slide:nth-child(n + 2) {
	display: none;
}

.stati-popular:not(.is-ready) .stati-popular__nav {
	visibility: hidden;
	pointer-events: none;
}

@media (min-width: 768px) {
	.stati-popular:not(.is-ready) .stati-popular-swiper .swiper-wrapper {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.stati-popular:not(.is-ready) .stati-popular-swiper .swiper-slide:nth-child(-n + 2) {
		display: block;
	}

	.stati-popular:not(.is-ready) .stati-popular-swiper .swiper-slide:nth-child(n + 3) {
		display: none;
	}
}

@media (min-width: 992px) {
	.stati-popular:not(.is-ready) .stati-popular-swiper .swiper-wrapper {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.stati-popular:not(.is-ready) .stati-popular-swiper .swiper-slide:nth-child(-n + 3) {
		display: block;
	}

	.stati-popular:not(.is-ready) .stati-popular-swiper .swiper-slide:nth-child(n + 4) {
		display: none;
	}
}

.stati-popular-swiper .stati-card {
	height: 100%;
	box-shadow: none;
	border: 1px solid #d7dbe3;
	transition: border-color 0.2s ease;
}

.stati-popular-swiper .stati-card:hover {
	transform: none;
	box-shadow: none;
	border-color: #8CC63F;
}

.stati-popular-swiper .stati-card:hover .stati-card__image img {
	transform: none;
}

.stati-popular__nav {
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	border: 0;
	border-radius: 50%;
	background: #4153A6;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(65, 83, 166, 0.25);
	transition: background 0.2s ease, opacity 0.2s ease;
	outline: none !important;
}

.stati-popular__nav:hover {
	background: #8CC63F;
}

.stati-popular__nav.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
}

.stati-popular__nav--prev {
	left: -8px;
}

.stati-popular__nav--next {
	right: -8px;
}

.stati-popular__nav--prev::before,
.stati-popular__nav--next::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.stati-popular__nav--prev::before {
	transform: translate(-30%, -50%) rotate(-135deg);
}

.stati-popular__nav--next::before {
	transform: translate(-70%, -50%) rotate(45deg);
}

@media (max-width: 991px) {
	.stati-popular__nav--prev {
		left: 0;
	}

	.stati-popular__nav--next {
		right: 0;
	}
}

/* End */
/* /bitrix/templates/podem/components/bitrix/news/stati/bitrix/news.list/.default/style.css?17858766512985 */
/* /bitrix/templates/podem/components/bitrix/news/stati/include/popular.css?17858766883448 */
