article{
  h3 {
    position: relative;
    padding: .5rem 5rem;
    width: max-content;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--main-color);
    display: block;
    text-align: center; 
    margin: 3rem auto;
    margin-inline: auto;
  }
  h3::before,
  h3::after {
    content:'';
    position: absolute;
    width: 30px;
    height: 30px;
  }
  h3::before {
    border-left: solid 1px var(--main-color);
    border-top: solid 1px var(--main-color);
    top:0;
    left: 0;
  }
  h3::after {
    border-right: solid 1px var(--main-color);
    border-bottom: solid 1px var(--main-color);
    bottom:0;
    right: 0;
  }
  h3 span:before,
  h3 span:after {
    content:'';
    position: absolute;
    width: 46px;
    height: 46px;
    rotate: 45deg;
  }
  h3 span:before {
    border-left: solid 1px var(--main-color);
    top:2px;
    left: 2px;
  }
  h3 span:after {
    border-right: solid 1px var(--main-color);
    bottom:2px;
    right: 2px;
  }
}

article{
  padding: 3rem 0;
  section{
      width: clamp(48rem, 90%, 68.75rem);
      margin: 0 auto;
      color: var(--text-color);
  }
}

@media (max-width: 767px){
  article{
    section{
        width: 90%;
    }
  }
}

.blog__time{
  text-align: right;
  border-bottom: 1px solid var(--main-color);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
