:root {
  --blue: #1e2425  ; /*nav link colour*/
  --yellow:  #1E506D; /*contact button */

  --offwhite:  rgb(243, 243, 243); 
  --largemaxwidth: 1720px;
  --maxwidth: 1300px;
  --newgrey: #a6a6a6;
  --darkgrey:   #2f393d;
  --teal: #6e97ac;
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --outline-width: 3px;
  --outline-color: rgba(0, 125, 250, 1);
  --outline-offset: -3px; /*use where it could stick out of page structure*/
}
.blog-intro{
  width: 100%;
  height:850px; /*850*/
  position: relative;
}
.intro-picture{
  width: 100%;
  height: 100%;
}
.intro-picture img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-title-cont{
  background-color:#6e97acc7;
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
}
.blog h1{
  font-size: 3rem; 
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
}
.tags{
  font-size: 1rem;
  color: var(--offwhite);
}
.blog .bot{
  margin-bottom: 60px;
}
.blog .infop{
  margin-top: 20px;
}
.blog h2{
  color: var(--teal);
  font-size: 2rem; 
  font-weight: 600;
  margin-bottom: 25px;
  border-left: 6px solid var(--newgrey);
  padding-left: 10px;
}
.blog h3{
  font-size: 1.5rem; 
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 40px;
}
.blog p{
  margin-bottom: 20px;
}
.blog ul{
  margin-bottom: 30px;
  margin-top: 30px;
  list-style-position: inside;
}


@media screen and (max-width: 1150px) {
  .blog h1{
    font-size: max(calc( 3.2rem + calc(3.687vw + -44.40px)), 1.8rem);
  }
  .blog p{
    font-size: 1rem;
  }
  .blog ul{
    font-size: 1rem;
  }
  main li{
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 800px) {
  .out-in-grid{
    grid-template-columns: 1fr;
  }
  .blog h2{
    font-size: 1.5rem;
  }
  .blog h3{
    font-size: 1.2rem;
    text-align: center;
  }
  .blog-intro{
    height:700px;
  }
}
