

/* Start:/bitrix/templates/flora/components/bitrix/news/articles/bitrix/news.list/.default/style.css?17813675244705*/
/* Modern blog list for krasnodarflora.ru/articles/
   Safe styles: only classes with kf-article prefix are used. */

.kf-articles-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 26px;
	margin: 28px 0 38px;
}

.kf-article-card {
	min-width: 0;
}

.kf-article-card__inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
	background: #ffffff;
	border: 1px solid rgba(84, 111, 54, 0.13);
	border-radius: 24px;
	overflow: hidden;
	color: #202020;
	text-decoration: none;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.055);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.kf-article-card__inner:hover {
	color: #202020;
	text-decoration: none;
	transform: translateY(-4px);
	border-color: rgba(122, 166, 58, 0.42);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.10);
}

.kf-article-card__image-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #f7f3ee 0%, #eef5e8 100%);
	overflow: hidden;
}

.kf-article-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
	transform: scale(1.01);
	transition: transform .35s ease, filter .35s ease;
}

.kf-article-card__inner:hover .kf-article-card__image {
	transform: scale(1.055);
	filter: saturate(1.04);
}

.kf-article-card__image-wrap:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.20) 100%);
	pointer-events: none;
}

.kf-article-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 235px;
	font-size: 18px;
	font-weight: 700;
	color: #6e6e6e;
}

.kf-article-card__date {
	position: absolute;
	left: 18px;
	bottom: 18px;
	z-index: 2;
	display: inline-flex;
	padding: 8px 13px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(8px);
	color: #4e4e4e;
	font-size: 13px;
	line-height: 1.15;
	font-weight: 700;
	box-shadow: 0 8px 22px rgba(0,0,0,0.10);
}

.kf-article-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 22px 22px 24px;
}

.kf-article-card__title {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.18;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #1f1f1f;
}

.kf-article-card__text {
	margin: 0;
	color: #4a4a4a;
	font-size: 15px;
	line-height: 1.58;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.kf-article-card__more {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding: 9px 16px;
	border-radius: 999px;
	background: transparent;
	color: #3f7a2e;
	border: 1px solid #d2ddc4;
	font-size: 14px;
	line-height: 1.15;
	font-weight: 600;
	box-shadow: none;
}

.kf-article-card__more:after {
	content: "→";
	font-size: 16px;
	line-height: 1;
}

.kf-article-card__inner:hover .kf-article-card__more {
	background: #f0f5ea;
	border-color: #b9cda6;
}

/* Large first article on desktop */
@media screen and (min-width: 1100px) {
	.kf-articles-list .kf-article-card:first-child {
		grid-column: 1 / -1;
	}

	.kf-articles-list .kf-article-card:first-child .kf-article-card__inner {
		display: grid;
		grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
		align-items: stretch;
	}

	.kf-articles-list .kf-article-card:first-child .kf-article-card__image-wrap {
		height: 100%;
		min-height: 385px;
		aspect-ratio: auto;
	}

	.kf-articles-list .kf-article-card:first-child .kf-article-card__body {
		padding: 32px;
		justify-content: center;
	}

	.kf-articles-list .kf-article-card:first-child .kf-article-card__title {
		font-size: 31px;
		line-height: 1.12;
	}

	.kf-articles-list .kf-article-card:first-child .kf-article-card__text {
		font-size: 16px;
		-webkit-line-clamp: 5;
	}
}

.kf-articles-pager {
	margin: 10px 0 38px;
}

/* Safety fallback. If the old template accidentally remains active,
   do not stretch old 250px previews across the whole card. */
.articles-list .preview_picture {
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 900px) {
	.kf-articles-list {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 24px;
	}

	.kf-article-card__inner {
		border-radius: 22px;
	}

	.kf-article-card__body {
		padding: 21px;
	}

	.kf-article-card__title {
		font-size: 21px;
	}

	.kf-article-card__text {
		-webkit-line-clamp: 5;
	}
}

@media screen and (max-width: 480px) {
	.kf-article-card__image-wrap {
		aspect-ratio: 4 / 3;
	}

	.kf-article-card__body {
		padding: 18px;
	}

	.kf-article-card__title {
		font-size: 19px;
	}

	.kf-article-card__date {
		left: 14px;
		bottom: 14px;
		font-size: 12px;
	}
}

/* End */


/* Start:/bitrix/templates/flora/components/bitrix/system.pagenavigation/krasnodarflora/style.min.css?1712146143922*/
div.modern-page-navigation a,span.modern-page-current,div.modern-page-navigation a.modern-page-previous,span.modern-page-dots {}
div.modern-page-navigation {width:100%; padding:0.5em 0 3px 0; border-bottom:1px solid #f3f3f3; text-align:center}
div.modern-page-navigation span.modern-page-title {font-family:'Open Sans'; font-size:17px}
div.modern-page-navigation a,span.modern-page-current,span.modern-page-dots {color:#000; font-family:'Open Sans'; font-size:17px; position:relative; text-decoration:none; padding:3px 5px}
div.modern-page-navigation a:hover:before {content:""; width:100%; height:3px; background:#009950; position:absolute; display:block; left:0; bottom:-1px}
div.modern-page-navigation a.modern-page-first,div.modern-page-navigation span.modern-page-first {}
span.modern-page-current:before {content:""; width:100%; height:3px; background:#009950; position:absolute; display:block; left:0; bottom:-1px}

/* End */
/* /bitrix/templates/flora/components/bitrix/news/articles/bitrix/news.list/.default/style.css?17813675244705 */
/* /bitrix/templates/flora/components/bitrix/system.pagenavigation/krasnodarflora/style.min.css?1712146143922 */
