main {
  overflow: hidden;
}

.category-pagination {
  justify-content: start;
  margin-top: 34px;
}

.category-pagination a,
.category-pagination span {
  display: none;
}
.category-pagination .previous-page,
.category-pagination .next-page {
  display: flex;
}
.category-pagination .previous-page {
  margin-left: 0;
  margin-right: 8px;
}

#hero {
  margin-bottom: 0;
}

.post-inner {
  margin-top: 40px;
  gap: 0 10px;
}

.post-inner .text {
  flex-basis: 100%;
  flex-shrink: 0;
  padding-right: 10px;
}

.post-inner img {
  margin-top: 5px;
  width: 100%;
}

.post-inner .date {
  font-size: 13px;
  margin-bottom: 4px;
}

.post-inner .title {
  font-size: 26px;
}

.post-inner .post-content {
  margin-top: 19px;
  padding-top: 20px;
  padding-right: 30px;
  border-top: 1px solid #e5e5e5;
  font-size: 15px;
  line-height: 22px;
}

@media screen and (max-width: 992px ) {
  .post-inner {
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .post-inner .text,
  .post-inner .image {
    flex-basis: 100%;
  }
  .post-inner .image {
    position: relative;
    order: 1;
  }
  .post-inner .post-content {
    padding-right: 0;
  }
  .post-inner .text {
    position: relative;
    order: 2;
    padding: 0;
  }
  .post-inner img {
    margin-top: 0;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px ) {
  .post-inner img {
    width: 101vw;
    margin-top: 9px;
    margin-bottom: 25px;
  }
  .post-inner .date {
    font-size: 12px;
  }
  .post-inner .title {
    font-size: 23px;
  }
  .post-inner .post-content {
    margin-top: 15px;
    padding-top: 22px;
    font-size: 14px;
    line-height: 19px;
  }
  .category-pagination {
    margin-top: 44px;
  }
  .category-pagination .previous-page {
    margin-right: 0;
  }
  .category-pagination .next-page {
    margin-left: 27px;
  }
}