/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Sep 23 2025 | 21:06:58 */
/* ===== Rod Lauren Story • 1959 Newsprint Blockquote ===== */
@import url('https://fonts.googleapis.com/css2?family=Unna:ital,wght@0,400;0,700;1,400;1,700&display=swap');

.newsprint-1959 {
  /* sizing */
  margin: 20px auto;      /* keeps section centered inside parent */

  /* look & feel */
  font-family: "Unna", Times, "Times New Roman", Georgia, serif !important;
  font-size: 1.4em !important;
  color: #1a1a1a;
  line-height: 1.45;

  /* add a subtle cream overlay to keep text readable on the paper image */
  background-color: rgba(250, 248, 241, 0.86); /* warm paper tone */
  background-blend-mode: multiply;

  /* spacing */
  padding: 22px 26px;

  /* shadow only (no border) – 50% opacity, blur 10, offset 5/5 */
  box-shadow: 5px 5px 10px rgba(0,0,0,.5);

  /* tiny “imperfect print” vibe */
  transform: rotate(-.15deg);
}

/* kicker (small-caps label) */
.newsprint-1959 .kicker {
  font-variant: small-caps;
  letter-spacing: .06em;
  color: #5c5c5c;
  font-size: 13px;
  margin: 0 0 .35rem 0;
}

/* headline */
.newsprint-1959 .hed {
  margin: 0 0 .6rem 0;
  font-size: 28px;
  font-weight: 700;
}

/* body */
.newsprint-1959 .body {
  font-size: 16px;
}

/* spaced paragraphs for that magazine cadence */
.newsprint-1959 .body p {
  margin: .9rem 0;
}

/* big concluding line option */
.newsprint-1959 .closer {
  font-size: 26px;
  font-weight: 700;
  margin-top: 1.2rem;
}

/* source/citation */
.newsprint-1959 .source {
  display: block;
  margin-top: 1rem;
  text-align: right;
  font-size: 14px;
  color: #5c5c5c;
  font-style: italic;
}

/* optional thin rules if you want section breaks */
.newsprint-1959 .rule {
  border-top: 1px solid rgba(0,0,0,.35);
  margin: .7rem 0 .7rem 0;
}
