.products {
	padding: var(--vk-section-pad-y) 20px;
	background: #f2f2f2;
	font-family: var(--vk-font);
}

.products__inner {
	max-width: 1160px;
	margin: 0 auto;
}

.products__title {
	margin: 0 0 45px;
	font-size: 42px;
	font-weight: 600;
	line-height: 1.23;
	text-align: center;
	color: #000000;
	overflow-wrap: anywhere;
}

.products__descr {
	max-width: 560px;
	margin: 0 auto 100px;
	font-size: 24px;
	font-weight: 300;
	line-height: 1.5;
	text-align: center;
	color: #474747;
	overflow-wrap: anywhere;
}

.products__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 45px 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Карточка изделия */

.product {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
}

.product__image {
	display: block;
	margin-bottom: 27px;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.product__title {
	margin: 0 0 12px;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.23;
	color: #000000;
	overflow-wrap: anywhere;
}

.product__subtitle {
	margin: 0 0 2px;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.55;
	color: #7b7b7b;
	overflow-wrap: anywhere;
}

.product__price {
	margin: 0 0 17px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.35;
	color: #000000;
}

.product__descr {
	margin: 0 0 25px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.55;
	color: #6a6a6a;
	overflow-wrap: anywhere;
}

.product__button {
	margin-top: auto;
}

/* Media */

@media (max-width: 959px) {
	.products__title {
		font-size: 32px;
	}

	.products__title {
		margin-bottom: 30px;
	}

	.products__descr {
		margin-bottom: 60px;
		font-size: 20px;
	}

	.products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 40px 24px;
	}

	.product__title {
		font-size: 24px;
	}
}

@media (max-width: 639px) {
	.products__title {
		font-size: 26px;
	}

	.products__title {
		margin-bottom: 20px;
	}

	.products__descr {
		margin-bottom: 40px;
		font-size: 18px;
	}

	.products__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 45px;
	}

	.product__image {
		margin-bottom: 20px;
	}

	.product__title {
		font-size: 22px;
	}
}
