/* Default h2 style (good for light backgrounds) */
h2 {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 1.1rem;
  text-transform: uppercase;
  border-bottom: 1px solid #111;
  margin: 1.5rem 0 0.5rem;
  padding-bottom: 0.25rem;
  color: #111; /* dark ink */
}

/* Zine-style title for dark backgrounds */
.zine-title {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: 600;
  color: #fff;
  font-size: 1.1rem;
  margin: 1.5rem 0 .6rem;
  padding-bottom: .25rem;
  border-bottom: 0px solid currentColor;
  text-align: center;
}

/* Faint divider that aligns with your 560px column and stays responsive */
.divider {
  border: 0;
  border-top: 1px dashed rgba(255,255,255,0.2);
  margin: 2rem auto;
  width: 560px;     /* matches your video/content width */
  max-width: 100%;  /* shrinks on mobile */
}


