.notes-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem;
}

.notes-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 1.5rem;
  align-items: start;
}

/* Main */
.notes-main {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  min-height: 500px;
}

.notes-header { margin-bottom: 1.5rem; }
.notes-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 4px;
}
.notes-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Post list */
.post-item {
  padding: 1.25rem 0;
  border-bottom: 0.5px solid var(--border);
  cursor: pointer;
}
.post-item:first-child { padding-top: 0; }
.post-item:last-child { border-bottom: none; }
.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.post-date { font-size: 11px; color: var(--text-faint); }
.post-season-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
}
.badge-Spring  { background: #EAF3DE; border: 0.5px solid #C0DD97; color: #27500A; }
.badge-Summer  { background: #FAEEDA; border: 0.5px solid #FAC775; color: #633806; }
.badge-Autumn  { background: #FAECE7; border: 0.5px solid #F5C4B3; color: #4A1B0C; }
.badge-Winter  { background: #E6F1FB; border: 0.5px solid #B5D4F4; color: #0C447C; }
.post-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color 0.1s;
}
.post-item:hover .post-title { color: var(--text-muted); }
.post-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}
.post-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.post-loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  color: var(--text-faint);
}
.post-tag {
  font-size: 10.5px;
  padding: 2px 8px;
  border-radius: 20px;
  border: 0.5px solid var(--border);
  color: var(--text-faint);
  background: var(--bg-soft);
}
.read-more {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: auto;
}

/* Article */
.art-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 1.25rem;
  font-family: 'Source Serif 4', serif;
  padding: 0;
  transition: color 0.1s;
}
.art-back:hover { color: var(--text); }
.art-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.6rem;
}
.art-date { font-size: 12px; color: var(--text-faint); }
.art-season { font-size: 10px; padding: 2px 8px; border-radius: 20px; }
.art-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.art-lede {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  border-left: 2px solid var(--green-mid);
  padding-left: 1rem;
  margin-bottom: 1rem;
  font-style: italic;
}
.art-loc-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.art-loc-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--green-light);
  border: 0.5px solid var(--green-mid);
  color: var(--green-dark);
}
.art-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  border-top: 0.5px solid var(--border);
  padding-top: 1.25rem;
}
.art-body p { margin-bottom: 0.85rem; }
.art-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  margin: 1.25rem 0 0.5rem;
  border-bottom: 0.5px solid var(--border);
  padding-bottom: 4px;
}
.art-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  margin: 1rem 0 0.4rem;
}
.art-body hr {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 1.25rem 0;
}
.art-body strong { font-weight: 500; color: var(--text); }
.art-body em { font-style: italic; }
.art-tags-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 0.5px solid var(--border);
}

/* Sidebar */
.notes-sidebar {
  position: sticky;
  top: 70px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sidebar-section {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
}
.sidebar-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.6rem;
}
.season-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 8px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.1s;
}
.season-item:hover { background: var(--bg-soft); }
.season-item.active { background: var(--green-light); color: var(--green-dark); font-weight: 500; }
.season-count { font-size: 11px; color: var(--text-faint); }
.season-item.active .season-count { color: var(--green); }
.archive-list { display: flex; flex-direction: column; gap: 2px; }
.archive-item {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 0.5px solid var(--border);
  cursor: pointer;
  transition: color 0.1s;
}
.archive-item:last-child { border-bottom: none; }
.archive-item:hover { color: var(--text); }
.archive-count { font-size: 11px; color: var(--text-faint); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 5px; }
.cloud-tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 20px;
  border: 0.5px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.1s;
  background: var(--bg);
}
.cloud-tag:hover { background: var(--bg-soft); color: var(--text); }
.cloud-tag.active { background: var(--green-light); border-color: var(--green-mid); color: var(--green-dark); }