<?
require($_SERVER["DOCUMENT_ROOT"]."/bitrix/header.php");
$APPLICATION->SetTitle("");
?>.blog-page {
	padding: 28px 0 86px;
	font-family: "DM Sans", sans-serif;
	color: #252b33;
	background: #fff;
}

.blog-header {
	margin: 0 0 38px;
}

.blog-header h1 {
	margin: 0;
	font-size: 48px;
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: 0;
	color: #252b33;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 22px;
    padding-bottom: 80px;
}

.blog-card {
	min-width: 0;
}

.blog-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.blog-card__image {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 386 / 241;
	margin-bottom: 20px;
	border-radius: 8px;
	background: #eef1f4;
}

.blog-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.blog-card__link:hover .blog-card__image img {
	transform: scale(1.035);
}

.blog-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 24px;
	font-weight: 800;
	color: #005cf3;
	background: #eef1f4;
}

.blog-card__title {
	max-width: 96%;
	margin: 0 0 14px;
	font-size: 24px;
	line-height: 1.03;
	font-weight: 800;
	letter-spacing: 0;
	color: #252b33;
	transition: color .2s ease;
}

.blog-card__link:hover .blog-card__title {
	color: #005cf3;
}

.blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	font-size: 18px;
	line-height: 1.2;
	color: #8d949c;
}

.blog-card__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
}

.blog-card__meta-item svg {
	width: 15px;
	height: 15px;
	flex: 0 0 15px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.blog-pager {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	margin-top: 16px;
}

@media (max-width: 900px) {
	.blog-page {
		padding: 24px 0 64px;
	}

	.blog-header {
		margin-bottom: 28px;
	}

	.blog-header h1 {
		font-size: 40px;
	}

	.blog-grid {
		gap: 34px 20px;
	}

	.blog-card__title {
		font-size: 21px;
	}
}

@media (max-width: 680px) {
	.blog-header h1 {
		font-size: 34px;
	}

	.blog-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.blog-card__title {
		max-width: none;
		font-size: 22px;
		line-height: 1.12;
	}

	.blog-card__meta {
		font-size: 16px;
	}
}
<?require($_SERVER["DOCUMENT_ROOT"]."/bitrix/footer.php");?>