/************************************************************************/
/* Schriften                                                            */
/************************************************************************/

/* Standard-Font für den Body */
body {
   font-family: 'Roboto', sans-serif;
   font-size: 17px;
   color: #555555;
   font-weight: 400;
}

/* Standard-Absätze */
p {
   margin: 0 0 10px;
}

/* Alle Ueberschriften - Basis-Stil
 *
 * Specifity-Trick: body-Prefix hebt die Specifity von (0,0,0,1) auf
 * (0,0,0,2) und schlaegt damit GeneratePress' editor-typography.css
 * im Block-Editor-iframe, die `h1 { font-family: inherit }` etc. mit
 * (0,0,0,1) setzt. Im Frontend aendert sich nichts – jeder Heading
 * hat body als Vorfahre. */
body h1, body h2, body h3, body h4, body h5, body h6 {
   font-family: 'Roboto Slab', serif;
}

/* H1 spezifisch
 *
 * body-Prefix wie oben (Specifity 0,0,0,2), damit unsere Werte
 * GeneratePress' Customizer-Inline-CSS (`h1, h2, ... { font-weight:
 * 100 }` aus generate_settings.typography "all-headings", Specifity
 * 0,0,0,1) im Editor-iframe schlagen. Im Frontend bleibt das
 * Verhalten identisch, weil dort sowieso ueber die Lade-Reihenfolge
 * gewonnen wird. */
body h1 {
   margin: 0 0 0;
   font-size: 30px;
   color: #5a9e33;
   font-weight: 700;
}

/* H2 spezifisch */
body h2 {
   font-size: 20px;
   margin: 30px 0 0;
   color: #5a9e33;
   font-weight: 700;
}

/* H3, H4, H5, H6 */
body h3, body h4, body h5, body h6 {
   font-size: 18px;
   margin: 30px 0 0;
   color: #5a9e33;
   font-weight: 700;
}

/* Anpassung für Zitat/Blockquote */
blockquote {
  border-left:10px solid rgba(55, 170, 225, 0.5);
  padding:20px;
  font-size:1.2em;
  font-style:italic;
  margin:0 0 1.5em;
  position:relative
}
blockquote p:last-child {
  margin:0
}

/***********************************************************************************/
/* Footer Bereich                                                                  */
/***********************************************************************************/

