/* ============================================================
   STANDFIRSTS — small literary openers before sections
   ============================================================ */

.pz-standfirst-mini {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.08rem, 0.95rem + 0.55vw, 1.3rem);
  line-height: 1.42;
  color: var(--pz-mute, #78716c);
  max-width: 52ch;
  margin: 0 auto 2.6rem;
  text-align: center;
  text-wrap: balance;
  letter-spacing: -0.005em;
}

.pz-standfirst-mini::before {
  content: "—";
  display: inline-block;
  margin-right: 0.4em;
  color: var(--pz-orange, #c2410c);
  font-style: normal;
  opacity: 0.55;
}


/* ============================================================
   PUBLICATION COLOPHON — site-wide, above the footer
   ============================================================ */

.pz-publication-colophon {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(3rem, 2rem + 2vw, 5rem) clamp(1.2rem, 4vw, 2rem) clamp(2rem, 1.4rem + 1.2vw, 3rem);
  text-align: center;
  position: relative;
}

/* The diamond mark opens the colophon */
.pz-publication-colophon::before {
  content: "◆";
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  color: var(--pz-orange, #c2410c);
  opacity: 0.6;
  margin-bottom: 1.4rem;
}

.pz-publication-colophon__lead {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.18rem, 1rem + 0.7vw, 1.42rem);
  line-height: 1.42;
  color: var(--pz-ink, #1c1917);
  margin: 0 0 0.8em;
  text-wrap: balance;
}

.pz-publication-colophon__motto {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.18rem);
  line-height: 1.45;
  color: var(--pz-mute, #78716c);
  max-width: 36ch;
  margin: 0 auto 1.8em;
  text-wrap: balance;
}

.pz-publication-colophon__meta {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pz-mute, #78716c);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 0.8rem;
  margin: 0 0 1.4em;
}

.pz-publication-colophon__meta span {
  display: inline-flex;
  align-items: center;
}

.pz-publication-colophon__meta .pz-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pz-mute-2, #a8a29e);
  flex: 0 0 4px;
}

.pz-publication-colophon__meta .pz-tag {
  color: var(--pz-orange, #c2410c);
}

.pz-publication-colophon__tags {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pz-orange, #c2410c);
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
  padding-top: 0.85rem;
  border-top: 1px solid var(--pz-line, rgba(28, 25, 23, 0.08));
}

.pz-publication-colophon__tags .pz-tag-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pz-orange, #c2410c);
  opacity: 0.5;
}


/* ============================================================
   ISSUE INDICATOR — fixed bottom-right
   ============================================================ */

@media (min-width: 1024px) {
  .pz-issue-badge {
    position: fixed;
    bottom: 1.4rem;
    right: 1.4rem;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2em;
    font-family: "Inter", sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--pz-mute, #78716c);
    background: rgba(255, 254, 252, 0.78);
    backdrop-filter: blur(8px) saturate(160%);
    -webkit-backdrop-filter: blur(8px) saturate(160%);
    border: 1px solid var(--pz-line, rgba(28, 25, 23, 0.08));
    border-radius: 8px;
    padding: 0.55em 0.85em;
    pointer-events: auto;
    user-select: none;
    opacity: 0.78;
    transition:
      opacity 240ms var(--pz-ease-std, cubic-bezier(0.4, 0, 0.2, 1)),
      transform 240ms var(--pz-ease-out, cubic-bezier(0.22, 1, 0.36, 1));
  }

  .pz-issue-badge:hover {
    opacity: 0.1;
    transform: translate3d(0, 4px, 0);
  }

  .pz-issue-badge__vol {
    color: var(--pz-orange, #c2410c);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
  }

  .pz-issue-badge__period {
    color: var(--pz-ink, #1c1917);
    font-variant-numeric: tabular-nums;
  }
}

@media (max-width: 1023px) {
  .pz-issue-badge { display: none !important; }
}


/* ============================================================
   HOME — kicker tightened so the standfirst rhythm reads cleanly
   ============================================================ */

body.home .pz-section__eye,
body.home .pz-section__kicker {
  margin-bottom: 0.6rem !important;
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .pz-issue-badge { transition: none !important; }
}