main.post {
  background-color: var(--background-secondary);
  padding-top: 20px;
}
main.post section.hero {
  margin: 80px auto 50px;
}
@media screen and (max-width: 768px) {
  main.post section.hero {
    margin-bottom: 40px;
  }
}
main.post section.hero .container .title {
  text-align: center;
  max-width: var(--col-8);
  margin: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  main.post section.hero .container .title {
    max-width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }
}
main.post section.hero .container .thumbnail {
  max-width: var(--col-10);
  margin: auto;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  main.post section.hero .container .thumbnail {
    max-width: 100%;
  }
}
main.post section.hero .container .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
main.post section.content .container .content {
  max-width: var(--col-6);
  margin: auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  main.post section.content .container .content {
    max-width: 100%;
  }
}
main.post section.content .container .social-share {
  max-width: var(--col-6);
  margin: auto;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  main.post section.content .container .social-share {
    max-width: 100%;
  }
}
main.post section.content .container p {
  color: var(--color-text-light);
  font-weight: 400;
  line-height: 24px;
  font-size: 16px;
}