.post-container .post-content {
  flex-direction: column;
  /* padding: 0; */

  padding: 0 16px 20px;
}

body {
  position: relative;
}

body::before {
  display: none;
  /* top: 50px;
  height: 200px;
  position: absolute; */
}

.post-container .post-header {
  z-index: 98;
}

.post-container .post-header .header {
  padding: 0.5px 16px;
}

.post-header .header .header-menu {
  display: none;
}

.post-header .header .header-menu-mobile {
  display: flex;
  column-gap: 12px;
}

.post-header .header .header-menu-mobile div {
  display: block;
  width: 28px;
  height: 28px;
  background-color: orange;
}

.header-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  background-color: white;
  z-index: 100;
  display: block;

  transition: right var(--hl-transition-duration) ease;
}

body.header-open .header-drawer {
  right: 0;
}

.header-drawer .header-avatar {
  text-align: center;

  padding: 30px 0 20px;
}

.header-drawer .header-avatar img {
  height: 90px;
  width: 90px;
  object-fit: cover;
  border-radius: 100%;
}

.header-drawer>p {
  text-align: center;
  color: #333;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.header-drawer .sidebar-nav {
  margin-top: 20px;
}

.header-drawer .sidebar-nav .sidebar-content {
  padding: 16px 12px;
}

.header-drawer .sidebar-nav .nav-content li~li {
  border-top: 1px solid #e0e0e0;
}

.header-drawer .sidebar-nav .sidebar-search {
  position: absolute;
  bottom: 16px;
  margin: 0;

  width: calc(100% - 32px);
}

.header-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;


  transition: opacity var(--hl-transition-duration) ease;
}

body.header-open .header-overlay {
  opacity: 1;
}

.post-container .post-content .post-sidebar {
  width: 100%;
  position: relative;
  top: unset;
  align-self: unset;
  margin-bottom: 40px;
  display: none;
}

.post-content-container {
  width: 100%;
  padding: 0;
}

.post-content-container>a>.post-article {
  margin-top: 16px !important;
}

.post-container .post-title {
  height: 200px;
  padding: 0 32px;

  display: block;

  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url('../images/blog-bg-2.jpg') center / cover no-repeat;
}

.post-container .post-title-mobile~.post-title {
  display: none;
}

.post-container .post-title-mobile {
  height: auto;
  padding: 50px 1rem;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-blend-mode: multiply;
  transition: background-color var(--hl-transition-duration) ease;
  background-color: rgba(0, 0, 0, 0.5);
}

.post-container .post-title h1 {
  font-size: 26px;
  text-align: center;
  margin: 0;
  line-height: 1.7;

  display: block;
}

.post-container .post-article-thumb {
  height: 150px;
}

.post-container .post-article-thumb * {
  display: none;
}


.post-article-text h4 {
  font-size: 14px;
}

.post-article-text {
  font-size: 13px;
  padding: 16px;

  border-bottom: 1.5px solid #e0e0e0;
  border-left: 1.5px solid #e0e0e0;
  border-right: 1.5px solid #e0e0e0;

  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.post-article-text .post-article-title,
.post-article-text .post-article-info {
  display: block;
}

.post-article-title {
  font-size: 20px;
  color: black;
  line-height: 1.5;
}

.post-article-info {
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  margin-top: 0;
}

.post-article-text .post-article-line-clamp {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

#post .post-banner {
  height: unset;
  padding: 50px 0;

  display: none;
}

#post .post-banner h1 {
  font-size: 20px;
}

#post .post-text {
  padding: 0;
  margin-top: 16px;
}

#post .post-text h2 {
  font-size: 18px;
}

#post .post-last-update {
  font-size: 14px;
  margin-top: 8px;
}

.comments-container {
  margin-top: 1rem;
  padding: 0.5rem 0 0.25rem;
  font-size: 14px;
}

.comments-container .respond form,
.comments-container .respond form p,
.comments-container .respond h3 {
  margin: 0.9rem 0;
}

.comments-container .respond .comments-info-form {
  flex-direction: column;
  row-gap: .5rem;
}

.comments-container .respond h3 {
  font-size: 1rem;
}

.post-container .site-info {
  font-size: 14px;
  padding: 12px;
  margin-top: 1rem;

  border-bottom: none;

  border: 1px solid #e0e0e0;
}

.yue table,
.yue p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.yue h2 {
  margin: 0.8rem 0;
}

.yue th,
.yue td {
  padding: 4px 4px 4px 5px;
}

.yue table thead tr {
  vertical-align: top;
}