@charset "UTF-8";

/* #region ----- VARIABLES */

:root {
  /* EGP */
  /* --color-brown--pale: hsl(20, 40%, 80%); */
  --color-brown--pale: hsl(20, 25%, 80%);
  --color-brown--light: hsl(20, 25%, 30%);
  --color-brown: hsl(20, 40%, 40%);
  --color-brown--dark: hsl(20, 40%, 20%);
  --color-teal--dark: hsl(191, 50%, 30%);
  --color-teal: hsl(191, 50%, 40%);
  --color-teal--light: hsl(191, 40%, 80%);
  /* Other */
  --color-white: hsl(0, 0%, 100%);
  --color-gray--light: hsl(0, 0%, 95%);
  --color-gray--medium: hsl(0, 0%, 50%);
  --color-gray--dark: hsl(0, 0%, 30%);
  --color-black: hsl(0, 0%, 0%);
  /* fonts */
  --font-serif: "Newsreader", serif;
  --font-sans-serif: "Open Sans", sans-serif;
  --font-monospace: monospace, monospace;
  --font-size-xs: .875rem;
  /* 14 */
  --font-size-base: 1rem;
  /* 16 */
  --font-size-s: 1.125rem;
  /* 18 */
  --font-size-m: 1.25rem;
  /* 20 */
  --font-size-l: 1.5rem;
  /* 24 */
  --font-size-xl: 2rem;
  /* 32 */
  --font-size-xxl: 2.5rem;
  /* 40 */
  --font-size-xxxl: 3rem;
  /* 48 */
  /* sizes */
  --size-1: .0625rem;
  --size-2: .125rem;
  --size-4: .25rem;
  --size-8: .5rem;
  --size-10: .625rem;
  --size-12: .75rem;
  --size-14: .875rem;
  --size-16: 1rem;
  --size-18: 1.125rem;
  --size-20: 1.25rem;
  --size-24: 1.5rem;
  --size-32: 2rem;
  --size-40: 2.5rem;
  --size-48: 3rem;
  --size-56: 3.5rem;
  --size-64: 4rem;
  /* breakpoints */
  --bp-max-xs: 479px;
  --mq-to-xs: 479px;
  --bp-min-xs: 480px;
  /* min-width: 30rem => 480px */
  --mq-from-xs: 480px;
  /* min-width: 30rem => 480px */
  --bp-max-sm: 639px;
  --mq-to-sm: 639px;
  --bp-min-sm: 640px;
  /* (min-width: 40rem) => 640px */
  --mq-from-sm: 640px;
  /* (min-width: 40rem) => 640px */
  --bp-max-md: 767px;
  --mq-to-md: 767px;
  --bp-min-md: 768px;
  /* (min-width: 48rem) => 768px */
  --mq-from-md: 768px;
  /* (min-width: 48rem) => 768px */
  --bp-max-lg: 959px;
  --mq-to-lg: 959px;
  --bp-min-lg: 960px;
  /* (min-width: 60rem) => 960px */
  --mq-from-lg: 960px;
  /* (min-width: 60rem) => 960px */
  --bp-max-xl: 1199px;
  --bp-min-xl: 1200px;
  /* (min-width: 75rem) => 1200px */
  --mq-from-xl: 1200px;
  /* (min-width: 75rem) => 1200px */
  /* flow space */
  --flow-space: 1rem;
}

/* #endregion */

/* #region ----- BASE / RESETS */

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

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

* :focus {
  outline: 3px solid var(--color-white);
  outline-offset: -3px;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  margin: 0;
  border: 0;
  padding: 0;
}

[hidden] {
  display: none;
}

nav ol,
nav ul {
  list-style-position: outside;
  padding: 0;
  list-style: none;
  margin: 0;
}

/* TODO: Move and change outline color */

a {
  color: var(--color-teal--dark);
}

main a:focus {
  outline: 2px solid purple;
  outline-offset: 2px;
}

details:focus,
summary:focus {
  outline: 0;
}

/* Form Resets */

label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

label,
a {
  -webkit-tap-highlight-color: transparent;
  /* For some Androids */
  -webkit-focus-ring-color: rgba(0, 0, 0, 0);
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

button:focus {
  outline: none;
}

/* Change input placeholder color */

::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}

/* Firefox 18- */

:-moz-placeholder {
  color: #999;
  opacity: 1;
}

/* Internet Explorer 10-11 */

:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}

/* Microsoft Edge */

::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}

/* Chrome, Firefox, Opera, Safari 10.1+ */

::-moz-placeholder {
  color: #999;
  opacity: 1;
  /* Firefox */
}

::placeholder {
  color: #999;
  opacity: 1;
  /* Firefox */
}

/* Change autofill color */

input:-internal-autofill-selected,
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 0;
  -webkit-text-fill-color: var(--color-white);
  color: var(--color-white);
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  background-color: transparent !important;
}

/* Remove additional search field UI elements */

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

/* Figure */

figure {
  margin: 0;
}

figcaption {
  font-size: 0.875rem;
}

/* #endregion */

/* #region ----- Accessibility */

/* Screen Reader Only (Accessibility) */

.screen-reader-text,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  color: var(--color-black);
  background-color: white;
}

/* Reduce animation effects */

@media screen and (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* #endregion */

/* #region ----- Layout */

/* Layout spacing */

.l-Section {
  padding: 3rem 1.5rem;
}

.l-Section--inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.l-Grid {
  display: flex;
}

/* component specific adjustments */

.l-Grid__col > h2:first-child {
  margin-top: 0;
  font-size: 1.5rem;
}

.l-Grid__cols .Backgrounder:hover {
  background-color: var(--color-gray--light);
  box-shadow: 0 0 0 1rem var(--color-gray--light);
}

.l-Grid__cols .Backgrounder:hover {
  /* https://tobiasahlin.com/blog/layered-smooth-box-shadows/ */
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.04), 0 4px 2px rgba(0, 0, 0, 0.04), 0 8px 4px rgba(0, 0, 0, 0.04), 0 16px 8px rgba(0, 0, 0, 0.04), 0 32px 16px rgba(0, 0, 0, 0.04);
  /* box-shadow: 0 0 0 .5rem var(--color-gray--light); */
  box-shadow: 0 0 0 0.5rem var(--color-brown--pale);
  background-color: var(--color-white);
}

.l-Grid__cols .Backgrounder__img {
  transform: scale(1);
  transition: transform 0.3s;
}

.l-Grid__cols .Backgrounder:hover .Backgrounder__img {
  transform: scale(1.05);
}

.About.l-Grid__col {
  background-color: var(--color-gray--light);
}

.l-Grid__content {
  padding: 2rem;
}

/* Backgrounders Landing Page */

.backgrounders .Backgrounders__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 1rem;
}

.backgrounders .Backgrounder {
  display: block;
  margin: 0;
}

@media screen and (max-width: 639px) {
  .l-Section {
    padding: 2rem 1rem;
  }

  .l-Grid__cols .l-Grid__col {
    flex-direction: column;
    flex: 1 1 auto;
  }
}

@media screen and (min-width: 640px) {
  .l-Grid__col {
    flex: 1 1 0px;
  }
}

@media screen and (min-width: 980px) {
  /* .l-Grid__cols--2 .l-Grid__col {
      flex: 1 1 0px;
  } */

  .l-Grid__cols .l-Grid__col {
    flex-direction: column;
  }

  .l-Grid__cols .Backgrounder:first-child {
    margin-left: 0;
    /* margin-right: 1rem; */
  }

  .l-Grid__cols .Backgrounder {
    margin-left: 1rem;
  }

  .backgrounders .l-Grid__cols .Backgrounder {
    margin: 0;
  }
}

/* #endregion */

/* #region ----- TYPOGRAPHY / CONTENT */

* ::-moz-selection {
  background: var(--color-teal--dark);
  color: var(--color-white);
}

* ::selection {
  background: var(--color-teal--dark);
  color: var(--color-white);
}

/*  ------------------------------------------------------------------
    SIZING:
    Font sizes as well as spacing and sizing of other layout and visual elements is based on the default font size of 16px. All sizes should be in rems.
    Conversions REM -> PX:
    .0625rem = 1px
    .125rem = 2px
    .25rem = 4px
    .5rem = 8px
    .75rem = 12px
    1rem = 16px
    1.125rem = 18px
    1.25rem = 20px
    1.5rem = 24px
    2rem = 32px
    2.5rem = 40px
    3rem = 48px
    4rem = 64px
    ------------------------------------------------------------------ */

/* #region ----- Headings */

h1,
h1 > strong,
.h1,
h2,
h2 > strong,
.h2,
h3,
h3 > strong,
.h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-brown);
}

h1,
.h1 {
  font-size: 2.5rem;
  line-height: 1;
  /* margin: 3rem 0 2rem; */
  position: relative;
}

h2,
.h2 {
  font-size: 2rem;
  /* line-height: 2.5rem; */
  line-height: 1;
  margin: 3rem 0 2rem;
}

h3,
.h3 {
  font-size: 1.5rem;
  /* line-height: 2.5rem; */
  line-height: 1;
  margin: 3rem 0 1.5rem;
  font-weight: 600;
}

h4,
.h4 {
  font-size: 1.25rem;
  /* line-height: 1.5rem; */
  line-height: 1;
  margin: 2rem 0 1rem;
}

h5,
.h5 {
  font-size: 1.125rem;
  /* line-height: 1.5rem; */
  line-height: 1;
  margin: 2rem 0 1rem;
  font-weight: 400;
}

h6,
.h6 {
  font-size: 1rem;
  margin: 2rem 0 1rem;
}

/* #endregion */

/* #region ----- Paragraphs */

p + p {
  margin: 1.5rem 0 0;
}

/* #endregion */

/* #region ----- Inline */

/* word break element <wbr> for manually indicating word break opportunity https://developer.mozilla.org/en-US/docs/Web/HTML/Element/wbr */

wbr:after {
  content: "​";
}

q {
  quotes: none;
}

small {
  font-size: 0.875em;
}

/* remove default "" since some browsers don't show them | using q changes line-height slightly */

/* highlight */

mark,
.highlight {
  background-color: var(--color-yellow);
  box-shadow: 2px 0 0 0 var(--color-yellow), -2px 0 0 0 var(--color-yellow);
}

/* code samples */

code,
pre {
  font-weight: 700;
  color: var(--color-red);
  font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, "Courier New", Courier, monospace;
  font-size: 1rem;
}

:not(pre) > code {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0.25rem;
  white-space: nowrap;
}

q,
blockquote {
  quotes: "â€œ" "â€";
  /* one pair */
  /* OR */
  quotes: "â€œ" "â€" "â€˜" "â€™";
  /* two pairs */
}

blockquote {
  font: 300 1.25rem var(--font-serif);
  color: #000000;
  margin: 0 0 1.5rem 3rem;
  border-left: 0.5rem solid var(--color-blue);
  padding: 0 1.25rem;
  line-height: 2rem;
  position: relative;
  text-indent: 2rem;
}

blockquote::before {
  content: "‟";
  position: absolute;
  left: -0.5rem;
  top: -2.25rem;
  font: 700 3rem "Open Sans", sans-serif;
  transform: scaleX(-1);
  transform: scaleY(-1);
}

blockquote :nth-last-child(2)::after {
  content: "”";
  font: 700 3rem "Open Sans", sans-serif;
  line-height: 1.5rem;
  position: absolute;
  margin-left: -1.5rem;
}

blockquote p {
  font-family: Newsreader, serif !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;
}

blockquote > cite::before {
  content: "— ";
}

.Article__figure--pullQuote blockquote {
  margin: 0;
  border: 0;
  padding: 0;
  text-indent: 0;
}

.Article__figure--pullQuote blockquote::before {
  content: none;
}

.Article__figure--pullQuote p {
  font-family: "Newsreader", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

@media (min-width: 1200px) and (max-width: 1499px) {
  .Article__figure--pullQuote p {
    font-size: clamp(1rem, 1.7vw, 1.5rem);
  }
}

.Article__figure--pullQuote figcaption {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
}

.Article__figure--pullQuote figcaption:before {
  content: "—";
}

/* #endregion */

/* #endregion */

/* #region ----- SLOGAN */

.Slogan {
  /* background-color: var(--color-black); */
  background-color: #1a434d;
  text-align: center;
}

.Slogan__content {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--color-white);
  margin: 0 auto 1.5rem;
}

.Slogan__content .Link--button {
  white-space: nowrap;
  padding: 1rem 2rem;
}

/* #endregion */

/* #region ----- SlideShow */

/* Animated Banner Images */

.SlideShow {
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.SlideShow__figure {
  opacity: 0;
  animation-name: xfade;
  /* animation-name: kenburns-top; */
  animation-duration: 80s;
  animation-iteration-count: infinite;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  max-width: 100%;
}

.SlideShow__image {
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  height: 100%;
  float: none;
  margin: auto -1px;
  /* Needed ??? */
  width: calc(100% + 1px);
}

.SlideShow__figure:nth-child(2) {
  animation-delay: 0s;
}

.SlideShow__figure:nth-child(3) {
  animation-delay: 8s;
}

.SlideShow__figure:nth-child(4) {
  animation-delay: 16s;
}

.SlideShow__figure:nth-child(5) {
  animation-delay: 24s;
}

.SlideShow__figure:nth-child(6) {
  animation-delay: 32s;
}

.SlideShow__figure:nth-child(7) {
  animation-delay: 40s;
}

.SlideShow__figure:nth-child(8) {
  animation-delay: 48s;
}

.SlideShow__figure:nth-child(9) {
  animation-delay: 56s;
}

.SlideShow__figure:nth-child(10) {
  animation-delay: 64s;
}

.SlideShow__figure:nth-child(11) {
  animation-delay: 72s;
}

/* Slideshow Image Animation */

@keyframes xfade {
  /* 1.25% = 1 second */

  0% {
    opacity: 0;
  }

  2.5% {
    opacity: 1;
  }

  10% {
    opacity: 1;
  }

  12.5% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.SlideShow__figcaption {
  position: absolute;
  left: -1px;
  bottom: 6.5rem;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.8);
  font-size: 0.875em;
  padding: 1rem;
  line-height: 1;
}

@media (max-width: 979px) {
  .SlideShow__figcaption {
    bottom: 1rem;
  }
}

/* Progress Bar */

.SlideShow__progressBar {
  position: absolute;
  top: 0;
  width: 100%;
  height: 5px;
  background: var(--color-white);
  opacity: 0.25;
  z-index: 1000;
  animation: fullexpand 8s ease-out infinite;
  animation: fullexpand 8s linear infinite;
}

/* Progress Bar Animation */

@keyframes fullexpand {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

/* #endregion */

/* #region ----- Slideshow Controls */

.SlideShow__toggle {
  position: absolute;
  display: flex;
  bottom: 6.5rem;
  right: 1.5rem;
  z-index: 2;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  /* box-shadow: 0 0 3px -1px var(--color-white); */
  list-style: none;
}

.SlideShow__toggle::marker {
  display: none;
}

.SlideShow__toggle::-webkit-details-marker {
  display: none;
}

.SlideShow__toggle:focus {
  background-color: #000000;
  box-shadow: 0 0 0 3px white;
}

/* NOTE: Controls on content pages may not be rendered in HTML then this CSS can be removed */

.SiteHeader--landingPage .SlideShow__toggle {
  display: none;
}

.SlideShow__toggle .icon {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  right: 0;
  bottom: 0;
  border: 0;
  padding: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s;
}

.SlideShow__toggle:hover .icon {
  background-color: #000000;
}

.SlideShow__controls[open] ~ .SlideShow__figure,
.SlideShow__controls[open] ~ .SlideShow__progressBar {
  animation-play-state: paused;
}

.SlideShow__controls:not([open]) ~ .SlideShow__figure,
.SlideShow__controls:not([open]) ~ .SlideShow__progressBar {
  animation-play-state: running;
}

.SlideShow__controls[open] .SlideShow__togglePause,
.SlideShow__controls:not([open]) .SlideShow__togglePlay {
  display: none;
}

.SlideShow__controls:not([open]) .SlideShow__togglePause,
.SlideShow__controls[open] .SlideShow__togglePlay {
  display: inline-block;
}

/* #endregion */

/* #region ----- Icons local */

.icon {
  /* border-radius: 0.25rem; */
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  display: inline-block;
  /* background-color: #555; */
  width: 3rem;
  height: 3rem;
  position: relative;
}

.-Twitter .icon,
.-Facebook .icon {
  border-radius: 0;
  --size: 2.5rem;
  width: var(--size);
  height: var(--size);
  color: rgba(255, 255, 255, 0.25);
}

.-Twitter:hover .icon,
.-Twitter:focus .icon,
.-Facebook:hover .icon,
.-Facebook:focus .icon {
  color: rgba(255, 255, 255, 0.5);
}

.-Twitter .icon::before,
.-Facebook .icon::before {
  content: none;
}

.icon::before,
.icon::after {
  content: "";
  height: 0.125rem;
  width: 1rem;
  display: block;
  background-color: var(--color-white);
  position: absolute;
  left: 1rem;
  top: 1rem;
}

.icon:hover {
  cursor: pointer;
  /* background-color: #000; */
}

/* Provide focus alternative */

.icon:focus {
  outline: none;
  /*   box-shadow: 0 0 0 2px #007fac; */
  /*   box-shadow: inset 0 0 0 2px #007fac; */
  /*   box-shadow: 0 0 0 1px hsl(196, 100%, 34%), 0 0 0 4px hsla(196, 100%, 34%, .25); */
  /* box-shadow  : 0 0 0 1px hsl(196, 100%, 34%), 0 0 0 4px hsla(196, 100%, 34%, 0.25); */
  box-shadow: inset 0 0 0 3px var(--color-white);
}

/* Play icon */

/* ??? */

.icon-play::before,
.icon-play::after {
  content: none;
}

.icon-play span {
  display: block;
  width: 0;
  line-height: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5rem 0 0.5rem 1rem;
  border-color: transparent transparent transparent #aaaaaa;
  left: 1.125rem;
  top: 1rem;
  position: relative;
  transition: border-color 0.3s;
}

.icon-play:hover span,
.icon-play:focus span,
.icon-play:active span {
  border-left-color: var(--color-white);
}

/* Pause icon */

.icon-pause::before,
.icon-pause::after {
  content: "";
  width: 0.25rem;
  height: 1rem;
  position: absolute;
  background-color: #aaaaaa;
  left: 1rem;
  transition: background-color 0.3s;
}

.icon-pause::after {
  left: 1.75rem;
}

.icon-pause:hover::before,
.icon-pause:focus::before,
.icon-pause:hover::after,
.icon-pause:focus::after {
  background-color: var(--color-white);
}

/* #endregion */

/* #region ----- Link Button */

.Button,
.Button--inverse,
.Link--button,
.Link--buttonInverse,
.Link--more,
.Link--moreIverse {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  line-height: 1;
  text-decoration: none;
  transition: all 0.2s;
}

.Button,
.Button--inverse:hover,
.Button--inverse:focus,
.Link--button,
.Link--buttonInverse:hover,
.Link--buttonInverse:focus {
  background-color: var(--color-teal--dark);
  color: var(--color-white);
  outline: 1px solid var(--color-teal--dark);
}

.Button:hover,
.Button:focus,
.Button--inverse,
.Link--button:hover,
.Link--button:focus,
.Link--buttonInverse {
  background-color: var(--color-white);
  color: var(--color-teal--dark);
  outline: 1px solid var(--color-teal--light);
  outline-offset: 0 !important;
}

.Link--more,
.Link--moreInverse:hover,
.Link--moreInverse:focus {
  padding-right: 3rem;
  background-color: var(--color-white);
  color: var(--color-teal--dark);
  outline: 1px solid var(--color-teal--light);
}

.Link--moreInverse::after,
.Link--more::after {
  content: " ›";
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1rem;
  position: absolute;
  top: 0.875rem;
  letter-spacing: -2px;
  right: 2rem;
  height: 1rem;
  width: 1rem;
  transition: 0.2s background-color ease-in-out, 0.3s right 0.1s;
}

.Link--moreInverse,
.Link--more:hover,
.Link--more:focus {
  background-color: var(--color-teal--dark);
  color: var(--color-white);
  outline-color: var(--color-teal--dark);
}

.Link--moreInverse:hover::after,
.Link--moreInverse:focus::after,
.Link--more:hover::after,
.Link--more:focus::after {
  content: " ››";
  right: 1.5rem;
}

/* Short button */

.-short {
  padding: 1rem;
}

/* Ghost button */

.-transparent {
  background-color: transparent;
  outline-color: currentColor;
}

/* #endregion */

/* #region ----- External links */

/* modifier for buttons */

.external::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0.25rem;
  top: 0.25rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.5rem 0.5rem 0;
  border-color: transparent currentColor transparent transparent;
}

.external:hover::after,
.external:focus::after {
  right: 0.125rem;
  top: 0.125rem;
}

/* applies to inline text links */

a[rel=external],
a[target=_blank] {
  position: relative;
  line-height: var(--size-24);
}

a[rel=external]::after,
a[target=_blank]::after {
  content: "";
  position: relative;
  display: inline-block;
  right: 1px;
  top: -12px;
  width: 0;
  opacity: 0.35;
  height: 0;
  border-style: solid;
  border-width: 0 6px 6px 0;
  border-color: rgba(0, 0, 0, 0) currentColor rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}

a[rel=external]:hover::after,
a[target=_blank]:hover::after {
  right: 0;
  top: -13px;
  opacity: 1;
  border-right-color: currentcolor;
}

/* external link tooltip */

a[rel=external]:hover .sr-only,
a[target=_blank]:hover .sr-only {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  bottom: 120%;
  border-radius: 1rem;
  display: block;
  width: auto;
  height: auto;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  overflow: visible;
  clip: auto;
  border: 0;
  background-color: var(--color-black);
  color: var(--color-white);
  transition: bottom 0.3s;
}

a[rel=external] .sr-only::after,
a[target=_blank] .sr-only::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  opacity: 1;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid var(--color-black);
}

/* #endregion */

/* #region ----- Skip Link(s) */

.link--skip {
  background-color: var(--color-black);
  padding: 0.75rem 1.25rem;
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 1000;
  transition: top 0.5s ease-out;
  color: var(--color-white);
  text-decoration: none;
}

.link--skip:focus {
  top: 0;
  transition: top 0.2s ease-out;
}

/* #endregion */

/* #region ----- Form Subscribe */

.Form--subscribe {
  display: block;
  border: 1px solid #ddd;
}

.Form--subscribe:focus-within {
  border: 1px solid var(--color-teal--dark);
  outline: 4px solid var(--color-teal--light);
  background-color: black;
}

.Form--subscribe:focus-within button {
  outline: 1px solid var(--color-teal--dark);
}

.Form__group {
  display: flex;
  width: 100%;
}

.Form__group > span:first-child {
  flex: 1;
}

.Form__input--email,
.Form__input--email:focus {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0 0.5rem;
  outline: none;
  font-size: 1rem;
  font-family: inherit;
}

.Form__inputHint {
  display: block;
  font-size: 1rem;
  color: var(--color-gray--dark);
  opacity: 0;
  padding: 0 0 0 0.5rem;
  margin-top: -2rem;
  transition: all 0.3s;
  position: absolute;
  z-index: -1;
}

input:not(:-moz-placeholder-shown) ~ .Form__inputHint {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  z-index: 1;
  opacity: 1;
}

input:not(:placeholder-shown) ~ .Form__inputHint {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  z-index: 1;
  opacity: 1;
}

/* #endregion */

/* #region ----- Site Search */

.SiteSearch {
  position: absolute;
  bottom: 8rem;
  left: 0.5rem;
  right: 0.5rem;
  z-index: 1;
  max-width: 600px;
  margin: auto;
}

.SiteSearch__form {
  display: flex;
  position: relative;
  width: 100%;
  border: 1px solid var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0 0 0 4px var(--color-white), 0 2px 10px #000;
  background-color: var(--color-white);
  overflow: hidden;
  transition: all 0.3s;
}

.SiteSearch__form:hover {
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.SiteSearch__form:focus-within {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.5), 0 2px 10px #000;
  border: 1px solid transparent;
  background-color: #000000;
}

.SiteSearch__form *:focus {
  outline: none;
}

/* TODO: Remove ??? */

.SiteSearch__label #error {
  position: static;
  visibility: visible;
  overflow: visible;
  clip: unset;
  width: auto;
  height: auto;
}

.SiteSearch__input {
  border-radius: 0.5rem 0 0 0.5rem;
  border: 0;
  width: 100%;
  background-color: var(--color-white);
  box-sizing: border-box;
  /* color: hsl(215, 28%, 17%); */
  display: block;
  cursor: text;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0 0 0 0.5rem;
  height: 3rem;
  font-family: inherit;
}

.SiteSearch__button {
  padding: 0.5rem;
  border: 0;
  font-size: 1rem;
  line-height: 1.5;
  background-color: var(--color-gray--light);
}

.SiteSearch__button:hover,
.SiteSearch__button:focus {
  background-color: var(--color-black);
  transition: all 0.3s;
}

.SiteSearch__button svg {
  display: block;
  box-sizing: border-box;
  /* color: hsl(220, 9%, 46%); */
  color: var(--color-gray--medium);
  width: 2rem;
  height: 2rem;
}

.SiteSearch__button:hover svg,
.SiteSearch__button:focus svg {
  color: var(--color-white);
}

/* #endregion */

/* #region ----- Main Nav */

.MainNav {
  background-color: rgba(71, 44, 31, 0.8);
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 101;
}

.MainNav.l-Section {
  padding: 1rem 0;
}

.MainNav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  list-style: none;
  padding: 0;
}

.MainNav__item {
  flex: 1 0 0px;
}

.MainNav__link {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  display: block;
  position: relative;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  background-color: transparent;
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  /* text-transform: uppercase; */
  transition: background-color 0.5s;
  /* Main Nav Text Crop Adjustments */
  padding: 1rem;
  line-height: 1.5rem;
  width: 100%;
}

.MainNav__link::before,
.MainNav__link::after {
  all: unset;
  content: "";
  display: block;
  width: 0;
  height: 0;
}

.MainNav__link::before {
  margin-bottom: -0.05em;
}

.MainNav__link::after {
  margin-top: -0.25em;
}

.MainNav__button--active,
.MainNav__link:hover,
.MainNav__link:focus {
  outline: 3px solid var(--color-white);
  outline-offset: 2px;
  outline-offset: -1px;
  background-color: rgba(0, 0, 0, 0.5);
}

/* dropdown arrow indicator */

.MainNav__button span::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  opacity: 0.5;
  border-left: 0.75rem solid transparent;
  border-right: 0.75rem solid transparent;
  border-top: 0.75rem solid var(--color-white);
  transition: bottom 0.3s, opacity 0.3s;
}

.MainNav__button:hover span::after,
.MainNav__button:focus span::after,
.MainNav__button--active span::after {
  opacity: 1;
  bottom: -0.75rem;
}

/* #endregion */

/* #region ----- Mobile Menu */

/* Open/Close Hamburger icon */

.Toggle--mobileMenu,
.mmenu-icon {
  display: block;
  overflow: hidden;
  width: 3rem;
  height: 3rem;
  text-align: center;
  /* position fixed icon */
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 99;
}

/* Mobile menu */

.MobileMenu__container,
.mobile-menu-container {
  overflow: hidden;
  width: 320px;
  position: fixed;
  right: 1.5rem;
  top: 4.5rem;
}

@media (max-width: 480px) {
  /* Make mobile menu almost full screen width on small devices */

  .MobileMenu__container {
    width: calc(100vw - var(--scrollbar-width) - 3rem);
  }
}

.MobileMenu,
.mobile-menu {
  z-index: 9999;
  overflow: hidden;
  width: 100%;
  background-color: var(--color-brown--dark);
  max-height: calc(100vh - 4.5rem);
  overflow-y: scroll;
  overscroll-behavior: contain;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
}

.MobileMenu::-webkit-scrollbar {
  /* WebKit */
  -webkit-appearance: none;
  width: 0;
  height: 0;
}

.MobileMenu__list,
.mobile-menu ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.MobileMenu__item,
.SubMenu__item,
.mobile-menu ul li {
  position: relative;
  visibility: visible;
  float: none;
  display: block;
  min-width: 0;
  overflow: hidden;
}

.SubMenu__item {
  border-top: 0;
  position: static;
}

.MobileMenu .MobileMenu__link,
.MobileMenu__button,
.mmenu-expand {
  line-height: 16px;
  display: block;
  margin: 0;
  padding: 1rem;
  text-align: left;
  text-decoration: none;
  min-height: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  width: 100%;
  background-color: transparent;
  outline: 0;
}

.SubMenu__list,
.MainNav__subMenu {
  position: absolute;
  width: calc(100vw - 17px);
  width: calc(100vw - var(--scrollbar-width));
  max-width: 1200px;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 1rem);
  background-color: var(--color-brown--dark);
  box-shadow: 0 0 0 1px var(--color-brown--dark);
}

.menuparent .SubMenu__list {
  position: static;
  width: 100%;
  transform: none;
  background-color: rgba(0, 0, 0, 0.15);
}

.SubMenu__item {
  display: inline-flex;
}

.SubMenu__button {
  padding: 1rem;
  white-space: nowrap;
  color: var(--color-white);
  font-size: 1rem;
  margin: 0 2rem;
  background-color: var(--color-brown--dark);
}

.menuparent .SubMenu__button {
  margin: 0;
  background-color: transparent;
}

.SubMenu__button:hover,
.SubMenu__button:focus {
  box-shadow: inset 0 -4px 0 -1px var(--color-white), inset 0 4px 0 0 var(--color-brown--dark);
}

.menuparent .SubMenu__button:hover,
.menuparent .SubMenu__button:focus {
  box-shadow: none;
  color: var(--color-white);
}

.SubMenu__button--open {
  box-shadow: inset 0 -4px 0 -1px var(--color-white);
}

.MobileMenu .SubMenu__button--open {
  box-shadow: none;
}

.SubMenu__button--active {
  box-shadow: inset 0 -4px 0 -1px var(--color-white), inset 0 4px 0 0 var(--color-brown--dark);
  background-color: rgba(0, 0, 0, 0.15);
}

.menuparent .SubMenu__button--active {
  box-shadow: none;
}

.SubMenu__menu {
  -moz-columns: 4;
       columns: 4;
  -moz-column-fill: balance;
       column-fill: balance;
  -moz-column-width: clamp(200px, 35vw, 300px);
       column-width: clamp(200px, 35vw, 300px);
  position: absolute;
  width: calc(100vw - 17px);
  width: calc(100vw - var(--scrollbar-width));
  max-width: 1200px;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background-color: var(--color-brown--dark);
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.SubMenu__list {
  box-shadow: 2px 0 0 0 var(--color-brown--dark), -2px 0 0 0 var(--color-brown--dark);
}

.SubMenu__menu {
  box-shadow: 2px 0 0 0 #40281c, -2px 0 0 0 #40281c, 0 2px 0 0 #40281c, 0 4px 8px 0px rgba(0, 0, 0, 0.5);
}

.menuparent .SubMenu__menu {
  -moz-columns: 1;
       columns: 1;
  position: static;
  width: 100%;
  transform: none;
  background-color: transparent;
  text-align: left;
  padding: 0;
  border: 0;
}

.SubMenu__menuItem {
  text-align: left;
}

.SubMenu__menuLink {
  color: var(--color-white);
  padding: 0.25rem 0;
  display: inline-block;
  outline-offset: 2px;
  text-decoration: none;
}

.SubMenu__menuLink--active,
.SubMenu__menuLink:hover,
.SubMenu__menuLink:focus {
  text-decoration: none;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 8px 0 0 0 rgba(0, 0, 0, 0.2), -8px 0 0 0 rgba(0, 0, 0, 0.2);
  outline: none;
}

.mobile-menu li .mmenu-expand {
  line-height: 50px;
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  display: inline-block;
  overflow: hidden;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  font-family: monospace, monospace;
}

.mobile-menu .mmenu-expand {
  position: absolute;
  text-align: center;
  border: none !important;
}

.mobile-menu .mmenu-expand:hover,
.mobile-menu .mmenu-expand:focus {
  background-color: rgba(0, 0, 0, 0.3);
}

.MobileMenu .hyphen {
  padding-left: 2rem;
  position: relative;
}

.SubMenu__menu .hyphen {
  padding-left: 2.75rem;
}

.MobileMenu .hyphen:before {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 0.5rem;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.3);
  /* hyphen color */
}

.SubMenu__menu .hyphen::before {
  left: 1rem;
  width: 1rem;
}

/* Theming ----------------------------------------------------- */

.mmenu-icon {
  transition: background-color 0.5s;
  background-color: rgba(0, 0, 0, 0.5);
}

.mmenu-icon:hover,
.mmenu-icon:focus {
  background-color: var(--color-black);
}

.mmenu-icon:focus {
  outline: 3px solid var(--color-white);
}

.MobileMenu__item,
.mobile-menu .menuparent li {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  /* mobile menu borders */
}

.MobileMenu__button,
.MobileMenu__link,
.mobile-menu ul li a {
  font-size: 1rem;
  transition: background-color 0.5s;
  color: var(--color-white);
  background-color: transparent;
  display: block;
  padding: 1rem;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a:focus {
  color: var(--color-white);
  outline: none;
}

.mobile-menu .mmenu-expand {
  background-color: rgba(0, 0, 0, 0.1);
  color: var(--color-white);
}

.mobile-menu .mmenu-expand:hover,
.mobile-menu .mmenu-expand:focus {
  outline: none;
}

x.mobile-menu .mmenu-expand:focus {
  outline: 3px solid var(--color-white);
  outline-offset: -3px;
}

/* top level */

.MobileMenu__button:hover,
.MobileMenu__button:focus,
.MobileMenu__link:hover,
.MobileMenu__link:focus,
.mobile-menu > ul > .menuparent > a:hover,
.mobile-menu > ul > .menuparent:focus-within > a,
.mobile-menu > ul > .menuparent > ul > li > a:hover,
.mobile-menu > ul > .menuparent > ul > li > a:focus,
.mobile-menu > ul > .menuparent > button:hover,
.mobile-menu > ul > .menuparent:focus-within > button,
.mobile-menu > ul > .menuparent > ul > li > button:hover,
.mobile-menu > ul > .menuparent > ul > li > button:focus {
  color: var(--color-white);
  background-color: rgba(0, 0, 0, 0.2);
}

.active-trail .active {
  background-color: #000000;
  color: var(--color-white);
}

/* second level focus */

.mobile-menu > ul > .menuparent--open .menuparent--open {
  background-color: rgba(0, 0, 0, 0.2);
}

.mobile-menu > ul > .menuparent--open .menuparent--open a:hover,
.mobile-menu > ul > .menuparent--open .menuparent--open a:focus {
  background-color: rgba(0, 0, 0, 0.2);
}

.mmenu-icon:hover .menu-toggle_icon_bar,
.mmenu-icon:focus .menu-toggle_icon_bar {
  background-color: var(--color-white);
}

.menu-toggle_icon_bar {
  position: relative;
  top: 0;
  display: block;
  height: 0.125rem;
  margin: 0.375rem 0.75rem;
  transition: top 0.3s 0.3s, transform 0.3s;
  transform-origin: center center;
  opacity: 1;
  background-color: #aaaaaa;
}

.mmenu-close {
  background-color: #000000;
}

.mmenu-close .menu-toggle_icon_bar {
  background-color: var(--color-white);
}

.mmenu-close .menu-toggle_icon_bar:nth-child(2) {
  opacity: 0;
}

.mmenu-close .menu-toggle_icon_bar:nth-child(1) {
  /*   top: 16px; */
  top: 8px;
  transition: top 0.3s, transform 0.3s 0.3s;
  transform: rotate(45deg);
  transform-origin: center center;
}

.mmenu-close .menu-toggle_icon_bar:nth-child(3) {
  top: -8px;
  transition: top 0.3s, transform 0.3s 0.3s;
  transform: rotate(-45deg);
  transform-origin: center center;
}

/* #endregion */

/* #region ----- Breadcrumb Nav */

.Breadcrumbs.l-Section {
  padding-top: 1.5rem;
  /* padding-bottom: 0; */
  padding-bottom: 1.5rem;
  /* background-color: var(--color-brown--dark); */
  background-color: var(--color-white);
  color: var(--color-brown);
  position: relative;
  z-index: 1;
}

.Breadcrumbs__item {
  display: inline;
}

.Breadcrumbs__item::after {
  content: " / ";
}

.Breadcrumbs__item--last:after,
.Breadcrumbs__item:last-child:after {
  content: "";
}

.Breadcrumbs__link {
  font-weight: 400;
  color: var(--color-brown);
  text-decoration-color: var(--color-brown);
  white-space: nowrap;
}

.Breadcrumbs__link:hover,
.Breadcrumbs__link:focus {
  color: var(--color-brown);
  text-decoration-color: transparent;
}

.Breadcrumbs__link:focus {
  outline-offset: 3px;
  outline-color: var(--color-white);
}

.TopicNav + .SiteMainContent > .l-Section,
.Breadcrumbs + .SiteMainContent > .l-Section {
  padding-top: 0;
}

/* #endregion */

/* #region ----- Utility Nav */

.UtilityNav {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 1000;
}

.UtilityNav__list {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0;
  /* collapse whitespace */
}

.UtilityNav__item {
  display: inline-block;
  min-width: 3rem;
}

.UtilityNav__item + .UtilityNav__item {
  margin-left: 0.125rem;
}

.UtilityNav__link {
  position: relative;
  display: block;
  padding: 1rem;
  line-height: 1rem;
  font-size: 1rem;
  min-height: 48px;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.5);
  color: #bbbbbb;
  transition: all 0.3s;
}

.UtilityNav__link--donate {
  padding-right: 2rem;
  color: var(--color-white);
  background-color: var(--color-teal--dark);
}

.UtilityNav__link--donate svg {
  display: inline-block;
  position: absolute;
  transform: translateX(0.25rem);
}

.UtilityNav__link:hover,
.UtilityNav__link:focus,
.UtilityNav__link:active {
  background-color: black;
  color: var(--color-white);
}

/* #endregion */

/* #region ----- In-Page/Topic Nav */

.TopicNav {
  position: sticky;
  top: 0;
}

.TopicNav__link {
  color: var(--color-teal--dark);
  font-weight: 400;
  font-size: 1.125rem;
  display: block;
  font-family: Newsreader, serif;
  text-decoration: none;
  line-height: 1.5rem;
  padding: 0.75rem 2rem 0.75rem 0;
  transition: padding 0.3s;
  position: relative;
  z-index: 1;
}

.TopicNav__link:hover,
.TopicNav__link:focus {
  padding-right: 1.75rem;
  padding-left: 0.25rem;
}

.TopicNav__link--active {
  color: var(--color-brown);
  font-weight: 600;
}

.TopicNav__link--active::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  height: 100%;
  width: 3px;
  display: inline-block;
  background-color: var(--color-brown);
  z-index: 1;
}

@media (max-width: 1199px) {
  .TopicNav {
    background: var(--color-gray--light);
    width: 100%;
    max-width: 300px;
    left: 300px;
    top: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 1px 1px 0 var(--color-white), 1px 0 1px 0 var(--color-white), 0 -1px 1px 0 var(--color-white);
  }

  .TopicNav::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #dedede;
    left: 0;
    visibility: hidden;
  }

  .open .TopicNav::before {
    visibility: visible;
  }

  .TopicNav__toggle {
    z-index: 1;
    padding: 1rem;
    position: absolute;
    left: 100%;
    border-radius: 0 0.5rem 0.5rem 0;
    background-color: var(--color-gray--light);
    border-left: 1px solid #ddd;
    visibility: visible;
    width: 3rem;
    height: 3rem;
    box-shadow: 0 1px 0 1px var(--color-white), 1px 0 0 1px var(--color-white), 0 -1px 0 1px var(--color-white);
    color: #000;
    transition: transform 0 5s;
  }

  .TopicNav__toggle:hover,
.TopicNav__toggle:focus {
    background-color: #e6e6e6;
  }

  .TopicNav__toggle[aria-expanded=true] svg {
    transform: rotate(180deg);
  }

  .TopicNav__list {
    transition: visibility 0s 0.1s;
    visibility: hidden;
  }

  .Article__aside.open .TopicNav__list {
    visibility: visible;
  }

  .TopicNav__link {
    padding-left: 0;
    padding-right: 1.75rem;
    white-space: nowrap;
    text-align: right;
  }

  .TopicNav__link:hover,
.TopicNav__link:focus {
    padding-right: 1.5rem;
    padding-left: 0.25rem;
  }

  .TopicNav__link--active::before {
    content: "";
    position: absolute;
    display: inline-block;
    right: -1px;
    height: 100%;
    width: 3px;
    background-color: var(--color-brown);
    top: 0;
    z-index: 1;
  }
}

@media (min-width: 1200px) {
  .TopicNav__toggle {
    display: none;
  }
}

/* Topic Nav target focus animation */

main :target,
main h1[id],
main .h1[id],
main h2[id],
main .h2[id],
main h3[id],
main .h3[id],
main h4[id],
main .h4[id],
main h5[id],
main .h5[id],
main h6[id],
main .h6[id] {
  outline: none;
}

main :target:focus {
  outline: none;
  width: auto;
}

:target {
  animation: highlight 2s ease;
}

@keyframes highlight {
  from {
    background: yellow;
  }

  to {
    background: transparent;
  }
}

/* #endregion */

/* #region ----- Nav Link Grid
-------------------------------------- */

.LinkGrid__nav {
  position: relative;
  width: 100%;
  min-height: 50vh;
  display: flex;
  flex-direction: row;
  flex: 1;
  flex-wrap: wrap;
  background-repeat: no-repeat;
  background-image: url(https://images.unsplash.com/photo-1452421822248-d4c2b47f0c81?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1074&q=80);
  background-size: cover;
  background-position: center;
}

.LinkGrid__link {
  flex-grow: 1;
  flex-basis: 33%;
  min-width: 200px;
  /*   height: 250px; */
  align-items: stretch;
  position: relative;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease-out, padding 0.5s;
  /*   box-shadow: 0 0 0 2px hsla(0, 0%, 100%, 1); */
  /*   outline: 2px solid hsla(0, 0%, 100%, .5); */
  /*   border: 3px solid hsla(0, 0%, 100%, .5); */
}

.LinkGrid__label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  text-align: left;
  padding: 1.5rem;
  z-index: 2;
  position: relative;
  text-transform: uppercase;
  color: var(--color-white);
  font-size: 1.25rem;
  letter-spacing: 2px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
  /*   background-color: hsla(0, 0%, 0%, 0.25); */
  /*   transition: background-color 0.3s ease-out, padding 0.5s; */
}

.LinkGrid__link:hover,
.LinkGrid__link:focus {
  background-color: rgba(0, 0, 0, 0.6);
}

.LinkGrid__label:after {
  content: "  ›";
  /*  \027E9 &#8250; &rsaquo; */
  position: relative;
  left: 0;
  top: -2px;
  transition: left 0.5s ease-out;
  width: 2rem;
  height: 1rem;
  line-height: 0;
  font-size: 2rem;
  letter-spacing: -4px;
}

.LinkGrid__link:hover .LinkGrid__label::after,
.LinkGrid__link:focus .LinkGrid__label::after {
  content: "  ››";
  left: 1rem;
}

/* #region ----- SITE HEADER -- Homepage */

.SiteHeader {
  position: relative;
  height: 640px;
  max-height: 640px;
  transition: background-image 2s ease-in-out 0.2s;
  background-color: #000;
  background-image: url(/wp-content/uploads/2014/02/8-election-day3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* dark gradient overlay to increase logo and text contrast */

.SiteHeader::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

@media (max-width: 639px) {
  /* .SiteHeader {
      max-height: 100vh;
  } */
}

/* #endregion */

/* #region ----- Hero */

.Hero {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 10rem auto 0;
  width: 60%;
}

.Hero__title {
  font-size: 5rem;
  line-height: 1;
  color: var(--color-white);
  font-weight: 800;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: font-size 0.3s;
}

/* #endregion */

/* #region ----- Site Branding / Logo */

/* SiteHeader - Branding */

.SiteHeader__branding {
  position: relative;
  margin: 0;
  padding: 1.5rem;
  overflow: hidden;
  display: inline-block;
  line-height: 0;
  z-index: 1;
}

.SiteHeader__siteName {
  display: block;
  color: var(--color-white);
  opacity: 1;
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
  font-family: Newsreader, sans-serif;
  text-decoration: none;
  position: relative;
  top: 0.125rem;
  text-shadow: 0 1px 1px #000000;
  white-space: nowrap;
}

.SiteHeader__siteName:focus {
  outline-offset: 1rem;
}

/* "The" and "of" */

.SiteHeader__siteName > small {
  font-size: 0.75em;
  vertical-align: middle;
  font-weight: 300;
}

.SiteHeader__siteName:hover > small,
.SiteHeader__siteName:focus > small {
  text-decoration: none;
}

.SiteHeader__siteName > br + small {
  margin-left: 3rem;
}

/* "Encyclopedia" and "Greater Philadelphia" */

.SiteHeader__siteName:hover > span,
.SiteHeader__siteName:focus > span {
  text-decoration: underline;
  color: var(--color-white);
}

/* #endregion */

/* #region ----- FOOTER */

.SiteFooter {
  background-color: #262626;
  border-top: 0.5rem solid rgba(0, 0, 0, 0.2);
}

.SiteFooter__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.SiteFooter__logo,
.SiteFooter__social {
  flex: 0 0 25%;
}

.SiteFooter__siteName {
  opacity: 0.5;
  text-shadow: none;
  font-size: 1.5rem;
  display: inline-block;
}

.SiteFooter__siteName > br + small {
  margin-left: 1rem;
}

.SiteFooter__siteName:hover,
.SiteFooter__siteName:focus {
  opacity: 1;
}

/* Claim / declaration / definition / value statement */

.SiteFooter__claim {
  flex: 1 1 auto;
  text-align: center;
  margin-left: 2rem;
  font-weight: 300;
  margin-right: 2rem;
  color: var(--color-white);
  opacity: 0.5;
}

/* Social Links */

.SiteFooter__social {
  display: flex;
  justify-content: flex-end;
}

.Link--social {
  --size: 2.5rem;
  margin: 0 0.5rem;
  width: var(--size);
  height: var(--size);
  overflow: hidden;
  display: inline-block;
}

.Link--social:focus {
  outline-offset: 2px;
}

/* Footer Nav */

.FooterNav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.FooterNav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.FooterNav__link {
  padding: 0.5rem 1rem;
  display: inline-block;
  color: var(--color-white);
  opacity: 0.5;
  text-decoration: none;
}

.FooterNav__link:hover,
.FooterNav__link:focus {
  text-decoration: none;
  opacity: 1;
}

/* Site Footer Copyright */

.SiteFooter__copyright {
  text-align: center;
  margin-left: auto;
  font-weight: 300;
}

.SiteFooter__copyright small {
  color: var(--color-white);
  opacity: 0.5;
}

.Copyright__credit {
  text-align: center;
  color: var(--color-white);
  margin-top: 1rem;
}

.Copyright__credit > small {
  display: block;
}

.Copyright__link {
  display: inline-block;
  max-width: 200px;
  margin: 0.5rem;
}

.Copyright__logo {
  max-width: 100%;
  opacity: 0.5;
}

.Copyright__link:hover img,
.Copyright__link:focus img {
  opacity: 1;
}

/* JOIN LISTSERV */

.joinListserve {
  padding: 1rem 0.5rem;
  width: 100%;
  font-size: 1rem;
  border: 0;
  margin-bottom: 0.5rem;
}

@media (max-width: 979px) {
  .SiteFooter__row,
.SiteFooter__social {
    text-align: center;
    display: block;
  }
}

/* #endregion */

/* #region ========== Hero -- homepage */

.SiteHeader--homepage .Hero {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 60%;
  margin: 5rem auto 0;
}

.SiteHeader--homepage .Hero__title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: font-size 0.3s;
}

@media (max-width: 639px) {
  .SiteHeader--homepage .Hero {
    width: auto;
  }

  .SiteHeader--homepage .Hero__title {
    font-size: 1.5rem;
  }
}

/* #endregion */

.SiteContent.l-Section {
  padding-top: 0rem;
}

.SiteContent > .l-Section--inner {
  display: flex;
  flex-wrap: wrap;
}

.SiteContent header {
  width: 100%;
}

/* #region ----- Sidebar ----------------------------------------------------------- */

.Blog + aside h2 {
  margin-top: 0;
}

.Blog + aside {
  width: 300px;
}

.Blog + aside section {
  background: var(--color-gray--light);
  padding: 2rem;
}

.Blog + aside section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.Blog + aside section li {
  padding: 0.5rem 0;
  position: relative;
}

.Blog + aside section li + li {
  border-top: 1px solid #ededed;
}

/* #endregion */

/* #region ----- Blog ----------------------------------------------------------- */

#News > div {
  display: flex;
  flex-wrap: wrap;
}

#News header {
  width: 100%;
}

.Blog {
  width: 900px;
  margin-bottom: 2rem;
  padding-right: 2rem;
}

.Blog article + article {
  margin-top: 2rem;
  border-top: 1px solid var(--color-gray--light);
}

.Blog .entry-title {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.Blog .entry-meta {
  margin: 1rem 0;
}

.Blog .entry-footer {
  margin-top: 1rem;
}

/* #endregion */

/* #region ----- Pagination ----------------------------------------------------------- */

.posts-navigation {
  margin: 3rem auto;
}

.posts-navigation .nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.posts-navigation .nav-links a {
  text-decoration: none;
  border: 1px solid var(--color-gray--light);
  color: var(--color-teal--dark);
  width: 3rem;
  height: 3rem;
  line-height: 2;
  text-align: center;
  display: block;
  border-radius: 3px;
  margin-right: 0.5rem;
}

.posts-navigation .nav-links a:hover,
.posts-navigation .nav-links a:focus,
.posts-navigation .nav-links a:active {
  background-color: var(--color-gray--light);
  border-color: var(--color-teal);
}

.posts-navigation .nav-links a:focus,
.posts-navigation .nav-links a:active {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-teal--light);
}

.posts-navigation .nav-links a.current {
  background: var(--color-teal);
  color: var(--color-white);
  cursor: text;
  border-color: var(--color-teal);
}

.posts-navigation .nav-links a.prev {
  position: relative;
  overflow: hidden;
}

.posts-navigation .nav-links a.next {
  position: relative;
  overflow: hidden;
}

.posts-navigation .nav-links a.prev::before {
  content: "‹";
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.posts-navigation .nav-links a.next::before {
  content: "›";
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.News.l-Section {
  padding-top: 1rem;
}

/* #endregion */

body.blog div.Blog article figure.wp-caption {
  position: relative;
  left: unset;
  padding: unset;
}

body.single-post figure.wp-caption {
  position: relative;
  left: unset;
  padding: unset;
}

.SearchPageContent {
  display: flex;
}

@media (max-width: 768px) {
  .SearchPageContent {
    flex-direction: column;
  }
}

/* #region ----- Site Header -- landingPage */

.SiteHeader--landingPage {
  max-height: 300px;
  transition: none;
  background-image: url(/wp-content/uploads/2014/02/8-election-day3.jpg);
}

.SiteHeader--landingPage .Hero {
  margin: 0 auto;
}

.SiteHeader--landingPage .SiteSearch.l-Section {
  padding: 1.5rem;
  bottom: 4rem;
}

@media (min-width: 980px) {
  .SiteHeader--landingPage .SiteSearch.l-Section {
    bottom: 6rem;
  }
}

/* #endregion */

/* region ----- Links (Global | Content) */

main h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--color-brown);
}

main p {
  /* font-size: 1.3125rem; */
  font-size: 1.125rem;
  /* 18px */
  font-weight: 300;
  line-height: 2rem;
  /* 32px */
  font-family: "Open Sans", sans-serif;
}

main a {
  color: var(--color-teal--dark);
  text-decoration-color: var(--color-teal--light);
  font-weight: 400;
}

main a:active,
main a:hover,
main a:focus {
  color: var(--color-brown);
  text-decoration-color: var(--color-brown--pale);
}

/* #endregion */

/* Article / Essay */

.Article {
  position: relative;
  background-color: var(--color-gray--light);
}

.Article__header {
  padding-bottom: 3rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.Article__categories {
  text-align: center;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0 0 -1rem;
}

.Article__category {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 300;
  text-decoration: none;
  background-color: var(--color-brown--light);
  color: var(--color-brown--pale);
  position: relative;
  padding: 0 1rem;
}

.Article__category::before,
.Article__category::after {
  content: "";
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
  width: 5rem;
  height: 1px;
  background-color: var(--color-white);
  opacity: 0.1;
}

.Article__category::after {
  left: calc(100% + 1rem);
}

.Article__category:hover,
.Article__category:focus {
  color: var(--color-white);
}

.Article__heading {
  color: var(--color-brown);
  font-size: 3rem;
  margin: 0 1.5rem 1rem;
  padding-top: 3rem;
  text-align: center;
  line-height: 1;
}

figure.wp-caption,
.Article__figure,
.Article__figure--pullQuote {
  position: absolute;
  left: 100%;
  padding: 3rem 0 3rem 2rem;
  width: 100% !important;
  max-width: 320px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
}

figure.wp-caption figcaption,
.Article__figcaption {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.25;
  margin-top: 0.5rem;
}

/* Article Author */

.by-line {
  font-size: 1rem;
  color: var(--color-brown);
  margin-top: 1rem;
  margin-bottom: 3rem;
  font-weight: 400;
  text-align: center;
  padding-top: 1rem;
  position: relative;
}

.themes .by-line,
.single-egp_locations .by-line,
.single-egp_themes .by-line {
  font-size: 1rem;
  color: var(--color-brown--pale);
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.by-line::before {
  content: "";
  display: block;
  width: 5rem;
  height: 1px;
  background-color: var(--color-brown--pale);
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
}

.themes .by-line::before,
.single-egp_locations .by-line::before,
.single-egp_themes .by-line::before {
  background-color: var(--color-brown--light);
}

.by-line__link {
  color: var(--color-brown);
  text-decoration-color: var(--color-brown);
}

.themes .by-line__link,
.single-egp_locations .by-line__link,
.single-egp_themes .by-line__link {
  color: var(--color-brown--pale);
  text-decoration-color: var(--color-brown--pale);
}

.by-line__link:hover,
.by-line__link:focus {
  color: var(--color-brown);
  text-decoration: none;
}

.themes .by-line__link:hover,
.themes .by-line__link:focus,
.single-egp_locations .by-line__link:hover,
.single-egp_locations .by-line__link:focus,
.single-egp_themes .by-line__link:hover,
.single-egp_themes .by-line__link:focus {
  color: var(--color-white);
}

.Article__sections {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 6rem;
}

.Article__aside {
  margin-top: 1rem;
  margin-right: 0;
  text-align: right;
  padding-right: 0rem;
  left: calc(50% - 450px);
  transform: translateX(-100%);
  position: absolute;
  height: calc(100% - 11rem);
  width: 100%;
  max-width: 300px;
}

.Article__section {
  margin-top: -3rem;
  background: white;
  padding: 3rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 900px;
  position: relative;
}

.Article__section.Essay {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2rem;
  font-family: "Open Sans", sans-serif;
}

.Article__section.Gallery {
  padding: 3rem 0;
}

.Article__section.Gallery > h1 {
  padding: 0 3rem;
}

.Article__section:last-of-type {
  padding-bottom: 6rem;
}

@media (min-width: 1600px) {
  figure.wp-caption img {
    max-width: 272px;
    /* 320px - 3rem (48px)*/
    height: auto;
  }

  .Article__aside {
    left: calc(50% - 450px);
    max-width: 300px;
  }
}

@media (min-width: 1200px) and (max-width: 1599px) {
  .Article__aside {
    left: calc(50% - 375px);
    max-width: 225px;
    max-width: clamp(200px, 19vw, 320px);
  }

  .Article__section {
    max-width: 750px;
  }

  figure.wp-caption,
.Article__figure,
.Article__figure--pullQuote {
    max-width: 225px;
    max-width: clamp(200px, 19vw, 320px);
  }

  figure.wp-caption img,
.Article__figure img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1199px) {
  figure.wp-caption img,
.Article__figure img {
    float: left;
    margin-right: 2rem;
    margin-bottom: 0;
  }

  .Article__aside {
    margin-top: 5rem;
    margin-right: 0;
    text-align: left;
    position: absolute;
    z-index: 100;
    max-height: 100%;
    left: 0;
    transform: none;
    width: 0;
    transition: width 0.3s;
  }

  .Article__aside.open {
    width: 100%;
  }

  figure.wp-caption,
.Article__figure--pullQuote,
.Article__figure {
    position: static;
    border: 0;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    padding: 2rem;
    margin: 2rem 0;
    max-width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  figure.wp-caption,
.Article__figure {
    margin: 3rem 0;
  }

  .Article__section {
    margin-top: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 639px) {
  .Article__heading {
    font-size: 3rem;
    font-weight: 500;
  }

  figure.wp-caption,
.Article__figure {
    margin: 2rem 0;
  }

  figure.wp-caption img,
.Article__figure img {
    float: none;
    margin: 0 auto;
    display: block;
    margin-bottom: 1rem;
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
  }
}

.aside-essay__title {
  margin-right: 2rem;
  margin-bottom: 0.5rem;
  text-align: right;
  padding-top: 1rem;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
}

.aside-essay__author {
  margin-top: 0.5rem;
  text-align: right;
  margin-right: 2rem;
}

.aside-essay__author-link {
  color: var(--color-brown);
  margin-top: 0;
}

/* #region ----- Subjects */

.subjects .Breadcrumbs.l-Section {
  padding-bottom: 0;
}

.Subjects__header {
  padding-bottom: 3rem;
}

.Subjects__categories {
  text-align: center;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0 0 -1rem;
}

.Subjects__category {
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: 300;
  text-decoration: none;
  color: var(--color-brown);
  position: relative;
  padding: 0 1rem;
}

.Subjects__category::before,
.Subjects__category::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  width: 5rem;
  height: 1px;
  background-color: var(--color-brown--dark);
  opacity: 0.1;
}

.Subjects__category::after {
  left: 100%;
}

.Subjects__category:hover,
.Subjects__category:focus {
  color: var(--color-white);
  background-color: var(--color-brown--dark);
}

.Subjects__heading {
  color: var(--color-brown);
  font-size: 3rem;
  margin: 0 1.5rem 1rem;
  padding-top: 1rem;
  text-align: center;
  line-height: 1;
}

.Subject__container {
  display: flex;
  flex-wrap: wrap;
  /* margin-bottom: 6rem; */
}

.Subject__container.l-Section--inner {
  margin-bottom: 6rem;
}

@media (max-width: 767px) {
  .Subject__container {
    display: block;
  }

  .Subject {
    margin: 1rem !important;
  }
}

.Subject {
  flex: 0 0 calc(50% - 1rem);
  background: var(--color-gray--light);
  margin-right: 1rem;
  margin-bottom: 1rem;
  transition: all 0.2s;
  outline: 0;
  /* box-shadow: 0px 20px 16px -20px hsla(0, 0%, 0%, .25); */
}

.Subject:nth-child(even) {
  margin-left: 1rem;
  margin-right: 0;
}

.Subject:nth-child(n+3) {
  margin-top: 1rem;
}

.Subject:hover,
.Subject:focus-within {
  outline: 8px solid var(--color-brown--pale);
  transform: rotate(0deg);
  background: var(--color-white);
}

.Subject img {
  float: right;
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 0 1rem 1rem;
}

.Subject__link {
  display: block;
  padding: 2rem;
  text-decoration: none;
  min-height: 100%;
}

.Subject__link:hover,
.Subject__link:focus {
  outline: none;
}

.Subject__link h2 {
  line-height: 1.25;
  color: var(--color-teal);
  text-decoration: underline;
  text-decoration-color: var(--color-teal--light);
}

.Subject__link:hover h2,
.Subject__link:focus h2 {
  color: var(--color-brown);
  text-decoration: underline;
  text-decoration-color: var(--color-brown--pale);
}

.Subject__link p {
  color: #000;
}

.Subject__link :last-child {
  margin-bottom: 0;
}

.Subject__heading.h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* #endregion */

/* #region ----- Page - Themes */

.themes .Breadcrumbs.l-Section,
.single-egp_locations .Breadcrumbs.l-Section,
.single-egp_themes .Breadcrumbs.l-Section {
  padding-top: 1.5rem;
  padding-bottom: 0;
  background-color: var(--color-brown--dark);
  color: var(--color-white);
}

.themes .Breadcrumbs__item,
.single-egp_locations .Breadcrumbs__item,
.single-egp_themes .Breadcrumbs__item {
  /* opacity: .5; */
  color: var(--color-brown--pale);
}

.themes .Breadcrumbs__link,
.single-egp_locations .Breadcrumbs__link,
.single-egp_themes .Breadcrumbs__link {
  /* color: var(--color-white); */
  color: var(--color-brown--pale);
  text-decoration-color: var(--color-whtie);
}

.themes .Breadcrumbs__link:hover,
.themes .Breadcrumbs__link:focus,
.single-egp_locations .Breadcrumbs__link:hover,
.single-egp_locations .Breadcrumbs__link:focus,
.single-egp_themes .Breadcrumbs__link:hover,
.single-egp_themes .Breadcrumbs__link:focus {
  color: var(--color-white);
  text-decoration-color: transparent;
}

.themes .Article__header,
.single-egp_locations .Article__header,
.single-egp_themes .Article__header {
  background-color: var(--color-brown--dark);
  max-width: 100%;
}

.themes .Article__header *:focus,
.single-egp_locations .Article__header *:focus,
.single-egp_themes .Article__header *:focus {
  outline-color: var(--color-white);
}

.themes .Article__heading,
.single-egp_locations .Article__heading,
.single-egp_themes .Article__heading {
  color: var(--color-white);
  margin: 0 1.5rem 1rem;
  padding-top: 1rem;
  text-align: center;
  line-height: 1;
}

/* #endregion */

.Backgrounders {
  position: relative;
}

/* TODO : Check .subTitle */

/*
.Backgrounders__title {
    --color-brown-l: 80%;
} */

.Backgrounders__subTitle,
.subTitle {
  font-weight: 300;
  line-height: 1;
  margin-top: 0;
  display: block;
  font-size: 0.5em;
}

/* TODO : Check .subTitle */

.subTitle {
  line-height: 1.5;
  font-size: 1rem;
}

.Backgrounders__list {
  display: flex;
}

.Backgrounder {
  display: flex;
  flex-wrap: nowrap;
  background-color: var(--color-gray--light);
  box-shadow: 0 0 0 0 var(--color-white);
  transition: all 0.2s;
  outline: 0;
}

.Backgrounder__figure {
  margin: 0;
  width: calc(50% + 0.5rem);
  max-width: 276px;
  min-height: 276px;
  height: 100%;
  position: relative;
}

.Backgrounder__figure::after {
  content: "";
  position: absolute;
  top: 1rem;
  display: block;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

.l-Grid__cols .Backgrounder__figure {
  width: auto;
  max-width: 100%;
  max-height: 276px;
  overflow: hidden;
}

.Backgrounder__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 276px;
  height: 100%;
  display: block;
}

.l-Grid__cols .Backgrounder__img {
  max-width: 100%;
}

.Backgrounder__content {
  /* overflow-y: auto; */
  overscroll-behavior: contain;
  /* width: calc(50% + .5rem); */
  padding: 1rem;
  position: relative;
}

.l-Grid__cols .Backgrounder__content {
  width: 100%;
  padding: 1.5rem;
}

.Backgrounder__heading {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  line-height: 1.15;
}

.Backgrounder__heading > a {
  text-decoration: none;
}

.Backgrounder__meta {
  font-size: 0.875rem;
  /* margin: -1.75rem 0 0; */
  margin: 0.25rem 0;
  line-height: 1.25;
  position: relative;
}

.Backgrounder__meta a {
  display: inline-block;
}

.Backgrounder__label {
  margin-bottom: 1.5rem;
}

.Backgrounder__label > a {
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0 1rem;
  background-color: var(--color-teal--dark);
  color: var(--color-white);
  line-height: var(--size-24);
  position: absolute;
  top: 0;
  left: 0;
}

.Backgrounder__label > a:hover,
.Backgrounder__label > a:focus {
  background-color: var(--color-brown--dark);
  color: var(--color-white);
}

.Backgrounder__credit {
  font-size: 0.875rem;
  margin: 0;
}

.Backgrounder__relatedHistoryHeading {
  font-size: 1.25rem;
  margin: 1rem 0 0;
}

.Backgrounder__relatedHistoryList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.Backgrounders__footer {
  margin-top: 4rem;
  border-top: 1px solid var(--color-gray--light);
  text-align: center;
}

.Backgrounders__footer > .Link--more {
  top: -1.5rem;
}

@media (max-width: 979px) {
  .Backgrounders__list {
    flex-direction: column;
  }

  .Backgrounder {
    margin: 1rem 0;
    max-height: 100%;
  }

  .Backgrounder__figure {
    height: auto;
  }

  .l-Grid__cols .Backgrounder__figure {
    max-width: 276px;
    max-height: 100%;
    width: calc(50% + 0.5rem);
    margin: 0;
  }

  .l-Grid__cols .Backgrounder__img {
    /* height: auto; */
    max-height: 100%;
  }

  .Backgrounder__content {
    max-height: unset;
    width: 100%;
  }
}

@media (max-width: 639px) {
  .Backgrounder {
    flex-direction: column;
    flex: 1 1 auto;
  }

  .Backgrounder__content {
    padding-left: 0;
  }

  .l-Grid__cols .Backgrounder__figure,
.Backgrounder__figure {
    height: auto;
    margin: 0 0 1rem;
    max-width: 100%;
    width: 100%;
    display: flex;
    max-height: 276px;
  }

  .Backgrounder__img {
    max-width: 100%;
    max-height: 276px;
    height: auto;
  }
}

/* region ----- About ----- Homepage Content */

.About h2 {
  margin: 0;
  font-size: 1.5rem;
}

.About.l-Grid__col {
  background-color: var(--color-gray--light);
}

.DonateStats__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

@media (max-width: 767px) {
  .Donate p:nth-of-type(3) {
    text-align: center;
  }

  .Donate.l-Grid__col,
.DonateStats.l-Grid__col {
    flex-basis: 100%;
  }

  .DonateStats.l-Grid__col {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .DonateStats__figure {
    margin-top: 2.5rem;
  }
}

@media (max-width: 979px) {
  .About .l-Grid {
    flex-wrap: wrap;
  }

  .About.l-Grid__col {
    flex-basis: 100%;
  }
}

.FeaturedContent {
  position: relative;
  background-color: var(--color-gray--light);
}

.Featured__header {
  position: relative;
}

.Featured__title {
  line-height: 1.2;
}

.Featured__title::before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  margin-bottom: -0.15em;
}

.Featured__title::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  margin-bottom: -0.375em;
}

.Featured__header .Link--more {
  position: absolute;
  right: 0;
  top: 0;
}

.Featured {
  display: flex;
  align-items: stretch;
  transition-duration: 0.3s;
  transition-property: backgroun-color outline;
}

/* .Featured:hover {
    background-color: var(--color-gray--light);
    outline: 1rem solid var(--color-gray--light);
} */

.Featured__figure {
  flex: 1 1 0px;
  margin: 0;
  position: relative;
}

.Featured__figure::after {
  content: "";
  position: absolute;
  top: 1rem;
  display: block;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

.Featured__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  /* width: calc(100% - 4rem); */
  max-width: 100%;
  height: 100%;
  /* max-height: 300px; */
  display: block;
  /* position: absolute; */
  /* top: 0; */
  /* bottom: 0; */
}

.Featured__imgCaption {
  font-size: 0.875rem;
  display: inline;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  bottom: 0;
  padding: 1rem;
  color: var(--color-white);
  left: 0;
  right: 0;
  z-index: 1;
}

.Featured__imgCaption a {
  color: var(--color-white);
}

.Featured .l-Grid__col {
  flex: 1 1 0px;
  padding: 0;
}

.Featured .l-Grid__content {
  padding: 2rem;
}

.Nominate h2,
.Newsletter h2,
.topTen h2 {
  margin-top: -0.5rem;
  font-size: 1.5rem;
}

.Featured__content {
  overflow-y: auto;
  overscroll-behavior: contain;
  flex: 1 1 0px;
  /* flex: 2 2 2rem; */
  padding: 0;
}

.Featured__heading {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.Featured__credit {
  font-size: 0.875rem;
}

.Featured__footer {
  margin-top: 4rem;
  border-top: 1px solid var(--color-gray--light);
  text-align: center;
}

.Featured__footer > .Link--more {
  top: -1.5rem;
}

@media (max-width: 979px) {
  .Featured {
    flex-wrap: wrap;
    /* flex-direction: column; */
    min-height: 0;
  }

  .Featured__figure {
    /* max-width: 276px; */
    width: calc(50% + 0.5rem);
    position: relative;
  }

  .Featured__img {
    /* max-height: 100%; */
    width: 100%;
  }

  .Featured__content {
    /* margin-left: 2rem; */
    padding-right: 0;
    padding-left: 1rem;
    margin-left: 0;
    width: 100%;
    flex: unset;
  }

  .Featured .l-Grid__col {
    flex: 1 1 50%;
  }

  .topTen.l-Grid__col {
    flex: 0 0 100%;
    margin-top: 2rem;
  }

  .List--topTen {
    -moz-columns: 15rem 2;
         columns: 15rem 2;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    -moz-column-fill: balance;
         column-fill: balance;
  }

  .List--topTen .List__item + .List__item {
    border: none;
  }
}

@media (max-width: 639px) {
  .Featured {
    flex-direction: column;
  }

  .Featured__content {
    padding-left: 0;
  }

  .Featured__figure {
    height: auto;
    margin: 0 0 2rem;
    max-width: 100%;
    width: 100%;
  }

  .Featured__img {
    max-width: 100%;
    max-height: 276px;
  }
}

/* #endregion */

/* region ----- Homepage News */

.News,
.topTen {
  /* padding: 2rem; */
  background: var(--color-white);
  /* overflow: hidden; */
}

.News h2,
.topTen h2 {
  margin-left: -2rem;
  margin-right: -2rem;
  margin-top: -0.5rem;
  border-bottom: 1px solid #ededed;
  padding-left: 2rem;
  padding-bottom: 1.25rem;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 979px) {
  .RelatedContent .l-Grid {
    flex-direction: column;
  }
}

/* #endregion */

/* region ----- Content Lists */

.List,
.Slogan .List {
  margin: 0;
  padding: 0;
  list-style: none;
}

.Slogan .List__item {
  display: inline-block;
}

.List__item {
  padding: 0.5rem 0;
  position: relative;
}

.List__item + .List__item {
  border-top: 1px solid #eee;
}

.Slogan .List__item + .List__item {
  border: 0;
}

.List--news .List__link {
  text-decoration: none;
  padding: 0 1rem 0 0;
  transition: padding 0.3s;
  display: inline-block;
}

.List--news .List__link::before {
  content: "";
  position: absolute;
  opacity: 0;
  transition: opacity 0.2s;
  left: 0;
  top: 0.75rem;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23935939' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: 50%;
}

.List--news .List__link:hover::before {
  opacity: 1;
}

.List--news .List__link:hover,
.List--news .List__link:hover {
  padding-left: 1rem;
  padding-right: 0;
}

.List__item--link {
  padding-left: 1.5rem;
  padding: 0.5rem 0 0.5rem 1.25rem;
  list-style-type: none;
  background: url(https://s.w.org/images/core/emoji/13.0.1/svg/1f517.svg) no-repeat left top;
  background-position: left 12px;
  background-size: 1rem;
}

.List--paragraphs p {
  font-size: 1rem;
}

.List__item--document {
  padding: 0.5rem 0 0.5rem 1.25rem;
  list-style-type: none;
  background: url(https://s.w.org/images/core/emoji/13.0.1/svg/1f4c4.svg) no-repeat left top;
  background-position: left 12px;
  background-size: 1rem;
}

.List--topics {
  -moz-columns: 2 auto;
       columns: 2 auto;
  -moz-column-fill: balance;
       column-fill: balance;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.List--topics .List__item--link {
  display: inline-block;
  width: 100%;
}

/* Alphabetical Index */

.TopicNav__list--alpha {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  width: 268px;
}

.TopicNav__list--alpha .TopicNav__item {
  margin-left: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 1500px) and (min-width: 1200px) {
  .TopicNav__list--alpha {
    width: 100%;
  }

  .TopicNav__list--alpha .TopicNav__item {
    margin-right: 1rem;
  }
}

.TopicNav__list--alpha .TopicNav__link {
  color: var(--color-teal--dark);
  font-weight: 400;
  font-size: 1.125rem;
  display: block;
  font-family: Newsreader, serif;
  text-decoration: none;
  position: relative;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  text-align: center;
  line-height: 3rem;
  border-radius: 0.25rem;
  border: 1px solid #dedede;
  background-color: var(--color-white);
  padding: 0;
}

.TopicNav__list--alpha .TopicNav__link:hover,
.TopicNav__list--alpha .TopicNav__link:focus {
  padding: 0;
  font-weight: bold;
  background-color: var(--color-white);
  border-color: var(--color-brown);
  color: var(--color-brown);
}

.TopicNav__list--alpha .TopicNav__link--active,
.TopicNav__list--alpha .TopicNav__link--active:hover,
.TopicNav__list--alpha .TopicNav__link--active:focus {
  color: var(--color-white);
  font-weight: 600;
  border-color: var(--color-brown);
  background-color: var(--color-brown);
}

/* Authors Page */

.post-type-archive-egp_authors .List__link {
  margin-top: 1.5rem;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 600;
}

/* #endregion */

/* #region ----- MOBILE/RESPONSIVE */

@media (max-width: 979px) {
  .UtilityNav .mobile-menu li + li {
    margin: 0;
  }

  .UtilityNav__list,
.MainNav {
    display: none;
  }

  .sub-menu .sub-menu {
    display: block;
    /* background: hsl(0, 0%, 93%); */
  }

  .SiteHeader--homepage .Hero__title {
    font-size: 2rem;
  }

  .SlideShow__toggle {
    bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .SiteHeader__siteName {
    font-size: 1.5rem;
    transition: font-size 0.3s;
  }

  .SiteHeader__siteName > small {
    font-size: 1rem;
  }

  .SiteHeader__siteName > br + small {
    margin-left: 1rem;
  }

  .Hero {
    width: 100%;
  }

  .SiteHeader--homepage .Hero__title {
    margin: 3rem 2rem 2rem;
  }
}

@media (max-width: 639px) {
  .SiteHeader--homepage .Hero__title {
    font-size: 1.75rem;
  }
}

@media (max-width: 479px) {
  .SiteHeader__siteName {
    font-size: 1.25rem;
    transition: font-size 0.3s;
  }

  .SiteHeader__siteName > small {
    font-size: 0.8rem;
  }

  .Hero__title {
    font-size: 4rem;
    transition: font-size 0.3s;
  }

  .Subjects__heading {
    margin: 0;
  }

  .Subject {
    margin: 2rem 0rem !important;
  }

  .Subject img {
    float: none;
    width: 100%;
    margin: 0 0 1rem;
  }

  .Subjects__category::before,
.Subjects__category::after {
    width: 2rem;
  }
}

@media (min-width: 980px) {
  .mobile-menu,
.mmenu-icon {
    display: none !important;
  }
}

/* #endregion */

/* #region ----- Gallery */

.mySwiper2 {
  background-color: #ededed;
  position: relative;
}

.mySwiper2 > .swiper-wrapper {
  position: relative;
}

.mySwiper2::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  height: 1rem !important;
  left: 0 !important;
  right: 17px;
  top: 0 !important;
  background: #eee !important;
  box-shadow: -10px 0 10px 8px #eee;
  z-index: 2 !important;
}

.mySwiper2::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  height: 1rem !important;
  left: 0 !important;
  right: 17px;
  bottom: 0 !important;
  background: #eee !important;
  box-shadow: -10px 0 10px 8px #eee;
  z-index: 2 !important;
}

.swiper-slide > .grid {
  display: flex;
  height: 100% !important;
  min-height: 300px;
  max-height: 80vh;
  padding: 0 3rem;
  background: #ededed;
  align-items: stretch;
  overflow-y: scroll;
  position: relative;
  border-right: 0;
  outline: none;
  border-left: 0;
}

.swiper-slide > .grid.horizontal {
  flex-direction: column;
}

.swiper-slide > .grid.horizontal > div:first-child {
  position: relative;
}

.swiper-slide > .grid.horizontal > div:first-child > img {
  max-height: 30vh;
}

.swiper-slide > .grid > div {
  flex: 1 1 0px;
  border: 0;
  line-height: 1.5;
  font-size: 1rem;
  position: static;
  max-height: 100%;
  overflow: visible;
  height: auto;
  text-align: left;
  margin: 2rem 1rem;
}

.swiper-slide > .grid > div:first-child {
  flex: 1 1 0px;
  position: sticky;
  top: 2rem;
  align-items: flex-start;
}

.swiper-slide > .grid > div.imagecaption *:last-child {
  padding-bottom: 1em;
}

/* image title */

.swiper-slide > .grid > div:first-child p {
  font-weight: bold;
  line-height: 1;
}

.swiper-slide > .grid > div:first-child > img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  max-width: 100%;
  /*   max-width: 20rem; */
  height: auto;
  margin-left: auto;
  max-height: 100%;
  /*   max-height: 20rem; */
}

.swiper-thumbs {
  height: 100px;
  border: 1rem solid #ededed;
  background: #ededed;
  max-width: 100%;
  box-shadow: 0 -2px 0 0px #fff;
  overflow: hidden;
  padding: 0;
}

.swiper-thumbs .swiper-slide {
  width: 15% !important;
}

.swiper-thumbs img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-next {
  right: 1rem;
}

.swiper-button-prev:focus,
.swiper-button-prev:hover,
.swiper-button-next:focus,
.swiper-button-next:hover {
  background-color: rgba(255, 255, 255, 0.5);
  outline: 8px solid rgba(255, 255, 255, 0.5);
  outline-offset: 0;
}

.swiper-button-prev {
  left: 1rem;
}

@media (max-width: 639px) {
  .swiper-slide > .grid {
    flex-direction: column;
    position: static;
    height: 100%;
  }

  .swiper-slide > .grid > div {
    position: static;
    height: auto;
    max-height: unset;
    width: calc(100% - var(--scrollbar-width));
  }

  .swiper-slide > .grid > div:first-child {
    position: relative;
    top: 0;
    margin-bottom: 0;
  }

  .swiper-slide > .grid > div:first-child img {
    margin: auto;
    width: 100%;
    max-width: 100%;
    /* large image */
    /*     max-width: 20rem; */
    /* medium size image */
    height: 100%;
    max-height: 100%;
    /* large image */
    /*     max-height: 20rem; */
    /* small image */
  }
}

.swiper {
  width: 100%;
  /*height: 100%;*/
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /*background: #fff;*/
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  margin: auto 0;
}

.swiper-slide img {
  display: block;
  /*width: 100%;*/
  /*height: 100%;*/
  /*object-fit: cover;*/
}

.swiper {
  width: 100%;
  /*height: 300px;*/
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  /*height: 80%;*/
  width: 100%;
}

.mySwiper {
  /*height: 20%;*/
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  /*width: 100%;*/
  /*height: 100%;*/
  /*object-fit: cover;*/
}

.swiper-button-next, .swiper-button-prev {
  color: #892628 !important;
}

/* #endregion */

.gm-style-iw p {
  margin-top: 0;
  margin-right: 1rem;
}

.gm-style-iw p + p {
  margin-top: 0.5rem;
  margin-right: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

/* region ----- Modifiers (egp-modifiers.css) */

.-width--full {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.-margin--none {
  margin: 0 !important;
}

.-padding--none {
  padding: 0 !important;
}

.-bg--gray {
  background-color: var(--color-gray--light);
}

/* #endregion */

.site-container {
  width: 100%;
}

@media (min-width: 640px){
  .site-container{
    max-width: 640px;
  }
}

@media (min-width: 768px){
  .site-container{
    max-width: 768px;
  }
}

@media (min-width: 1024px){
  .site-container{
    max-width: 1024px;
  }
}

@media (min-width: 1280px){
  .site-container{
    max-width: 1280px;
  }
}

@media (min-width: 1536px){
  .site-container{
    max-width: 1536px;
  }
}

.site-container{
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px){
  .site-container{
    max-width: 1024px;
  }
}

* :focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

.skip-link:focus {
  height: auto;
  width: auto;
  border-width: 2px;
  border-style: dashed;
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(137, 38, 40, var(--tw-bg-opacity));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  clip: unset;
}

.site-title {
  font-family: Newsreader, ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
  font-weight: 300;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2rem;
  --tw-text-opacity: 1;
  color: rgba(57, 48, 26, var(--tw-text-opacity));
}

@media (min-width: 768px){
  .site-title{
    text-align: left;
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1024px){
  .site-title{
    font-size: 3rem;
    line-height: 1;
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.screen-reader-text,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  color: var(--color-black);
  background-color: white;
}

a[rel=external]:hover .screen-reader-text,
a[target=_blank]:hover .screen-reader-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  bottom: 120%;
  border-radius: 1rem;
  display: block;
  width: auto;
  height: auto;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  overflow: visible;
  clip: auto;
  border: 0;
  background-color: var(--color-black);
  color: var(--color-white);
  transition: bottom 0.3s;
}

a[rel=external]:hover .sr-only,
a[target=_blank]:hover .sr-only {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  bottom: 120%;
  border-radius: 1rem;
  display: block;
  width: auto;
  height: auto;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  overflow: visible;
  clip: auto;
  border: 0;
  background-color: var(--color-black);
  color: var(--color-white);
  transition: bottom 0.3s;
}

a[rel=external] .screen-reader-text::after,
a[target=_blank] .screen-reader-text::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  opacity: 1;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid var(--color-black);
}

a[rel=external] .sr-only::after,
a[target=_blank] .sr-only::after {
  display: inline-block;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  opacity: 1;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid var(--color-black);
}

nav.posts-navigation {
  width: 100%;
}

@media (min-width: 640px){
  nav.posts-navigation{
    max-width: 640px;
  }
}

@media (min-width: 768px){
  nav.posts-navigation{
    max-width: 768px;
  }
}

@media (min-width: 1024px){
  nav.posts-navigation{
    max-width: 1024px;
  }
}

@media (min-width: 1280px){
  nav.posts-navigation{
    max-width: 1280px;
  }
}

@media (min-width: 1536px){
  nav.posts-navigation{
    max-width: 1536px;
  }
}

nav.posts-navigation{
  margin-left: auto;
  margin-right: auto;
  max-width: 36rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

nav.posts-navigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-numbers {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  display: flex;
  cursor: pointer;
  border-radius: 0.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  --tw-text-opacity: 1;
  color: rgba(105, 31, 35, var(--tw-text-opacity));
}

@media (min-width: 640px){
  .page-numbers{
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.page-numbers:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(137, 38, 40, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.page-numbers:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.page-numbers.current {
  --tw-bg-opacity: 1;
  background-color: rgba(137, 38, 40, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.page-numbers.current:hover{
  text-decoration: underline;
}

.topic-navbar-link-active {
  display: block;
  width: 100%;
  border-right-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgba(137, 38, 40, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(137, 38, 40, var(--tw-bg-opacity));
  --tw-bg-opacity: 0.05;
  padding-left: 0.5rem;
  font-family: Newsreader, ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
  --tw-text-opacity: 1;
  color: rgba(137, 38, 40, var(--tw-text-opacity));
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.content-tabs [aria-selected=true] {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.content-tabs [aria-selected=false] {
  border-color: transparent;
}

.fancy-border::after {
  content: "";
  position: absolute;
  top: 1rem;
  display: block;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.5);
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}

.admin-bar .TopicNav {
  top: 2em;
}
