/* ==========================
   BLOG 
========================== */

.blog-main{
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 80px;
  box-sizing: border-box;
}

.blog-main h1{
  margin: 0 0 14px;
}

.blog-main h2{
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 22px;
  line-height: 1.3;
  margin: 28px 0 12px;
  padding-top: 1px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.blog-main p{
  margin: 0 0 18px;
  line-height: 1.55;
}

.blog-main ul{
  padding-left: 0;
  margin: 16px 0 20px;
  list-style-position: inside;
}

.blog-main li{
  margin-bottom: 6px;
  line-height: 1.45;
}

.blog-figure{
  margin: 26px 0 30px;
  text-align: center;
}

.blog-figure img{
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.blog-caption{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(0,0,0,0.65);
}

.blog-cta{
  margin-top: 40px;
}

.blog-cta-link{
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #662D91;
  text-decoration: none !important;
  border-bottom: none !important;
  display: inline-block;
  transition: color 0.3s ease;
}

.blog-cta-link:hover,
.blog-cta-link:focus{
  color: #8e44ad;
  text-decoration: none !important;
  border-bottom: none !important;
}

/* BACK LINK */
.back-row{
  max-width: 900px;
  margin: 24px auto 0;
  display: flex;
  justify-content: flex-end;
}

.back-link{
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  border-bottom: none !important;
  color: #000;
  padding-bottom: 3px;
  transition: color 0.25s ease;
}

.back-link:hover,
.back-link:focus{
  color: #8e44ad;
}

/* SIGNATURE */
.blog-signature{
  margin-top: 20px;
  margin-bottom: 26px;
  text-align: center;
  font-family: "Freestyle Script", cursive;
  font-weight: 400;
  color: #662D91;
  font-size: clamp(16px, 4vw, 42px);
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-shadow: 0.2px 0 0 #662D91, -0.2px 0 0 #662D91;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

@media (max-width: 768px){
  .blog-main{
    padding-left: 56px;
    padding-right: 56px;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .blog-main p{
    margin-bottom: 22px;
    line-height: 1.6;
  }

  .blog-figure{
    margin: 22px 0 26px;
  }

  .blog-figure img{
    max-width: 100%;
  }

  .blog-cta-link{
    font-size: 17px;
  }

  .back-row{
    justify-content: center;
  }
}