:root {
  --sds-typography-weight-semibold: 600;
}

@media screen and (min-width: 961px) {
  .journal .inner {
    padding-top: 0px;
  }
}

.journal .section-title--en {
  font-family: "Roboto Slab";
  font-size: 65px;
  font-style: normal;
  font-weight: 700;
}

.category-list-wrap {
  margin-top: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
@media screen and (max-width: 960px) {
  .category-list-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.category-list-wrap li {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  list-style: none;
  border: 1px solid #000;
}
@media screen and (max-width: 960px) {
  .category-list-wrap li {
    font-size: 14px;
    line-height: 30px;
  }
}

.category-list-wrap li a {
  display: block;
  padding: 0 15px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #000;
  background: #fff;
}

.category-list-wrap li a:hover {
  color: #fff;
  background: #000;
}

.category-list-wrap li.current-cat a {
  color: #fff;
  background: #000;
}

.archive-list-wrap {
  margin-top: 80px;
  margin-bottom: 54px;
  padding-bottom: 190px;
  display: grid;
  border-bottom: 1px solid #000;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px 60px;
}
@media screen and (max-width: 960px) {
  .archive-list-wrap {
    grid-template-columns: 1fr;
    gap: 60px 0;
    padding-bottom: 100px;
  }
}

.article-list {
  position: relative;
}

.article-list a {
  display: block;
}

.article-list-category {
  font-size: 14px;
  font-weight: 700;
  line-height: 30px;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  padding: 0 10px;
  color: #fff;
  background: #000;
}

.article-list-image {
  width: 100%;
  height: auto;
}

.article-list-title {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 960px) {
  .article-list-title {
    font-size: 16px;
  }
}

.article-list-date {
  margin-top: 8px;
  color: #939191;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
}
.pager {
  padding-bottom: 30px;
  text-align: center;
}

.wp-pagenavi {
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 960px) {
  .wp-pagenavi {
    font-size: 16px;
  }
}

.wp-pagenavi span {
  display: inline-block;
  margin: 0 10px;
}

.wp-pagenavi a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: underline;
}

.wp-pagenavi .current {
  color: #aaa;
}

.wp-pagenavi .previouspostslink {
  position: relative;
  width: 42px;
  height: 42px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .wp-pagenavi .previouspostslink {
    width: 32px;
    height: 32px;
  }
}

.wp-pagenavi .previouspostslink:hover {
  background: #000;
}

.wp-pagenavi .previouspostslink:hover:before {
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}

.wp-pagenavi .previouspostslink:before {
  position: absolute;
  top: 14px;
  left: 17px;
  display: inline-block;
  width: 10px;
  height: 10px;
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}
@media screen and (max-width: 960px) {
  .wp-pagenavi .previouspostslink:before {
    top: 10px;
    left: 13px;
    width: 8px;
    height: 8px;
  }
}

.wp-pagenavi .nextpostslink {
  position: relative;
  width: 42px;
  height: 42px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none;
  border: 1px solid #000;
  border-radius: 50%;
}
@media screen and (max-width: 960px) {
  .wp-pagenavi .nextpostslink {
    width: 32px;
    height: 32px;
  }
}

.wp-pagenavi .nextpostslink:hover {
  background: #000;
}

.wp-pagenavi .nextpostslink:hover:before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.wp-pagenavi .nextpostslink:before {
  position: absolute;
  top: 14px;
  right: 17px;
  display: inline-block;
  width: 10px;
  height: 10px;
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
@media screen and (max-width: 960px) {
  .wp-pagenavi .nextpostslink:before {
    top: 10px;
    right: 13px;
    width: 8px;
    height: 8px;
  }
}