@charset "UTF-8";
/* CSS Document */

		
		
/* ------------------------------
   Root & Reset
-------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #f8f9fa;
  color: #1f2933;
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Slightly tighter gutters on small phones */
@media (max-width: 480px) {
  body {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
/* =========================
   Header & Logo
   ========================= */

.site-header {
  margin-bottom: 2rem;
}

.logo-link {
  display: inline-block;
}

.site-logo {
  width: 200px;
  height: auto;
  display: block;
}
/* ------------------------------
   Layout Container
-------------------------------- */

.container {
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Desktop: 1200px+ viewport */
@media (min-width: 1200px) {
  .container {
    width: 1080px;
  }
}

/* Tablet: 768px–1199px */
@media (min-width: 768px) and (max-width: 1199px) {
  .container {
    width: 728px;
  }
}

/* Mobile: 0–767px */
@media (max-width: 767px) {
  .container {
    width: 345px;
  }
}

/* ------------------------------
   Typography
-------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 900;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}
h3,
h4,
h5,
h6 {
	  font-weight: 600;

}
/* Headings */
h1 {
  font-size: 2.8125rem; /* ~30pt */
  color: #e45b7a;
}

h2 {
  font-size: 1.6875rem; /* ~18pt */
  color: #022a9c;
}

h3 {
  font-size: 1.5rem;
  color: #022a9c;
}

h4,
h5,
h6 {
  font-size: 1.3125rem;
  color: #022a9c;
}

/* Body text */
p,
li {
  font-size: 1.125rem; /* ~12pt */
  margin-bottom: 1rem;
}

/* Lists */
ul {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
}

/* ------------------------------
   Links
-------------------------------- */

a {
  color: #e45b7a;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* ------------------------------
   Navigation
-------------------------------- */

nav {
  margin-bottom: 3rem;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

nav li {
  margin: 0;
}

/* ------------------------------
   Sections
-------------------------------- */

section {
  margin-bottom: 4rem;
}

/* Back to top link */
section a[href="#top"] {
  font-size: 0.75rem;
}

/* ------------------------------
   Responsive Typography Adjustments
-------------------------------- */

/* Tablet */
@media (max-width: 900px) {
  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1rem;
  }

  p,
  li {
    font-size: 0.75rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 0.95rem;
  }

  p,
  li {
    font-size: 0.75rem;
  }
}

.redacted {
	letter-spacing: -2px;
}
