.post-section {
  max-width: 860px;
  margin: 0 auto 56px;
}

.post-section:last-of-type {
  margin-bottom: 0;
}

.post-section-heading {
  margin: 0 0 18px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.post-list {
  display: grid;
  gap: 18px;
}

.post-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.post-item:hover,
.post-item:focus-within {
  background: var(--surface-hover);
  border-color: var(--link);
}

.post-link {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  color: inherit;
  text-decoration: none;
}

.post-link:focus {
  outline: none;
}

.post-link:hover {
  text-decoration: none;
}

.post-link:focus-visible {
  outline: 2px solid var(--link);
  outline-offset: 4px;
}

.post-title {
  margin: 0;
  font-size: 22px;
  font-family: var(--font-heading);
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.post-item:hover .post-title,
.post-item:focus-within .post-title {
  color: var(--link);
}

.post-date {
  margin: 0;
  color: var(--date);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.post-subtitle {
  margin: 0;
  color: var(--subtitle);
  font-size: 16px;
  letter-spacing: 0.04em;
}

.empty-state {
  margin: 80px auto 0;
  max-width: 760px;
  text-align: center;
  color: var(--muted);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
