/* ---------- RESET ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* ---------- VARIABLES ---------- */
  :root {
    /* Spacings Desktop */
    --space-top: 170px;
    --space-bottom: 70px;
    --space-left: 70px;
  
    /* Spacings Mobile */
    --space-top-m: 170px;
    --space-bottom-m: 40px;
    --space-left-m: 70px;
  
    /* Typography Desktop */
    --font-display: 3.5rem;
    --font-title: 2.2rem;
    --font-body: 0.9em;
  
    /* Typography Mobile */
    --font-display-m: 2.2rem;
    --font-title-m: 1.4rem;
    --font-body-m: 1rem;
  
    /* Colors */
    --color-bg: #ffffff;
    --color-text: #111111;

    --wp--style--unstable-gallery-gap: 2.5em;
    --gallery-block--gutter-size: 2.5em;
    --wp--style--block-gap: 2.5em;
  }

  @font-face{
    font-family: "KohinoorLatin-Book";
    src: url("../fonts/0621a5c190e2a1b3c33e2c84141115b0.eot");
    src: url("../fonts/0621a5c190e2a1b3c33e2c84141115b0.eot?#iefix")format("embedded-opentype"),
        url("../fonts/0621a5c190e2a1b3c33e2c84141115b0.woff")format("woff"),
        url("../fonts/0621a5c190e2a1b3c33e2c84141115b0.woff2")format("woff2"),
        url("../fonts/0621a5c190e2a1b3c33e2c84141115b0.ttf")format("truetype"),
        url("../fonts/0621a5c190e2a1b3c33e2c84141115b0.svg#KohinoorLatin-Book")format("svg");
    font-weight:normal;
    font-style:normal;
    font-display:swap;
}

@font-face{
  font-family: "KohinoorLatin-Medium";
  src: url("../fonts/f0335ab54e5ebf9ed780078f9421cc12.eot");
  src: url("../fonts/f0335ab54e5ebf9ed780078f9421cc12.eot?#iefix")format("embedded-opentype"),
      url("../fonts/f0335ab54e5ebf9ed780078f9421cc12.woff")format("woff"),
      url("../fonts/f0335ab54e5ebf9ed780078f9421cc12.woff2")format("woff2"),
      url("../fonts/f0335ab54e5ebf9ed780078f9421cc12.ttf")format("truetype"),
      url("../fonts/f0335ab54e5ebf9ed780078f9421cc12.svg#KohinoorLatin-Medium")format("svg");
  font-weight:normal;
  font-style:normal;
  font-display:swap;
}
  
  /* ---------- BASE TYPOGRAPHY ---------- */
  body {
    font-family: "KohinoorLatin-Book", sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.45;
    letter-spacing: 1px;
  }
  
  h1 {
    font-size: var(--font-display);
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: var(--font-title);
    margin-bottom: 0.75rem;
  }
  
  p {
    font-size: var(--font-body);
/*    max-width: 800px;*/
    margin-bottom: 1.2rem;
  }
  
  /* Mobile Typo */
  @media (max-width: 900px) {
    h1 { font-size: var(--font-display-m); }
    h2 { font-size: var(--font-title-m); }
    p  { font-size: var(--font-body-m); }
  }


  

  .e-fas-circle {
    height: 20px;
    margin-right: 8px;
    position: relative;
    top: 2px;
  }