/* base.css
   Split from the previous shared stylesheet to match the PriLink Digital CSS structure. */

:root {
  --ink: #101820;
  --muted: #5f6f7c;
  --line: #d9e3e9;
  --paper: #ffffff;
  --mist: #f4f8fb;
  --navy: #143f5c;
  --blue: #1d6ea5;
  --teal: #14a38b;
  --gold: #f2b84b;
  --rose: #c95d63;
  --shadow: 0 18px 50px rgba(16, 24, 32, 0.12);
  --media-height: 546px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
