/*
 Theme Name:   Divi Child
 Description:  Child theme for Divi — preserves CSI customizations across parent updates.
 Author:       Robben Media
 Template:     Divi
 Version:      1.0.1
*/

/* Custom +/- icons for Divi accordion module — replaces default ETmodules glyph.
   Divi 3.x hides ::before on open state, so we force it visible and override the content character. */
.et_pb_accordion .et_pb_toggle_title::before {
	content: "+" !important;
	font-family: Arial, Helvetica, sans-serif !important;
	font-style: normal !important;
	font-weight: 700 !important;
	font-size: 1.6em !important;
	line-height: 1 !important;
}

.et_pb_accordion .et_pb_toggle_open .et_pb_toggle_title::before {
	content: "\2212" !important; /* U+2212 minus sign — visually balanced with + */
	display: block !important;
	top: 9px !important;
	right: 0 !important;
	left: auto !important;
}
