.pr-section {
  padding: 3rem 0 5rem;
  background-color: #f8fafc;
  min-height: calc(100vh - 200px);
}

.pr-container {
  max-width: 900px;
  margin: 0 auto;
}

/* --- Back Button --- */
.pr-header-actions {
  margin-bottom: 1.5rem;
}
.pr-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e3a8a; /* Deep navy */
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.pr-back-btn:hover {
  color: #3b82f6;
  transform: translateX(-3px);
}

/* --- Main Card --- */
.pr-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* --- Card Header --- */
.pr-card-header {
  padding: 2.5rem 3rem 1rem;
}
.pr-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}
.pr-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 0.6rem;
  line-height: 1.2;
}
.pr-title-rule {
  width: 52px;
  height: 4px;
  background: linear-gradient(to right, #1e3a8a, #3b82f6);
  border-radius: 4px;
}

/* --- Card Body --- */
.pr-card-body {
  padding: 0 3rem 3rem;
}
.pr-row {
  display: flex;
  padding: 1.25rem 0;
  border-bottom: 1px solid #f1f5f9;
}
@media (max-width: 768px) {
  .pr-row {
      flex-direction: column;
      gap: 0.25rem;
  }
}
.pr-row:last-child {
  border-bottom: none;
}
.pr-label {
  width: 35%;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}
.pr-value {
  width: 65%;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .pr-label, .pr-value { width: 100%; }
}

/* --- Objective Callout --- */
.pr-objective-card {
  margin-top: 2rem;
  background-color: #f8fafc;
  border-left: 4px solid #1e3a8a;
  border-radius: 0 12px 12px 0;
  padding: 1.75rem;
}
.pr-objective-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.75rem;
}
.pr-objective-text {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}