/*  LAYOUT   */

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}


/* Header Layout */
body > header {
  height: 140px;
  text-align: center;
  position: fixed;
  width: 100%;
}

body > header div {
  margin: 0 15px;
  height: 100%;
  border-bottom: 2px solid black;
}

body > header h1 {
  padding-top: 44px;
  padding-bottom: 2px;
}

body > header  p {
  display: inline;
  
}

body > header  p > span {
    padding: 0 14px;
}

body > header  p > span:nth-of-type(2) {
  border-left: 1px solid black;
  border-right: 1px solid black;  
}


#menu {
  float: left;
}

#search {
  float:right;
}

/*  Page Layout  */
section {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
}

section:first-of-type {
  padding-top: 180px;
}

section > article, 
section > aside {
  width: 33.3%;
  margin: 0px;
  padding: 6px 18px;
}

section header {
  padding: 16px 0px;
}

header div.byline {
  margin-top: 11px;
}

header div.byline span:before{
  content: "/ ";
  padding: 0px 4px;
}

/* Aside Layout */
section:first-of-type aside {
  margin: 25px 25px 25px 32px;
  order: 4;
}

section:first-of-type aside h6 {
  margin: 8px 0px 20px 0px;
}

section:first-of-type aside h4 {
  margin-bottom: 11px;
  padding-right: 86px;
}

p {
  margin-top: 9px;
  margin-bottom: 9px;
}

/* Mega Layout */
section.mega > article {
  width: 100%;
}



/*   FONTS  */



p {
  font-family: serif;
  font-size: 18px;
  line-height: 1.2em;
}

body > header p {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  letter-spacing: 3.8px;
  font-weight: 400;
}

body > header a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
}

h1 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 59px;
  text-transform: uppercase;
}

h2 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 9.7vw;
  line-height: .6em;
}

h2 > span {
  font-size: 6.7vw;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 1.2px;
  line-height: 1.1em;
}

aside h4 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 1.3px;
  line-height: 1.1em;
}

aside h6 {
  font-family: sans-serif;
  font-size: 12px;
}

aside p {
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.3em;
}

header div.byline {
  font-family: sans-serif;
  font-size: 11px;
}

section.mega .byline {
  margin-left: .6vw;
}




/*  COLORS  */
body {
  background-color: rgb(220, 249, 189);
  color: rgb(56, 52, 52);
}

body > header {
  background-color: rgb(220, 249, 189);
}

section:first-of-type aside {
  background-color: rgba(56, 52, 52, .15);
}
