/* ----------------------------------------------------------------
   Custom overrides on top of the Semicolon theme.
   ---------------------------------------------------------------- */

/* Bullets via ::before on the location description lists.
   The writer field outputs <ul><li>...</li></ul>; we suppress the
   default browser marker and draw a coloured bullet ourselves. */
.location-description-text ul {
	list-style: none;
	padding-left: 0;
	margin-left: 1em;
}

.location-description-text li {
	position: relative;
	padding-left: 0.2em;
}

.location-description-text li::before {
	content: "•";
	/* position: absolute; */
	left: 0;
	color: #960e25;
	font-weight: bold;
}

/* Drop the default top margin on .section blocks — the location loop
   alternates light wrappers and bare containers, and the theme's stock
   margin creates uneven gaps between the sections. */
.section {
	margin-top: 0;
}


