.wp-block-details {
	summary {
		font-size: 22px;
		font-style: normal;
		font-weight: 500;
		color: var(--wp--preset--color--color-black);
		font-family: var(--wp--preset--font-family--varela-round);
		position: relative;
		padding-right: 20px;

		&::marker {
			content: "";
			list-style: none;
			display: none;
		}

		&:after {
			color: #777;
			content: "+";
			font-weight: 300;
			position: absolute;
			right: 0;
			top: 50%;
			transform: translateY(-50%);
		}
	}


}

.wp-block-details[open] {
	summary {
		&:after {
			content: "-";
			font-family: monospace !important;
		}
	}
}
