.sk-cover {
	display: block;
	width: 100%;
	aspect-ratio: 22 / 15;
	overflow: hidden;
	background: #e5e7eb;
}

.sk-cover svg {
	display: block;
	width: 100%;
	height: 100%;
}

.sk-cover--thumb {
	aspect-ratio: 22 / 15;
}

.sk-cover--single {
	aspect-ratio: 21 / 9;
	margin-bottom: 18px;
	border-radius: 6px;
}

/* Blog / archive news-card grid */
.blog-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 10px;
}

.blog-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 10px;
	overflow: hidden;
	transition: box-shadow .2s ease, transform .2s ease;
}

.blog-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, .10);
	transform: translateY(-2px);
}

.blog-card__thumb {
	display: block;
	line-height: 0;
}

.blog-card__thumb .sk-cover,
.blog-card__thumb img {
	width: 100%;
	height: auto;
	display: block;
}

.blog-card__body {
	display: flex;
	flex-direction: column;
	padding: 16px 18px 18px;
	flex: 1 1 auto;
}

.blog-card__cat {
	display: inline-block;
	align-self: flex-start;
	margin: 0 0 8px;
	padding: 3px 10px;
	border-radius: 999px;
	background: #e0f2fe;
	color: #0369a1;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .03em;
}

.blog-card__cat:hover {
	background: #bae6fd;
}

.blog-card__title {
	font-size: 18px;
	line-height: 1.3;
	margin: 0 0 10px;
	font-weight: 700;
}

.blog-card__title a {
	color: #1f2d3d;
	text-decoration: none;
}

.blog-card__title a:hover {
	color: #0ea5e9;
}

.blog-card__excerpt {
	font-size: 14px;
	color: #5b6675;
	margin: 0 0 14px;
	flex: 1 1 auto;
}

.blog-card__more {
	font-size: 14px;
	font-weight: 600;
	color: #0ea5e9;
	text-decoration: none;
	align-self: flex-start;
}

/* Pretty pagination */
.nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 30px 0 10px;
	flex-wrap: wrap;
}

.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	background: #fff;
	color: #1f2d3d;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all .15s ease;
}

.nav-links .page-numbers:hover {
	border-color: #0ea5e9;
	color: #0ea5e9;
}

.nav-links .page-numbers.current {
	background: #0ea5e9;
	border-color: #0ea5e9;
	color: #fff;
	cursor: default;
}

.nav-links .page-numbers.dots {
	border: none;
	background: none;
	min-width: auto;
}

@media (max-width: 991px) {
	.blog-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.blog-cards {
		grid-template-columns: 1fr;
	}

	.sk-cover--single {
		aspect-ratio: 16 / 9;
	}
}

/* Results cases as cards */
.res-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 26px;
}
.res-card {
	background: #fff;
	border: 1px solid #e8edf3;
	border-radius: 12px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 18px rgba(15, 40, 90, 0.06);
}
.res-card__media img {
	width: 100%;
	height: auto;
	display: block;
}
.res-card__body {
	padding: 20px 22px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.res-card__title {
	font-size: 18px;
	line-height: 1.3;
	margin: 0 0 8px;
	color: #12325c;
}
.res-card__site {
	font-weight: 700;
	color: #0ea5e9;
	margin-bottom: 10px;
}
.res-card__text {
	font-size: 14px;
	line-height: 1.5;
	color: #42526b;
	margin: 0 0 12px;
}
.res-card__list {
	margin: 0 0 14px;
	padding-left: 18px;
	font-size: 14px;
	line-height: 1.5;
	color: #42526b;
}
.res-card__list li { margin-bottom: 6px; }
.res-card .knopka {
	margin-top: auto;
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #91ab35;
	color: #fff;
	padding: 12px 18px;
	border-radius: 8px;
	cursor: pointer;
}
.res-card .knopka:hover {
	background: #7e9730;
}
.res-card .knopka p { margin: 0; }
@media (max-width: 991px) {
	.res-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.res-cards { grid-template-columns: 1fr; }
}

/* "СВЕЖИЕ ПОСТЫ С НАШЕГО БЛОГА" preview cards */
.posti .posts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 10px;
}
.posti .posts .post {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 10px;
	overflow: hidden;
	transition: box-shadow .2s ease, transform .2s ease;
}
.posti .posts .post:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,.10);
	transform: translateY(-2px);
}
.posti .posts .post img,
.posti .posts .post iframe {
	width: 100%;
	height: auto;
	display: block;
}
.posti .posts .post .namep {
	font-size: 18px;
	line-height: 1.3;
	margin: 0;
	padding: 16px 18px 0;
	font-weight: 700;
}
.posti .posts .post .namep a { color: #1f2d3d; text-decoration: none; }
.posti .posts .post .namep a:hover { color: #0ea5e9; }
.posti .posts .post p { margin: 8px 18px; font-size: 14px; color: #5b6675; }
.posti .posts .post .podr { padding: 4px 18px 18px; margin: 0; }
.posti .posts .post .podr a { color: #0ea5e9; font-weight: 600; text-decoration: none; }
@media (max-width: 1100px) { .posti .posts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .posti .posts { grid-template-columns: 1fr; } }

/* Homepage "Заказать звонок" button -> brand green */
.callbtn-home {
	background: #91ab35;
	color: #fff;
	border: none;
	padding: 12px 22px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 700;
}
.callbtn-home:hover { background: #7e9730; }
