@charset "UTF-8";
.directory-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-list-main {
  padding: 2em;
}

.page-list {
  max-width: 40em;
  margin-inline: auto;
}

.page-list-year {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-block: 1em;
}
.page-list-year__header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-list-year__header h2::before {
  content: "❦";
  display: inline-block;
  line-height: 1em;
  margin-right: 0.5em;
  transform: rotate(90deg);
}
.page-list-year__header h2::after {
  content: "❦";
  display: inline-block;
  line-height: 1em;
  margin-left: 0.5em;
  transform: rotate(270deg);
}

.page-item {
  display: block;
  padding: 0.5em;
  background-color: white;
  border-radius: 4px;
  box-shadow: var(--shadow-s);
  transition: box-shadow ease-in-out 0.25s;
  text-decoration: unset;
}
.page-item:hover {
  box-shadow: var(--shadow-m);
}
.page-item__header {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  color: black;
}
.page-item__header time {
  color: var(--c-text-muted);
}
.page-item__desc {
  margin-top: 0.5em;
  color: black;
  text-align: justify;
  text-justify: auto;
}
