#product-specs.card {
	margin-bottom: 50px;
	border-radius: 3px;
	border: 1px solid #e1e3e4;
}

#product-specs .card__section {
	padding: 30px;
}

.specs__tables {
	display: grid;
	grid-auto-flow: row dense;
	column-gap: 30px;
}

.specs__table-title {
	color: #000000;
	font-weight: 700;
	font-size: 18px;
}

.specs__table-row {
	display: flex;
	justify-content: space-between;
	font-weight: 400;
	padding: 15px;
}

.specs__table-row--odd {
	background-color: #e1e3e4;
}

@media (min-width: 1000px) {
	.specs__tables {
		grid-template-columns: 1fr 1fr;
	}
}

.spec__sub-title {
	margin-right: 30px;
}

.spec__value {
	text-align: end;
	word-break: break-word;
}