details {
	border-bottom: 1px solid #e5e5e5;
	padding: 1.5rem 0;
	margin-bottom: 0;
}

summary {
	font-weight: 500;
	color: var(--text-main);
	cursor: pointer;
	list-style: none;
	position: relative;
	padding-right: 2rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

details[open] summary::after {
  content: '−';
}

details p {
	margin-top: var(--px-4);
	color: var(--text-main);
	font-weight: 300;
}