/* Overwrite in your /assets/css/custom.css file */
:root {
    --font-family-sans-serif: "Josefin Sans", sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-serif: "PT Serif", serif
}
@font-face {
    font-family: Chomsky;
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/Chomsky.woff) format("woff");
}

html {
    font-family: serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    font-family: "PT Serif", serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.21rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    hyphens: auto
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Josefin Sans", sans-serif;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 600;
}

.logo {
    font-family: Chomsky;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.logo:hover {
    color: #fff;
    text-decoration: none;
}
/*
img[src$='#center'] {
    display: block;
    margin: 0.3rem auto;
}
*/

.entry__authors {
    font-size: 1.03rem;
    color: #212529
}

/* ============================================================================
/* Hugo-Cite.css
/* ---------------------------------------------------------------------------- */

.hugo-cite-group {
  display: inline-block;
  vertical-align: baseline; /*compensate for lower height */
  position: relative;
  font-size: .85em; /* reduce to avoid some breaks */
}
.hugo-cite-group
  .hugo-cite-citation {
    visibility: hidden;
    background-color: #ffffff;
    color: inherit;
    border: 1px solid currentColor;
    padding: 1rem;
    position: absolute;
    width: 350px;
    max-width: 100vw;
    z-index: 1;
    bottom: 140%;
    left: 0;
    margin-left: -50px;

    z-index: 2;
    transition:
      visibility 0s .3s,
      transform .3s ease 0s,
      opacity .3s ease 0s;
    opacity: 0;
    transform: translateY(-8px);
}
.hugo-cite-group:hover
  .hugo-cite-citation {
    visibility: visible;
    transition: visibility 0s 0s, transform .3s, opacity .3s;
    opacity: 1;
    transform: translateY(0);
}

/* Visually Hidden utility class */
.visually-hidden {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}
