/* ============================================================
   NOW PAGE — Chase Mazur
   ============================================================ */

.now-main {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 80px;
  min-height: 100vh;
}

.now-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
.now-header {
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-soft);
}

.now-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}

.now-updated {
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

/* Two-column grid */
.now-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Blocks */
.now-block {
  margin-bottom: 52px;
}

.now-block:last-child {
  margin-bottom: 0;
}

.now-block-heading {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.now-block-icon {
  font-size: 15px;
  letter-spacing: 0;
}

/* Lists */
.now-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.now-list li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.now-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-dim);
}

.now-list a {
  color: var(--accent);
  border-bottom: 1px solid rgba(107,122,255,0.25);
  transition: border-color var(--transition);
}

.now-list a:hover {
  border-color: var(--accent);
}

/* Media cards (books, podcasts) */
.now-list--cards {
  gap: 8px;
}

.now-list--cards li {
  padding-left: 0;
}

.now-list--cards li::before {
  display: none;
}

.now-media-item {
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}

.now-media-item:hover {
  border-color: var(--border);
  background: var(--bg-3);
}

.now-media-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}

.now-media-sub {
  font-size: 12px;
  color: var(--text-dim);
}

/* Prose */
.now-prose {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.now-prose:last-child {
  margin-bottom: 0;
}

/* Worth reading links */
.now-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.now-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
  color: inherit;
}

.now-link-item:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.now-link-item:hover svg {
  color: var(--accent);
  transform: translate(2px, -2px);
}

.now-link-item svg {
  color: var(--text-dim);
  flex-shrink: 0;
  transition: color var(--transition), transform var(--transition);
}

.now-link-placeholder {
  opacity: 0.4;
}

.now-link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.now-link-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.now-link-source {
  font-size: 12px;
  color: var(--text-dim);
}

/* Photo grid */
.now-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.now-photo-placeholder {
  aspect-ratio: 1;
  background: var(--bg-2);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: default;
  transition: border-color var(--transition), background var(--transition);
}

.now-photo-placeholder:hover {
  border-color: var(--text-dim);
  background: var(--bg-3);
}

.now-photo-placeholder span {
  font-size: 22px;
  color: var(--text-dim);
  font-weight: 300;
}

.now-photo-placeholder p {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.now-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  display: block;
  transition: opacity var(--transition);
}

.now-photo:hover {
  opacity: 0.85;
}

.now-photo-hint {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}

.now-photo-hint code {
  background: var(--bg-3);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 11px;
  color: var(--text-muted);
}

/* Footer note */
.now-footer-note {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}

.now-footer-note p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

.now-footer-note a {
  color: var(--accent);
  border-bottom: 1px solid rgba(107,122,255,0.25);
  transition: border-color var(--transition);
}

.now-footer-note a:hover {
  border-color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
  .now-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .now-inner { padding: 0 24px; }
}
