/* ============================================================
   Newsroom release — the article template every ?slug= renders
   into. Chrome comes from styles.css, masthead type language
   from newsroom.css (The Archive Times); this file only styles
   the article column itself.
   ============================================================ */

.nrr-main {
  background-color: #eadfcb;
  padding-bottom: 96px;
}

/* ---------------- slim masthead ---------------- */
.nrr-masthead {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.nrr-back {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: #57503f;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s ease;
}

.nrr-back:hover {
  color: #f35933;
}

.nrr-paper {
  font-family: "Cause", "Jersey 25", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #17130d;
  margin: 0;
  white-space: nowrap;
}

.nrr-paper span {
  color: #f35933;
}

.nrr-rules {
  max-width: 720px;
  margin: 14px auto 0;
  padding: 0 24px;
  border-bottom: 4px double #17130d;
}

/* ---------------- article ---------------- */
.nrr-article,
.nrr-missing {
  max-width: 720px;
  margin: 0 auto;
  padding: 44px 24px 0;
}

.nrr-kicker {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f35933;
  margin: 0 0 14px;
}

.nrr-headline {
  font-family: "Cause", "Jersey 25", sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.08;
  color: #17130d;
  margin: 0 0 30px;
}

.nrr-cover {
  margin: 0 0 34px;
  background: #fff;
  border: 2.5px solid #1c1c1c;
  border-radius: 6px;
  box-shadow: 5px 7px 0 rgba(28, 28, 28, 0.16);
  transform: rotate(-0.4deg);
  padding: 12px;
}

.nrr-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.nrr-body p {
  font-family: "Poppins", sans-serif;
  font-size: 16.5px;
  line-height: 1.72;
  color: #3f3a30;
  margin: 0 0 22px;
}

.nrr-body p:first-child::first-letter {
  font-family: "Cause", "Jersey 25", sans-serif;
  font-weight: 700;
  font-size: 3.1em;
  line-height: 0.82;
  color: #f35933;
  float: left;
  padding: 6px 10px 0 0;
}

.nrr-body a {
  color: #f35933;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------------- CTA button ---------------- */
.nrr-cta-row {
  margin-top: 34px;
}

.nrr-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: #f35933;
  border-radius: 10px;
  padding: 14px 26px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(243, 89, 51, 0.4);
  transition: background 0.15s ease, transform 0.15s ease;
}

.nrr-cta:hover {
  background: #d94a29;
  transform: translateY(-2px);
}

.nrr-cta:active {
  transform: translateY(0);
}

.nrr-endmark {
  margin-top: 52px;
  text-align: center;
  color: #b7ac93;
  font-size: 14px;
  letter-spacing: 0.3em;
}

/* ---------------- missing slug ---------------- */
.nrr-missing {
  text-align: center;
  padding-top: 72px;
}

.nrr-missing-copy {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #57503f;
  margin: 0 0 30px;
}

/* ---------------- mobile ---------------- */
@media (max-width: 767px) {
  .nrr-masthead {
    padding-top: 28px;
    flex-direction: column;
    gap: 10px;
  }

  .nrr-article,
  .nrr-missing {
    padding-top: 34px;
  }

  .nrr-cover {
    padding: 9px;
  }

  .nrr-body p {
    font-size: 15.5px;
  }
}
