/* Productspecificaties sectie ("AI-proof" productpagina's) */

.specs-section {
	padding-top: 6.25rem;
	padding-bottom: 6.25rem;
}

.specs-section__title {
	font-size: 2rem;
	line-height: 2.5rem;
	margin-bottom: 1rem;
	text-align: left;
}

.specs-section__intro {
	max-width: 44.625rem;
	margin: 0 0 2.75rem;
	text-align: left;
}

.specs-section__list {
	max-width: 53rem;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.specs-category {
	border: 1px solid #E5E7EB;
	border-radius: 0.5rem;
	background-color: #fff;
	padding: 1.25rem 1.5rem;
}

.specs-category__header {
	cursor: pointer;
	list-style: none;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 700;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.specs-category__header::-webkit-details-marker {
	display: none;
}

.specs-category__header::after {
	content: "";
	flex: 0 0 auto;
	width: 0.813rem;
	height: 0.5rem;
	background-image: url(https://www.kivo.nl/assets/svg/faq-down.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.2s ease;
}

.specs-category[open] > .specs-category__header::after {
	transform: rotate(180deg);
}

.specs-category__body {
	margin-top: 1rem;
}

.specs-category__rows {
	display: grid;
	gap: 0.625rem;
}

.specs-category__row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5rem 1.5rem;
	padding-bottom: 0.625rem;
	border-bottom: 1px solid #F4F6F8;
}

.specs-category__row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.specs-category__row dt {
	color: #6B7280;
	font-weight: 400;
}

.specs-category__row dd {
	margin: 0;
	font-weight: 600;
	text-align: right;
}

.specs-category__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.specs-category__tags li {
	background-color: #F4F6F8;
	border-radius: 999px;
	padding: 0.375rem 0.875rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.specs-category__note {
	margin-top: 0.75rem;
	font-size: 0.813rem;
	color: #6B7280;
	font-style: italic;
}

@media (max-width: 768px) {
	.specs-section {
		padding-top: 3.375rem;
		padding-bottom: 3.375rem;
	}

	.specs-category__row dd {
		text-align: left;
	}
}
