/* 기자 프로필 모달 — list/detail 공통 */
.nr-modal {
  position: fixed; inset: 0; z-index: 12000;
  display: flex; align-items: center; justify-content: center;
  padding: 16px; background: rgba(15, 23, 42, .45);
}
.nr-modal[hidden] { display: none !important; }
body.nr-modal-open { overflow: hidden; }

.nr-modal-panel {
  width: min(100%, 420px);
  background: #fff; border-radius: 12px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, .25);
  overflow: hidden;
}

.nr-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}
.nr-modal-head strong { font-size: 17px; font-weight: 800; color: #0f172a; }
.nr-modal-close {
  width: 36px; height: 36px; border: 0; border-radius: 8px;
  background: #e2e8f0; color: #475569; font-size: 22px; line-height: 1;
  cursor: pointer;
}
.nr-modal-close:hover { background: #cbd5e1; }

.nr-modal-body { padding: 16px; display: flex; flex-direction: column; gap: 16px; }

.nr-modal-dl {
  margin: 0; display: grid; grid-template-columns: 72px 1fr;
  gap: 10px 12px; font-size: 15px;
}
.nr-modal-dl dt { margin: 0; color: #64748b; font-weight: 700; }
.nr-modal-dl dd { margin: 0; color: #0f172a; font-weight: 600; word-break: break-all; }
.nr-modal-dl dd a { color: #0a4d8c; text-decoration: none; }
.nr-modal-dl dd a:hover { text-decoration: underline; }
.nr-modal-dl .is-empty { color: #94a3b8; font-weight: 500; }

.nr-modal-mypage {
  display: block; text-align: center; padding: 11px 16px;
  border-radius: 8px; background: #f0f9ff; color: #0369a1 !important;
  font-size: 15px; font-weight: 700; text-decoration: none;
  border: 1px solid #bae6fd;
}
.nr-modal-mypage:hover { background: #e0f2fe; }

.nr-modal-more {
  display: block; text-align: center; padding: 12px 16px;
  border-radius: 8px; background: #0a4d8c; color: #fff !important;
  font-size: 15px; font-weight: 700; text-decoration: none;
}
.nr-modal-more:hover { background: #083d6f; }

.nr-modal-loading { color: #64748b; font-size: 15px; text-align: center; padding: 12px 0; }

/* 트리거 — 버튼을 텍스트 링크처럼 */
button.nr-reporter-trigger,
button.nl-vw-reporter {
  border: 0; background: none; padding: 0; margin: 0;
  font: inherit; color: inherit; cursor: pointer;
  text-decoration: underline; text-underline-offset: 2px;
}
button.nr-reporter-trigger:hover,
button.nl-vw-reporter:hover { color: #0a4d8c; }

.nd-identity-reporter.nr-reporter-trigger,
button.nd-identity-reporter {
  color: #0a4d8c; font-weight: 600;
}

.nd-meta-reporter-name .nr-reporter-trigger {
  font-size: 17px; font-weight: 800; color: #0f172a;
  text-decoration: none; padding: 0;
}
.nd-meta-reporter-name .nr-reporter-trigger:hover {
  color: #0a4d8c; text-decoration: underline;
}

.nl-vw-list-meta .nl-vw-reporter,
.nl-vw-card-meta .nl-vw-reporter,
.nl-vw-wz-meta .nl-vw-reporter {
  text-decoration: none; color: inherit;
}
.nl-vw-list-meta .nl-vw-reporter:hover,
.nl-vw-card-meta .nl-vw-reporter:hover,
.nl-vw-wz-meta .nl-vw-reporter:hover {
  color: #0a4d8c; text-decoration: underline;
}

@media (max-width: 768px) {
  .nr-modal { padding: 12px; align-items: flex-end; }
  .nr-modal-panel { border-radius: 12px 12px 0 0; width: 100%; max-width: 100%; }
}
