/* Light mode (default) */
:root > * {
  /* Primary brand colour (deep heritage blue) */
  --md-primary-fg-color:        #2b2d60;
  --md-primary-fg-color--light: #4a4d84;
  --md-primary-fg-color--dark:  #1b1d40;

  /* Accent colour (warm yellow) */
  --md-accent-fg-color:              #fbbb11;
  --md-accent-fg-color--transparent: rgba(251, 187, 17, 0.25);
}

/* Dark mode (slate) – same brand colours */
[data-md-color-scheme="slate"] {
  --md-primary-fg-color:        #2b2d60;
  --md-primary-fg-color--light: #4a4d84;
  --md-primary-fg-color--dark:  #1b1d40;

  --md-accent-fg-color:              #fbbb11;
  --md-accent-fg-color--transparent: rgba(251, 187, 17, 0.25);
}

/* H1 */
.md-content h1 {
}

/* H2 */
.md-content h2 {
  margin-top: 0em;
}
/* H3 */
.md-content h3 {
  margin-top: 0em;
}
