/* Blog / Field Notes — extends about.css.
 *
 * The page reuses the about chrome (field, ticker, reg-marks, wordmark,
 * comp-number, back link, footer). Only the hero status note, the article
 * grid, and the topics block need their own rules.
 *
 * Same breakpoint pattern as about.css: 1100 / 900 / 700 / 600 / 420.
 */

/* ------------------------------------------------------------------
 * Hero — borrows .about-hero, then adds the status note.
 * ------------------------------------------------------------------ */

.blog-hero .blog-status {
  margin-top: 32px;
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pova-orange);
  opacity: 0.75;
  /* Honest disclosure: posts aren't published yet. Lives in the hero
   * so it's the second thing a reader sees after the lede. */
}

/* ------------------------------------------------------------------
 * Article grid — six cards, same glass-card posture as the values
 * grid on about.html, but with their own meta row and link.
 * ------------------------------------------------------------------ */

.blog-grid-section {
  /* No top border on the very first body section so the hero status
   * line and the grid feel like one block. */
  border-top: none;
  padding-top: 60px;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.note-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--glass-radius);
  background: rgba(15, 15, 17, 0.4);
  min-height: 280px;
  transition: border-color var(--t-fast) var(--ease-out),
              transform var(--t-fast) var(--ease-out);
}

.note-card:hover {
  border-color: rgba(255, 93, 1, 0.35);
  transform: translateY(-2px);
}

/* corner "+" marks — same posture as .value-card */
.note-card::before,
.note-card::after,
.note-card > .corners::before,
.note-card > .corners::after {
  content: "+";
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--pova-white);
  opacity: 0.4;
  line-height: 1;
}
.note-card::before { top: 8px; left: 8px; }
.note-card::after { top: 8px; right: 8px; }
.note-card > .corners::before { bottom: 8px; left: 8px; }
.note-card > .corners::after { bottom: 8px; right: 8px; }

/* Meta row — index left, date right. Both mono. */
.note-card .note-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.note-card .n-index {
  font-family: var(--font-mono);
  font-size: var(--fs-mono-xs);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--pova-orange);
  opacity: 0.85;
}

.note-card .n-date {
  font-family: var(--font-mono);
  font-size: var(--fs-mono-xs);
  letter-spacing: 0.2em;
  color: var(--pova-white);
  opacity: 0.5;
}

/* Category tag — small chip, mono, sits above the headline */
.note-card .n-tag {
  align-self: flex-start;
  font-size: var(--fs-mono-xs);
  letter-spacing: 0.3em;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  color: var(--pova-white);
  opacity: 0.75;
}

.note-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin: 4px 0 0;
  max-width: 26ch;
}

.note-card p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  opacity: 0.78;
  /* Pushes the read-link to the bottom of the card */
  flex: 1 1 auto;
  max-width: 38ch;
}

.note-card .note-link {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: var(--fs-mono-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pova-white);
  opacity: 0.55;
  margin-top: 4px;
  transition: opacity var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out);
}

.note-card .note-link:hover {
  opacity: 1;
  color: var(--pova-orange);
}

/* Published notes: multi-paragraph body inside the card. The card
 * grows to fit the essay; the rail wraps around it. */
.note-card.is-published {
  grid-column: 1 / -1;
}
.note-card .note-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}
.note-card .note-card__body p {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.78;
  max-width: 62ch;
  flex: 0 0 auto;
}
.note-card .note-card__sig {
  font-family: var(--font-mono);
  font-size: var(--fs-mono-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pova-white);
  opacity: 0.5;
  margin-top: 6px;
}

/* Pending pill — used while posts haven't shipped. Non-link, no hover. */
.note-card .note-link.is-pending {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.6);
  cursor: default;
  pointer-events: none;
}
.note-card .note-link.is-pending:hover { color: rgba(255, 255, 255, 0.6); opacity: 0.8; }

/* ------------------------------------------------------------------
 * Topics — small mono list, dot-separated visual rhythm.
 * Sits flush after the grid. Same h2/lead styling as about.
 * ------------------------------------------------------------------ */

.topics-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topics-list li {
  font-family: var(--font-mono);
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--pova-white);
  opacity: 0.75;
  background: rgba(15, 15, 17, 0.4);
}

/* ------------------------------------------------------------------
 * Responsive — mirror about.css breakpoints exactly.
 * ------------------------------------------------------------------ */

@media (max-width: 1100px) {
  .notes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .blog-grid-section { padding-top: 48px; }
  .note-card { min-height: 0; }
}

@media (max-width: 700px) {
  .notes-grid { grid-template-columns: 1fr; gap: 16px; }
  .note-card { padding: 22px 20px 24px; }
  .blog-hero .blog-status { margin-top: 24px; font-size: var(--fs-mono-xs); }
}

@media (max-width: 600px) {
  .note-card h3 { font-size: 20px; }
  .topics-list li { font-size: var(--fs-mono-xs); padding: 7px 12px; }
}

@media (max-width: 420px) {
  .note-card h3 { font-size: 18px; }
  .note-card p { font-size: 14px; }
  .note-card .note-meta { gap: 8px; }
}

/* ============================================================
 * Press strip — verified third-party coverage list. Mono-tagged
 * outlet on the left, headline + arrow on the right. Each row is
 * a clean external-link button styled consistently with note-cards
 * (corner +marks vocabulary, glass surface, orange accent on hover).
 * ============================================================ */
.press-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.press-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--t-fast) var(--ease-out);
}
.press-item:hover {
  background: rgba(255, 93, 1, 0.04);
}
.press-outlet {
  font-family: var(--font-mono);
  font-size: var(--fs-mono-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pova-orange);
  opacity: 0.85;
}
.press-headline {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.4;
  font-weight: 300;
  color: var(--pova-white);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  transition: color var(--t-fast) var(--ease-out);
}
.press-headline .arrow {
  font-family: var(--font-mono);
  color: var(--pova-orange);
  transition: transform var(--t-fast) var(--ease-out);
  flex-shrink: 0;
}
.press-headline:hover {
  color: var(--pova-orange);
}
.press-headline:hover .arrow {
  transform: translateX(4px);
}

/* Mobile — outlet stacks above headline */
@media (max-width: 700px) {
  .press-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 4px;
  }
  .press-headline {
    font-size: 16px;
  }
}
