/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.entry-title {display: none;}

:root {
  --font-body: 1rem;

  --font-h1: clamp(2.4rem, 1.8rem + 2vw, 3.8rem); /* Werte unter editor-style.css auch anpassen*/
  --font-h2: clamp(1.9rem, 1.4rem + 1.2vw, 2.8rem);
  --font-h3: clamp(1.5rem, 1.2rem + 0.7vw, 2rem);
  --font-h4: clamp(1.2rem, 1.05rem + 0.3vw, 1.4rem);
  --line-body: 1.65;
  --line-heading: 1.15;
}

body {
  font-size: var(--font-body);
  line-height: var(--line-body);
  color: #333;
}

h1 { font-size: var(--font-h1); line-height: var(--line-heading); }
h2 { font-size: var(--font-h2); line-height: 1.2; }
h3 { font-size: var(--font-h3); line-height: 1.25; }
h4 { font-size: var(--font-h4); line-height: 1.3; }

