.each-category:not(:last-child) {
  margin-bottom: 54px;
  border-bottom: 1px solid #d8d8d8;
}
.each-category .more-link {
  display: block;
  text-align: right;
  font-size: 14px;
  color: #152ed3;
  text-decoration: underline;
}
.each-category .more-link:hover {
  text-decoration: none;
}

.category-group-title {
  font-size: 21px;
  line-height: 1.6;
}

.category-description {
  padding-top: 4px;
  font-size: 13px;
}

.article-title {
  margin-bottom: 10px;
}
@media screen and (max-width: 800px) {
  .article-title {
    font-size: 25px;
  }
}

.post-list {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin: 22px 0;
  padding: 0;
}
.post-list .category-item {
  width: calc(33.3% - 16px);
}
.post-list .category-item img {
  height: auto;
}
.post-list .category-item .category-detail {
  position: relative;
  margin: 7px 0;
  font-size: 12px;
}
.post-list .category-item .category-detail .category {
  color: #152ed3;
  font-weight: 500;
}
.post-list .category-item .category-detail .date {
  position: absolute;
  top: 0;
  right: 0;
  color: #a5abb2;
}
.post-list .category-item .title {
  margin-top: 7px;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 800px) {
  .post-list {
    display: block;
  }
  .post-list .category-item {
    width: unset;
  }
  .post-list .category-item:not(:first-child) {
    margin-top: 15px;
  }
  .post-list .category-item a {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    gap: 15px;
  }
  .post-list .category-item a img {
    width: 39.42%;
    order: 2;
  }
  .post-list .category-item a .category-detail {
    width: 60.58%;
    order: 1;
    margin: 0;
  }
  .post-list .category-item a .category-detail .category {
    font-size: 10px;
  }
  .post-list .category-item a .category-detail .title {
    font-size: 13px;
  }
  .post-list .category-item a .category-detail .date {
    position: unset;
    margin-top: 7px;
    font-size: 9px;
  }
}

.related-keywords-container {
  display: flex;
  align-items: center;
  font-size: 13px;
}
.related-keywords-container .related-keywords-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.related-keywords-container .related-keywords-list .related-keywords-list-item {
  display: inline-block;
  padding: 3px 10px 2px;
  background-color: rgba(28, 67, 158, 0.06);
  transition: background 0.2s ease-out, color 0.2s ease-out;
  line-height: 1.8;
  flex-wrap: nowrap;
}
.related-keywords-container .related-keywords-list .related-keywords-list-item:hover {
  background-color: #152ed3;
  color: #fff;
}
.related-keywords-container .related-keywords-list .related-keywords-list-item a:hover {
  opacity: unset;
}

@media screen and (max-width: 800px) {
  .related-keywords-container {
    margin-top: 28px;
    flex-direction: column;
    align-items: flex-start;
  }
  .related-keywords-list {
    padding: 0;
  }
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links span,
.nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(28, 67, 158, 0.06);
  font-size: 14px;
  margin: 0 5px;
  text-align: center;
  font-weight: bold;
  border-radius: 2px;
  transition: background 0.2s ease-out, color 0.2s ease-out;
  box-sizing: border-box;
}

.nav-links span.current,
.nav-links a:hover {
  background-color: #193be1;
  color: #fff;
}