
/* Global font-face declarations for site fonts (used by components) */
@font-face {
	font-family: 'RalewayVar';
	src: url('/fonts/Raleway-VariableFont_wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'RalewayVar';
	src: url('/fonts/Raleway-VariableFont_wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: light;
	font-display: swap;
}

@font-face {
	font-family: 'RalewayVar';
	src: url('/fonts/Raleway-Italic-VariableFont_wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'OpenSansVar';
	src: url('/fonts/OpenSans-VariableFont_wdth,wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'OpenSansVar';
	src: url('/fonts/OpenSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

:root {
	--accent-color: #009fbf; /* used for headlines and now list markers */
	--header-height: 72px; /* space reserved for fixed header (adjust if header size changes) */
}

/* Base typography */
html, body {
	margin: 0;
	padding: 0;
	padding-top: var(--header-height);
	font-family: 'OpenSansVar', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
	color: #333;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'RalewayVar', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
	margin: 0 0 1rem 0;
	font-weight: 700;
	color: #009fbf;
}

.small-links a {
  color: #009fbf;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.small-links a:hover {
  color: black;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.small-links a:visited {
  color: #009fbf;
}

.small-links a:active {
  color: #003b47;
}





/* Layout helpers and common page styles */

/* Centered content container used across pages */
.container {
	max-width: 1060px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

/* Main page area */
.site-main {
	padding: 2rem 0 4rem;
	background: #fff;
}

/* Hero area: pages may provide a named 'hero' slot with a .hero element inside */
.hero-wrapper {
	background: transparent;
	padding: 0 1.25rem;
}
.hero {
	padding: 3.5rem 0;
	text-align: center;
}
.hero .title {
	font-size: 2rem;
	margin: 0 0 1rem;
	color: #009fbf;
	font-weight: 700;
}
.hero .lead {
	max-width: 780px;
	margin: 0 auto;
	font-size: 1.05rem;
	line-height: 1.6;
	text-align: left;
}

/* Breadcrumbs (subpages) */
.breadcrumbs {
	font-size: 0.95rem;
	color: #444;
	margin: 0.75rem 0 1.25rem;
}

/* Article / content defaults */
.container article {
	color: #444;
	line-height: 1.7;
}
.container h1, .container h2 {
	color: #009fbf;
}
.container p {
	margin-bottom: 1rem;
}

/* Lists: replace default bullets with a blue '+' matching headlines */
ul, ol {
	list-style: none;
	padding-left: 1.4rem; /* space for custom marker */
}

ul li, ol li {
	position: relative;
	padding-left: 1.2rem; /* space between marker and text */
	margin-bottom: 0.35rem;
}

ul.plus li::before, ol li::before {
	content: "+";
	color: var(--accent-color);
	position: absolute;
	left: 0;
	top: 0.12em; /* vertically align marker with first line */
	font-weight: 700;
	line-height: 1;
}

/* Collapsible behavior for .plus lists controlled by a toggle link */
ul.plus[hidden] {
	display: none;
}

.plus-toggle {
	display: inline-block;
	margin: 0.5rem 0 0.35rem 0;
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 600;
}

/* Slightly smaller marker for nested lists to keep rhythm */
ul ul li::before, ol ol li::before, ul ol li::before, ol ul li::before {
	font-size: 0.95em;
}

/* Small utility */
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}

/* Responsive tweaks */
@media (min-width: 768px) {
	.hero .title { font-size: 2.6rem; }
	.hero { padding: 4.5rem 0; }
}