
@font-face {
  font-family: "serifFont";
  src: url(/assets/fonts/serif/serif_regular.woff2) format("woff2");
  font-display: swap;
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: "serifFont";
  src: url(/assets/fonts/serif/serif_regular_it.woff2) format("woff2");
  font-display: swap;
  font-weight: 400;
  font-style: italic
}

@font-face {
  font-family: "serifFont";
  src: url(/assets/fonts/serif/serif_bold.woff2) format("woff2");
  font-display: swap;
  font-weight: 700;
  font-style: bold
}

@font-face {
  font-family: "serifFont";
  src: url(/assets/fonts/serif/serif_bold_it.woff2) format("woff2");
  font-display: swap;
  font-weight: 700;
  font-style: italic
}


:root{
  --font-sans: Arial, sans-serif;
  --font-serif: serifFont, "Times New Roman", serif;
  --text-color: #000;
  --grey: #666;
  --primary-color: #002FA7;
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

ul,
ol {
  list-style: none;
}
body {
  font-family: var(--font-sans);
  font-weight: 450;
  line-height: 1.5;
  font-size: 16px;
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
  max-width: 75ch;

}

.article_content{
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1vw + 1rem, 1.25rem);
}
.dateTime{
  color: var(--grey);
  font-size: 0.756em;
}
h1, h2, h3, h4, h5{
  font-family: var(--font-serif);
  text-rendering: geometricPrecision;
  font-weight: 700;
  line-height: 1.25;
}

h1{
  font-size: clamp(2.345rem, 1vw + 1rem, 5.678rem);
}
svg {
  width: 18px;
  height: 32px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}