.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;
}

/* --- Program Members Section --- */
.pr-members-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.pr-members-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1.25rem;
}

.pr-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.pr-member-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pr-member-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.pr-member-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eff6ff; /* Light blue */
  color: #3b82f6;
  border-radius: 50%;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pr-member-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pr-member-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pr-member-role {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pr-coordinator-link {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.pr-coordinator-link:hover {
  color: #3b82f6;
  border-bottom-color: #3b82f6;
}