.post .post-header {
  display: none;
  margin: 0px 0 42px 0;
  text-align: center;
}

@media(max-width: 992px) {
  .post .post-header {
    display: block;
  }
}

.post .page-title {
  font-size: 2rem;
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

@media(max-width: 992px) {
  .post .page-title {
    font-size: 3rem;
  }
}

.post .post-cover {
  margin: 0 auto;
  width: min(100%, 620px);
}

.post .post-cover img {
  border-radius: 8px;
  width: 100%;
}

.post-meta {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .5rem;
  margin-bottom: 1rem;
}

.post-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.post-timeText {
  line-height: 0;
}

.post-time .post-calendarButtons {
  display: flex;
  gap: .5rem;
}

.post-time .post-calendarButton {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -.2rem;
  transition: transform 0.2s;
}

.post-time .post-calendarButton:hover {
  transform: scale(1.1);
}

.post-time .post-calendarIcon {
  width: 2rem;
  opacity: 0.5;
}

.post h2 {
  font-size: calc(1.325rem + 0.9vw);
}

.post h3 {
  margin-top: 2rem;
}