.post-list {
  user-select: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
  max-width: 980px;
  margin: auto;
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .post-list {
    grid-template-columns: 1fr;
    max-width: 366px;
  }
}
.post-list.not-index {
  margin-top: 100px;
}

.post-list-item {
  overflow: hidden;
  border-radius: var(--radius-large);
}
@container document-body style(--config-corner-squircle: true) {
  @supports (corner-shape: squircle) {
    .post-list-item {
      corner-shape: squircle;
      --radius-tiny: 10px;
      --radius-small: 20px;
      --radius-medium: 30px;
      --radius-large: 40px;
      --radius-full: 999px;
    }
    .post-list-item * {
      --radius-tiny: 4px;
      --radius-small: 8px;
      --radius-medium: 12px;
      --radius-large: 16px;
      --radius-full: 999px;
    }
  }
}
.post-list-item {
  background-color: var(--color-background-secondary);
}
.post-list-item > a {
  color: var(--color-text-primary);
  text-decoration: none;
  display: block;
  height: stretch;
}
.post-list-item > a .cover-img {
  overflow: hidden;
  height: 266px;
}
.post-list-item > a .cover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1);
  transition: scale 400ms cubic-bezier(0.4, 0, 0.25, 1), filter 400ms cubic-bezier(0.4, 0, 0.25, 1);
}
.post-list-item > a:hover .cover-img img, .post-list-item > a:focus-visible .cover-img img {
  scale: 1.03;
  filter: brightness(0.85);
}
.post-list-item > a:active .cover-img img {
  scale: 1;
  filter: brightness(0.65);
}
.post-list-item > a .title {
  font-size: 24px;
  line-height: 1.16667;
  font-weight: 700;
  max-height: 7em;
  overflow: hidden;
}
.post-list-item > a .content {
  padding: 32px;
}
.post-list-item > a .categories {
  color: var(--color-text-accent);
  margin-bottom: 6px;
  font-weight: 600;
}
.post-list-item > a .categories span {
  display: block;
  font-size: 11px;
  margin-right: 6px;
  text-decoration: none;
}
.post-list-item > a .excerpt {
  margin-top: 12px;
  font-weight: normal;
  font-size: 15px;
  color: var(--color-text-tertiary);
}
.post-list-item > a .excerpt > * {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 800px) {
  .post-list-item > a .content {
    font-size: 12px;
  }
}
.post-list-item > a .time {
  font-size: 14px;
  line-height: 1.28577;
  font-weight: 600;
  display: block;
  margin-top: 12px;
  color: var(--color-text-secondary);
}