/*
 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
*/

/* Only import local fonts - no design changes */
@import url('./assets/fonts/poppins/poppins.css');

h1.post-title {
  display: inline-block;
  font-size: 55px; 
  font-weight: 600;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 50px;
  border-bottom: 4px solid #ff5500; 
  color: var(--base-3);
  text-shadow: 4px 4px 6px rgba(74, 76, 62, 1);
}


h1.post-title-dark {
  display: inline-block;
  font-size: 55px; 
  font-weight: 600;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 50px;
  border-bottom: 4px solid #ff5500; 
  color: #4A4C3E;
  text-shadow: 2px 2px 4px rgba(74, 76, 62, 0.3);
}

@media (max-width: 768px) {
  h1.post-title, 
h1.post-title-dark {
    font-size: 36px;
    padding-bottom: 10px;
    margin-bottom: 40px;
    border-bottom-width: 3px;
  }
}


@media (max-width: 480px) {
  h1.post-title, 
h1.post-title-dark {
    font-size: 28px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom-width: 2px;
  }
}

