/* ═══════════════════════════════════════════════════════
   PRESS RELEASE ADDITIONS — append to resource-page.css
   ═══════════════════════════════════════════════════════ */

/* ── Dateline ── */
.rp-dateline {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--warm-200);
}
.rp-dateline-text {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-400);
}

/* ── Contact block ── */
.rp-contact-block {
  padding: 24px 28px;
  background: var(--warm-50);
  border-radius: var(--r-md);
  border: 1px solid var(--warm-200);
}
.rp-contact-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.rp-contact-block p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-600);
}
.rp-contact-block a {
  color: var(--ink-900);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--warm-200);
  transition: border-color .15s;
}
.rp-contact-block a:hover {
  border-color: var(--amber);
}

/* ── Mood image wrapper ── */
.rp-mood-wrap {
  padding: 0 0 48px;
  background: var(--white);
}
.rp-mood-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--warm-200);
  max-height: 420px;
}
.rp-mood-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PR intro — opening text on the left, square brand graphic on the right */
.rp-intro-section {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
.rp-intro-figure { margin: 0; }
.rp-intro-figure img {
  width: 100%;
  display: block;
  border-radius: var(--r-lg);
  border: 1px solid var(--warm-200);
}
@media (max-width: 768px) {
  .rp-intro-section { grid-template-columns: 1fr; gap: 28px; }
  .rp-intro-figure { max-width: 300px; }
}

/* ── Related section ── */
.rp-related {
  padding: 64px 0;
  background: var(--warm-50);
  border-top: 1px solid var(--warm-200);
}
.rp-related .section-tag {
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 20px;
}
.rp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rp-related-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--warm-200);
  text-decoration: none;
  transition: border-color .18s, box-shadow .18s;
}
.rp-related-card:hover {
  border-color: var(--warm-300);
  box-shadow: var(--shadow-sm);
}
.rp-related-tag {
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.rp-related-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  color: var(--ink-900);
}

@media (max-width: 768px) {
  .rp-related-grid {
    grid-template-columns: 1fr;
  }
  .rp-mood-image {
    max-height: 280px;
  }
}
