.post-list__item {
  display: block;
  border-bottom: 1px solid rgba(var(--c-black) / 0.2);
  padding: 1rem 0;
  text-decoration: none;
}
.post-list__item:hover {
  text-decoration: underline;
}
.post-list__date {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.webgene-pagination ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding: 0;
  margin: 2rem 0 0 0;
}
.webgene-pagination ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: rgba(var(--c-blue) / 1);
  color: rgba(var(--c-white) / 1);
  box-shadow: 0 0 1rem rgba(0 0 0 / 0.14);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  height: 3.5rem;
  min-height: 3.5rem;
  width: 3.5rem;
  min-width: 3.5rem;
  text-decoration: none;
  transition: all 150ms ease;
  font-weight: 700;
}
.webgene-pagination ul li a:hover {
  background-color: rgba(var(--c-blue) / 0.9);
}
.webgene-pagination ul li.selected a {
  background-color: rgba(var(--c-gray) / 1);
}
.webgene-pagination ul li.selected a:hover {
  background-color: rgba(var(--c-gray) / 1);
}

.post-detail__header {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(var(--c-black) / 0.2);
  padding-bottom: 1rem;
}
.post-detail__date {
  font-size: 0.875rem;
  font-weight: 700;
}
.post-detail__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  text-align: center;
}
.post-detail__description {
  font-size: 0.875rem;
  color: rgba(var(--c-gray) / 1);
  padding: 1rem;
  border: 1px dashed rgba(var(--c-black) / 0.2);
}
.post-detail__body {
  color: rgba(var(--c-darkgray) / 1);
}
.post-detail__body > * + * {
  margin-top: 1.5rem;
}
.post-detail__content * + * {
  margin-top: 1.25rem;
}
.post-detail__image {
  margin-bottom: 2rem;
}
.post-detail__image:empty,
.post-detail__description:empty {
  display: none;
}
.post-detail__pdf-link {
  margin-top: 1rem;
}
.post-detail__pdf-link[href=""] {
  display: none;
}
.post-detail__backlink {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--c-black) / 0.2);
  display: flex;
  justify-content: center;
}

.eq-list + .eq-list {
  margin-top: 3rem;
}
.eq-title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.eq-list .webgene-blog {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}
.eq-list .webgene-blog + .webgene-blog {
  margin-top: 1.5rem;
}
.eq-list .webgene-blog:has( .eq-list__item--text-only) {
  display: block;
}
.eq-list__item, .eq-list__item--text-only {
  display: block;
  text-decoration: none;
}
.eq-list__item:hover, .eq-list__item--text-only:hover {
  text-decoration: underline;
}
.eq-list__item:not([href]):hover, .eq-list__item--text-only:not([href]):hover {
  text-decoration: none;
}
.eq-list__item--text-only {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(var(--c-black) / 0.2);
}
.eq-list__item .eq-list__title {
  margin-top: 0.875rem;
}
.eq-detail__header {
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(var(--c-black) / 0.2);
}
.eq-detail__title {
  font-size: 1.5rem;
  font-weight: 700;
}
.eq-detail__body {
  display: flex;
  flex-direction: column;
}
.eq-detail__image img {
  width: 100%;
}
.eq-detail__content {
  margin-top: 2.5rem;
}
.eq-detail__image:empty {
  display: none;
}

@media screen and (min-width: 1024px) {
  .eq-list .webgene-blog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .eq-detail__body {
    flex-direction: row;
  }
  .eq-detail__image {
    flex: 0 0 50%;
  }
  .eq-detail__content {
    flex: 1 1 auto;
    margin-top: 0;
    margin-left: 2.5rem;
  }
}