/* Type */

/*
.roboto-<uniquifier> {
  font-family: 'Roboto', sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.roboto-condensed-<uniquifier> {
  font-family: 'Roboto Condensed', sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

vollkorn-<uniquifier> {
  font-family: 'Vollkorn', serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

html {
  font-size: 16px; /* 16 is default for most browsers*/
}


@media screen and (min-width: 320px) {
  html { font-size: 120%; }
}
@media screen and (min-width: 992px) {
  html { font-size: 120%; }
}
@media screen and (min-width: 1200px) {
  html { font-size: 120%; }
}
@media screen and (min-width: 1600px) {
  html { font-size: 125%; }
}


body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: 'Roboto', sans-serif;
  font-optical-sizing: auto; 
  line-height:1.5;
  background-color:var(--cc-cream);
}

.text-condensed { font-family: 'Roboto Condensed',sans-serif; }
.text-serif { font-family: 'Vollkorn', serif; }

/* global typography */

h1,h2,h3,h4,h5,h6 { text-wrap:balance; color:inherit; }

h1 { font-family: 'Vollkorn', serif; font-size: 2.56rem; line-height:1.25; font-weight:700; margin-top:0px; margin-bottom: 1rem; }
h2 { font-size: 1.618rem; line-height:1.36; font-weight:500; margin-top:1rem; margin-bottom: 1rem; }
h3 { font-size: 1.1rem; line-height:1.5; font-weight:700; } 

h2.on-detail { font-family: 'Roboto Condensed',sans-serif; color:inherit; }
h2.on-detail { font-size: 0.85rem; font-weight:700; margin-top:1.5rem; margin-bottom: 1rem; text-transform:uppercase; letter-spacing:0.050rem; }

p, li { font-size:1rem; }
li { margin-bottom:0.25rem; } /* I like to differentiate between line height and items */
p.intro,p.lead { font-weight:inherit; font-size:1.1rem; }

label { color:inherit; }

hr { margin-top: 1rem; margin-bottom: 1rem; border: 0; border-top-color: currentcolor; border-top-style: none; border-top-width: 0px; border-top: 1px solid rgba(0,0,0,.1); opacity:1; }

hr.clearing-spacer { clear:both; background-color:inherit; border:0px; opacity:1; }

a { color:var(--cty-alink); text-decoration:underline; }
a:hover { color:var(--cty-ahover); text-decoration:underline; }

