/* ----------------------------------------------------------------
	CSS for: Africa Tourism Research Network
	Created: 20-Aug-2025
	Last update: 2026-08-10 - Claude - Replaced the old 5-swatch generic palette with
	colours actually pulled from ATR's logo (circular badge: orange-red arc, gold
	star ring, deep teal arc, dark map silhouette). The old --color-3 (lime green)
	and --color-4 (sky blue) never appeared in the logo at all -- they were a
	leftover generic palette, not ATR's real brand:

		--accent-primary:   #EEC21B  (gold)             -- the star ring, unchanged
		--accent-secondary: #EE571B  (orange-red)        -- the arc + "ATRN" badge,
		                                                     was mapped to --brand-dark
		                                                     before, moved here
		--brand-primary:    #1B7A72  (deep teal)         -- the other arc, replaces
		                                                     sky blue (not in the logo)
		--brand-dark:       #14302C  (near-black teal)   -- the map silhouette / cap
		                                                     icon / body text, replaces
		                                                     the GTR-violet placeholder

	Hex values are visual estimates from the supplied logo image, not sampled
	pixels -- worth confirming against ATR's actual brand file if one exists.

	This is the pattern to repeat for every other client's own CSS file: override
	only the tokens that need to change, nothing else.
-----------------------------------------------------------------*/

:root {
	--brand-dark: #14302c;
	--brand-primary: #1b7a72;
	--accent-primary: #eec21b;
	--accent-secondary: #ee571b;
}

::selection {
	background: var(--accent-primary);
	color: var(--brand-dark);
}

/* 2026-08-16 - Claude - Removed the "CONTENT FROM MAIN SYSTEM BLOG" block (.ln-type-*,
   .float-left/.float-right) -- confirmed obsolete for the new SatSite system, it styled
   admin-entered rich-text content from the old content-page system the v4 rebuild no longer
   uses. */
