/* NOW PAGE */

.page-header { margin-bottom: 56px; }
.datestamp {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--iron);
  margin-top: 12px;
}
.intro {
  font-size: 20px;
  color: var(--cream-dim);
  font-style: italic;
  margin-top: 24px;
  padding-left: 20px;
  border-left: 2px solid var(--amber-dim);
  line-height: 1.65;
}

/* SECTIONS */
.now-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.now-section:last-of-type { border-bottom: none; }
.now-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
}
.now-section .section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--amber-dim), transparent);
}

/* ITEMS */
.now-items { display: grid; gap: 0; }
.now-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
}
.now-item:first-child { padding-top: 0; }
.now-item:last-child { border-bottom: none; padding-bottom: 0; }
.item-text {
  font-family: 'Crimson Pro', serif;
  font-size: 17px;
  color: var(--cream-dim);
  font-weight: 300;
}
.item-text strong { color: var(--cream); font-weight: 600; }
.item-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-dim);
  white-space: nowrap;
}
.item-tag.blue { color: var(--blue-light); }
.item-tag.muted { color: var(--iron); }

/* NOT DOING */
.not-list { list-style: none; display: grid; gap: 10px; }
.not-list li {
  font-family: 'Crimson Pro', serif;
  font-size: 17px;
  color: var(--iron);
  padding-left: 20px;
  position: relative;
}
.not-list li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--rule);
}

/* ABOUT SIVERS */
.sivers-note {
  margin-top: 56px;
  padding: 20px 24px;
  border: 1px solid var(--rule);
  background: var(--surface);
}
.sivers-note p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.7;
  color: var(--iron);
  letter-spacing: 0.04em;
  margin: 0;
}
.sivers-note a { color: var(--iron); border-bottom-color: var(--rule); font-size: 11px; }
.sivers-note a:hover { color: var(--cream-dim); }
