/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme with Trellis-style typography
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Import Google Fonts (optional) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Lora&display=swap');

/* Base Typography */
body {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.75;
  color: #222;
}
/* Last updated */
.entry-meta time:before {
    content: 'Last updated: ';
}

/* Paragraph spacing */
p {
  margin-bottom: 1.5em;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  color: #111;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

/* Links */
a {
  color: #0073e6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Lists */
ul, ol {
  margin-bottom: 1.5em;
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 22px;
  }
}

