.offer {
	padding: 60px 20px 90px;
	background: #ffffff;
	font-family: var(--vk-font);
}

.offer__inner {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
	align-items: start;
	max-width: 1160px;
	margin: 0 auto;
}

/* Изделие без снимков занимает всю ширину: пустая колонка выглядела бы
   сломанной вёрсткой. */
.offer__inner--solo {
	grid-template-columns: minmax(0, 1fr);
}

.offer__info {
	min-width: 0;
}

.offer__title {
	margin: 0 0 21px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.35;
	color: #000000;
	overflow-wrap: anywhere;
}

.offer__price {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.35;
	color: #000000;
}

.offer__price--order {
	color: #6b6459;
}

.offer__button {
	min-height: 45px;
	margin-bottom: 30px;
	padding: 8px 30px;
	border-radius: 5px;
}

.offer__text {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.55;
	color: #000000;
	overflow-wrap: anywhere;
}

.offer__text p {
	margin: 0 0 16px;
}

.offer__text ul {
	margin: 0 0 16px;
	padding-left: 20px;
}

.offer__text li {
	margin-bottom: 8px;
}

.offer__text > :last-child,
.offer__text li:last-child {
	margin-bottom: 0;
}

.specs {
	margin-top: 30px;
}

.specs__title {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
	color: #000000;
}

.specs__list {
	margin: 0;
}

.specs__row {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 12px;
	justify-content: space-between;
	padding: 9px 0;
	border-bottom: 1px solid #e6e6e6;
	font-size: 14px;
	line-height: 1.5;
}

.specs__row:first-child {
	border-top: 1px solid #e6e6e6;
}

.specs__name {
	font-weight: 300;
	color: #666666;
}

.specs__value {
	margin: 0;
	font-weight: 400;
	color: #000000;
	text-align: right;
	overflow-wrap: anywhere;
}

.offer :focus-visible {
	outline: 2px solid var(--vk-accent);
	outline-offset: 3px;
}

/* Media */

@media (max-width: 959px) {
	.offer {
		padding: 40px 20px 60px;
	}

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