.list-post > h2 {
  font-size: 21px;
  font-weight: bold;
  padding: 12px 0;
}
.list-post ul {
  box-sizing: border-box;
}

.list-post li {
  display: flex;
  flex-direction: column; 
  padding: 8px 0;
  gap: 4px; 
  border-bottom: 0.5px solid;
  padding: 8px 0;
}
.list-post li:last-child {
  border-bottom: none;
}
.list-post li .meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.list-post li .date {
  color: #000000;
  font-size: 12px;
  flex-shrink: 0;
}
.list-post li .categories {
  display: flex;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
  padding: 3px 0;
  margin-left: 4px;
}

.list-post li .categories a {
  font-size: 12px;
  color: #000000;
  text-decoration: none;
}
.list-post li .title {
  white-space: normal; 
  overflow: visible; 
  text-overflow: clip; 
  word-break: break-word;
}
.list-post li .title a {
  font-size: 21px;
  text-decoration: none;
}

.list-category h2 {
  font-size: 12px;
  font-weight: bold;
  padding: 12px 0;
}
.list-category div {
  padding: 8px 0 8px 10px;
}
.list-category div a {
  margin: 4px 6px;
  white-space: nowrap;
  font-size: 12px;
  display: inline-block;
}
.page-search #search-input {
  text-align: center;
  font-size: 21px;
  border: 1px solid #eaeaea;
  width: 100%;
  padding: 10px 0;
  background-color: transparent;
}
.page-search h1 {
  font-size: 21px;
  height: 46px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.page-search h1 i {
  font-size: 21px;
  margin-left: 6px;
}
.page-search .list-search li {
  list-style: disc;
  margin-left: 15px;
  margin-bottom: 20px;
}
.page-search .list-search a {
  display: block;
  border-bottom: 1px dashed #ccc;
}
.page-search .list-search .title {
  display: inline-block;
  word-break: break-all;
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 1px;
  border-bottom: 1px solid #999;
}
.page-search .list-search .content {
  display: block;
  font-size: 21px;
  color: #5a5a5a;
  word-break: break-all;
  padding: 10px 0;
}
.page-search .list-search .hint {
  font-size: inherit;
  font-weight: bold;
  color: #ff7f7f;
}
@media screen and (max-width: 560px) {
  .list-post > h2 {
    padding: 10px 0;
  }
  .list-post li {
    padding: 6px 0;
  }
  .list-post li .title a {
    font-size: 19px;
  }
  .list-post .categories {
    display: none;
    font-size: 12px;
  }
  .list-category h2 {
    padding: 10px 0;
  }
  .list-category div a {
    font-size: 12px;
  }
}
.welcome {
  font-size: 19px
  border-left: 3px solid #333333;
  background-color: #ededed;
  padding: 9px 9px 9px 15px;
}

