:root {
}

*{
box-sizing: border-box;
margin: 0;
padding: 0;
}

html {
scroll-behavior: smooth;
}

body{
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: 300;
font-style: normal;
line-height: 1.6;
color: #222222;
background-color: #ffffff;
font-size: 18px;
}

.container{
display:grid;
grid-template-columns: calc(30% - 1rem) calc(70% - 1rem);
column-gap: 2rem;
width: 90vw;
max-width:1000px;
margin:auto;
border-top: 0.5px solid #444444;
border-bottom: 0.5px solid #444444;
margin-top:50px;
margin-bottom:100px;
}

.page-content{
margin-top:100px;
}

.icon-sm{
width:16px;
height:16px;
}

.masthead{
display: flex;
flex-direction: column;
}

.logo-type span{
font-size:42px;
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
color: #222222;
letter-spacing: -0.05em;
line-height: 0.75;
background-color: #fff700;
display: inline-block;
vertical-align: middle;
padding-top:50px;
}

.lede{
display:block;
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: 300;
font-style: normal;
font-size:24px;
line-height: 150%;
}

h1{
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
font-size:50px;
line-height: 110%;
margin-bottom:15px;
}

h2{
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
font-size:24px;
line-height: 110%;
margin-bottom:15px;
padding-top:35px;
}

h3{
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
font-size:18px;
line-height: 110%;
padding-top:15px;
}

a {
  color: #222222;
  text-decoration:underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
  text-decoration-color: #9c9c9c; 
}

a:visited {
  color: #222222;
}

a:hover {
  color: #222222;
  background-color:#fff700;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
  text-decoration-color: #9c9c9c; 
}

a:active {
  color: #222222;
}

p{
line-height: 1.75em;
margin-bottom:15px;
}

ul{
padding-left:25px;
}

ul li{
padding-left:10px;
}

@media (min-width: 801px) {
  nav a:hover::after{
    content:"";
    display:inline-block;
    width:1em;
    height:1em;
    background:url("../img/icons/arrow-forward.svg") no-repeat center/contain;
    margin-left: 0.6em;
    vertical-align:middle;
  }
}

nav a.active{
background-color:#fff700;
font-weight:600;
}

.slogan{
padding-top:25px;
padding-bottom:25px;
font-size:11px;
}

.slogan-seperator{
display:block;
}

.meta-copy{
display:block;
font-size:14px;
}

.footer{
margin-top:50px;
}

.nav-back{
margin-bottom:25px;
display:inline-block;
}

.footer p{
font-size:14px;
}

nav{
margin-top:85px;
margin-bottom:25px;
}

nav ul {
list-style: none;
margin: 0;
padding: 0;
}

nav li{
padding:0px;
}

nav a {
display: inline-block;
text-decoration: none;
line-height: 2.25em;
}

nav a:hover{
text-decoration: none;
}

.arrow-back {
  display: inline-flex;
  align-items: center;
}

.arrow-back::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/icons/arrow-back.svg") no-repeat center / contain;
  margin-right: .6em;
}

.arrow-forward {
  display: inline-flex;
  align-items: center;
}

.arrow-forward::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/icons/arrow-forward.svg") no-repeat center / contain;
  margin-left: .6em;
}

.bio-split{
display:flex;
}

.bio-split > div {
  flex: 1;
}

.headshot-small{
border-radius: 100%;
}

.headshot-large{
width:calc(100% - 50px);
margin:25px 25px 25px 0px;
border-radius: 5%;
}

@media (max-width: 800px) {

  h1{
  font-size:42px;
  }

  .container {
    grid-template-columns: 1fr;
    column-gap: 0;
    width: 85vw;
  }

  nav a{
  font-size:13px;
  }

  .slogan-seperator{
  display:inline-block;
  padding-left:15px;
  }

  .masthead {
  flex-direction: column-reverse;
  margin-top:25px;
  }

  nav ul {
  display: flex;
  justify-content:space-between;
  }

  nav{
  margin-top:0px;
  }

  .logo-type a{
  text-decoration:none;
  }

  body{
  font-size: 16px;
  }

  .bio-split{
  display:block;
  }

  .headshot-large{
  width:100%;
  max-width:500px;
  border-radius: 5%;
  margin:15px 0px 0px 0px;
  }

  .headshot-small{
  margin-left:0px;
  margin-top:10px;
  width: 35px;
  }

  .lede{
  font-size:20px;
  line-height: 150%;
  }

}