/* DC Ingredients — frontend styles
   Matches David Cox brand palette (Fira Sans Condensed, #9e2024, #2E3A35)
   ------------------------------------------------------------------ */

/* Ingredients list paragraph */
.dc-ingredients-list {
	font-size: 0.95em;
	line-height: 1.75;
	color: inherit;
	margin-bottom: 1em;
}

/* Allergen highlight */
.dc-ingredients-list strong.dc-allergen {
	font-weight: 700;
	color: #9e2024;
	/* Subtle underline to aid accessibility beyond colour alone */
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 2px;
	text-decoration-thickness: 1px;
}

/* Allergen disclaimer note */
.dc-allergens-note {
	font-size: 0.82em;
	color: #555;
	background: #f8f4f4;
	border-left: 3px solid #9e2024;
	padding: 0.6em 0.9em;
	border-radius: 0 4px 4px 0;
	margin-top: 1.25em;
	line-height: 1.5;
}

.dc-allergens-note strong {
	color: #9e2024;
}

/* Dark-mode support (if theme supports prefers-color-scheme) */
@media (prefers-color-scheme: dark) {
	.dc-allergens-note {
		background: rgba(158, 32, 36, 0.1);
		color: #ccc;
	}
}
