/* ===== Post List ===== */
.post-list {
  list-style: none;
}

.post-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.25rem 0;
}

.post-item__link {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.25;
}

.post-item__link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-item__date {
  font-size: 0.75rem;
  color: var(--text-secondary);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ===== View All Link ===== */
.view-all {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.view-all:hover {
  color: var(--text);
}

.view-all::after {
  content: " \2192";
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .post-item {
    flex-direction: column;
    gap: 0.0625rem;
  }
}

@media (max-width: 400px) {
  .post-item__link {
    font-size: 0.875rem;
  }

  .post-item__date {
    font-size: 0.6875rem;
  }
}
