.page-notes .page-hero {
  padding: 2.5rem 2rem;
}

.notes-meta {
  margin: 1rem 0 0;
  color: var(--sk-muted);
  font-size: 0.92rem;
}

.notes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.notes-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--sk-surface);
  border: 1px solid var(--sk-border);
  border-radius: var(--sk-radius);
}

.notes-item__body {
  min-width: 0;
  flex: 1 1 16rem;
}

.notes-item__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 600;
}

.notes-item__meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: var(--sk-muted);
  font-size: 0.88rem;
}

.notes-item__download {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .page-notes .page-hero {
    padding: 1.75rem 1.25rem;
  }

  .notes-item {
    padding: 1rem;
  }

  .notes-item__download {
    width: 100%;
    justify-content: center;
  }
}
