/*
 Theme Name:   Promptless Theme Child
 Template:     promptless
*/

/*
#my_content::after {
	content: "（これはフィクションです）";
	display: inline-block;
	margin-top: 1em;
}
*/

.cat-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.8em;
  font-weight: 500;
  color: #555;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cat-badge:hover {
  border-color: #333;
  color: #000;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.post-tags li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: #ccc;
}

