/* Tooto Specification Table */

.tooto-specification-block {
	width: 100%;
	max-width: 1012px;
	margin: 0 auto;
}

.tooto-specification-title {
	margin: 0 0 44px;
	text-align: center;
	font-size: clamp(36px, 4.5vw, 56px);
	font-weight: 700;
	line-height: 1.1;
	color: #1e1e1e;
}

.tooto-specification-table {
	width: 100%;
	border-top: 1px solid #ececec;
	border-bottom: 1px solid #ececec;
	background: #fff;
}

.tooto-spec-row {
	display: grid;
	grid-template-columns: minmax(180px, 310px) minmax(0, 1fr);
	column-gap: 28px;
	align-items: start;
	padding: 14px 18px;
	border-bottom: 1px solid #ececec;
}

.tooto-spec-row:last-child {
	border-bottom: none;
}

.tooto-spec-key {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.45;
	color: #1f1f1f;
}

.tooto-spec-value {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.45;
	color: #4a4a4a;
}

@media (max-width: 767px) {
	.tooto-specification-title {
		margin-bottom: 28px;
	}

	.tooto-spec-row {
		grid-template-columns: 1fr;
		row-gap: 8px;
		padding: 14px 0;
	}
}
