:root {
  --heading-font: 'Fira Sans Extra Condensed', Helvetica, sans-serif;
  --content-font:  "Pt Sans",  Helvetica, sans-serif;
  --text-charcoal: #1c1c1c;
  --text-grey: #525252;
  --text-red: #c22a00;


}

body {
  font-family: var(--content-font);
  color: var( --text-charcoal);
}
a { color: inherit; }
button.pill {
  border-radius: 20px;
  height: 25px; 
  padding-bottom: 2px;
  padding-top: 0px;
 }

 div.navRow{
  background-color: #2c0866;
  color: white;
 }

 div.menu-links a{
  text-decoration: none;
  color: black;
 }

 div.menu-links li{
  list-style-type: none;
 }

 .hamburger-button {
  transform: scale(0.8); /* or 0.5, etc. */
  transform-origin: center;
 }

 .truncate-multiline {
  display: -webkit-box;

  -webkit-line-clamp: 10;     /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tiny-text { font-size: 0.5rem; }
.small-text { font-size: 0.75rem; }

h1, h2, h3, h4, .navbar-brand, .featured-post-title {  font-family: var(--heading-font);}
h2,h3,h4 { color: var( --text-grey); }
h1 { font-size: 2.0rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.10rem; } 

.post-date {
  text-transform: uppercase;

}