.help-container {
	background-color: var(--edirt-grey-4);
	border: 1px solid var(--edirt-grey-4);
	border-radius: 8px;
	overflow: hidden;
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(3, 1fr);
}

.help-container.full {
	grid-template-columns: repeat(1, 1fr);
}

.help-container > *:last-child:nth-child(3n + 1) {
	grid-column: span 3;
}
.help-container > *:last-child:nth-child(3n + 2) {
	grid-column: span 2;
}

.help-page {
	padding: 16px;
	width: 100%;
	cursor: pointer;
	background-color: var(--edirt-white);
}

.help-content, .help-content p {
	font-family: 'Public Sans', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0;
	display: block;
	margin: 12px 0;
}

.help-content ul, .help-content ol {
	margin: 0;
	padding-left: 12px;
}

.help-content li {
	font-size: 14px;
	margin: 8px 0;
}

.help-content img {
	max-width: 100%;
}

.help-subpage-list {
	border: 1px solid var(--edirt-grey-4);
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.help-subpage-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
}

.help-subpage-item.help-subpage-item-current {
	background-color: var(--edirt-blue-4);
	justify-content: start;
}

.help-subpage-item:not(:last-child) {
	border-bottom: 1px solid var(--edirt-grey-4);
}

@media (max-width: 768px) {
	.help-container {
		grid-template-columns: repeat(2, 1fr);
	}

	.help-container > *:last-child:nth-child(2n + 1) {
		grid-column: span 2;
	}
}
