/* WRITING PAGE (list.html) */

.post-holder {
  margin-bottom: 36px;
  display: flex;
  position: relative;
  gap: 2rem;
  justify-content: space-between;
}

.post-holder.removed {
  display: none;
}

.post-description {
  width: 100%;
  font-size: 0.84em;
  font-style: italic;
  line-height: 1.3em;
}

.post-date {
  width: 6rem;
  flex-shrink: 0;
  font-size: 0.8em;
  text-align: right;
  color: var(--theme);
}

.active {
  background: var(--theme-light);
}

.tag-link {
  opacity: 0.5;
}

.tag-link::before {
  content: "#";
}

.mobile-tag-filter {
  display: none;
}

.tag-button {
  border: solid 1px var(--theme);
  padding: 0.5em 1em;
  font-size: 0.9rem;
  color: var(--theme);
}

@media (max-width: 1000px) {
  .mobile-tag-filter {
    display: block;
  }

  .tag-button {
    margin: 0.5em 1em 0.5em 0em;
  }
}
