@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/source-sans-3-v19-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* source-sans-3-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/source-sans-3-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* source-sans-3-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/source-sans-3-v19-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.font-light {
  font-weight: 300;
}
.font-regular {
  font-weight: 400;
}
.font-bold {
  font-weight: 500;
}

.text-s {
  font-size: 0.75rem;
}
.text-m {
  font-size: 1.25rem;
}
.text-l {
  font-size: 1.5rem;
}
.text-xl {
  font-size: 2.75rem;
}
.text-2xl {
  font-size: 3rem;
}

.line-l {
  line-height: 1.25;
}

.text-center {
  text-align: center;
}

.spacing-bottom-l {
  margin-bottom: 1.25rem;
}

.spacing-bottom-xl {
  margin-bottom: 2.25rem;
}

.spacing-bottom-2xl {
  margin-bottom: 3.125rem;
}

.spacing-top-l {
  margin-top: 2rem;
}

.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
/* Visually hidden: accessible to screen readers, invisible on screen */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* Skip navigation link: hidden until focused by keyboard */
.skip-link {
  background-color: white;
  color: #882c5a;
  font-weight: 500;
  left: 1.25rem;
  padding: 0.5rem 1rem;
  position: absolute;
  top: -100%;
  z-index: 9999;
}
.skip-link:focus {
  top: 1rem;
}

/* Focus indicator: keyboard only, not shown for mouse users */
:focus-visible {
  outline: 2px solid white;
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}

#page-header h1 {
  margin-left: -0.1rem;
  margin-right: -0.1rem;
}

@media (min-width: 768px) {
  .text-2xl {
    font-size: 6.25rem;
  }

  #page-header h1 {
    margin-left: -0.3rem;
    margin-right: -0.3rem;
  }
}

.container {
  margin: 0 1.25rem;
}

.oddly-rounded img {
  border-radius: 1.25rem 1.25rem 1.25rem 0;
}

@media (min-width: 768px) {
  .container > * {
    margin: 0 auto;
    max-width: 40rem;
  }
}

html, body {
  background-color: #882c5a;
  color: white;

  font-family: 'Source Sans 3';
  font-size: 16px;
  font-style: normal;

  letter-spacing: 0.0375rem;
}

.content-section a {
  position: relative;
}
.content-section a::before {
  background-color: rgba(255, 255, 255, 0.5);
  bottom: 0.1rem;
  content: "";
  display: block;
  height: 1px;
  left: 0.3125rem;
  position: absolute;
  width: calc(100% - 0.625rem);
}

.content-section p,
.content-section ul {
  margin-bottom: 3.125rem;
}

.content-section p ~ p.no-spacing {
  margin-top: -3.125rem;
}
.content-section p ~ ul {
  margin-top: -3.125rem;
}
.content-section p ~ footer {
  margin-top: -3.125rem;
}

.content-section ol,
.content-section ul {
  padding: 0.75rem 2rem 0;
}
.content-section ul {
  list-style: square;
}

#contact li a {
  position: relative;
}
#contact li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.0625rem;
  background-color: white;
  bottom: 0.125rem;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
#contact li a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
#contact li a .link-icon {
  aspect-ratio: 1;
  background-color: white;
  display: inline-block;
  height: 1.5rem;
  margin: -0.15rem 0 0;
  padding: 0 0.1875rem;
  vertical-align: middle;
  width: 1.5rem;
}

#contact .link-icon path {
  fill: #882c5a;
}

#site-footer {
  border-top: 1px solid white;
}

#site-footer nav li::before {
  content: " | ";
  display: inline-block;
}

#site-footer nav li:first-child::before {
  display: none;
}

nav li > span {
  position: relative;
}

nav li + li::before {
  content: ">";
  display: inline-block;
  font-size: 1rem;
  margin: 0 0.1rem 0 0.2rem;
}


.email > span {
  display: none;
}