/** header **/
.post .index-hero, .page-template-archive-list .index-hero {
  background-image: url(../images/common/blog-bg.jpg);
  height: 390px;
}
.post .index-hero::after, .page-template-archive-list .index-hero::after {
  content: unset;
}

/** blog layout **/
.container {
  margin: 100px 0;
}
.page-title-wrap {
  margin-top: 100px;
}
.page-template-archive-list .text-warp {
  text-align: center;
}
.article-item {
  border-bottom: 1px solid #cacaca;
}
.article-item a {
  text-decoration: none;
  color: #333;
}
.article-item .article-item-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: center;
  padding: 10px 0;
}
.article-item .meta-wrap {
  display: flex;
  justify-content: flex-start;
  flex-basis: 20%;
}
.article-item .article-cat {
  border: 1px solid #2BA2D3;
  padding: 4px 14px;
  line-height: 1;
  color: #2BA2D3;
  font-size: 12px;
}
.article-item .article-date {
  font-size: 12px;
  color: #999;
  flex-basis: 55%;
}
.article-item .title-list {
  flex-basis: 76%;
}
.article-item .title-list h2 {
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
}
/** blog single **/
.article-info {
  display: flex;
  gap: 10px;
  margin: 14px 0;
  font-size: 14px;
}
.article-tag a {
  font-size: 14px;
  text-decoration: none;
  color: #333;
}
.article-tag ul {
  list-style-type: none;
  margin:0;
  padding:0;
}
.article-cat a {
  color: #B5B5B6;
  font-size: 14px;
  text-decoration: none;
  margin-right: 5px;
}
.article-cat a:before {
 content: "#";
 display: inline-block;
}
.article-main {
  border-top: 1px solid #333;
  padding-top: 20px;
}
.post p {
  margin-bottom: 16px;
}
.wp-block-heading {
  margin: 40px 0;
}

/** nav **/
.post-navigation a:hover {
  opacity: 0.7;
}
.post-navigation {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}
.nav-previous a {
  padding: 6px;
  border: 1px solid #0079C4;
  width: 30px;
  height: 30px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0079C4;
  text-decoration: none;
  border-radius: 50px;
  font-size: 10px;
}
.nav-home a {
  border: 2px solid #0079C4;
  width: auto;
  height: 40px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0079C4;
  text-decoration: none;
  border-radius: 50px;
  padding: 0 24px;
}
.nav-next a {
  border: 1px solid #0079C4;
  width: 30px;
  height: 30px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0079C4;
  text-decoration: none;
  border-radius: 50px;
  font-size: 10px;
}

/** pagenation **/
a.page-numbers:hover {
  opacity: 0.7;
}
ul.page-numbers {
  display: flex;
  gap: 14px;
  list-style-type: none;
  justify-content: center;
  margin-top: 60px;
}
a.page-numbers ,span.page-numbers {
  padding: 6px;
  border: 1px solid #0079C4;
  width: 40px;
  height: 40px;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0079C4;
  text-decoration: none;
  border-radius: 50px;
}
span.page-numbers.current {
  border: 1px solid #0079C4;
  background: #0079C4;
  color: #fff;
}

@media screen and (max-width: 768px) {
.container {
    margin: 50px 0;
}
.page-title-wrap {
    margin-top: 50px;
}
.article-item .article-item-inner{
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    flex-direction: column;
    justify-items: flex-start;
}
.article-item .meta-wrap {
    display: flex;
    justify-content: flex-start;
    flex-basis: 100%;
    width: 100%;
}
.article-item .article-date {
    font-size: 12px;
    color: #999;
    flex-basis: 26%;
}
.article-item .title-list {
    flex-basis: 100%;
}
.article-item .title-list {
    flex-basis: 100%;
    width: 100%;
}
}