/* 자기인식 발견 MVP — PRD v0.5 (모바일 퍼스트, 인쇄) */

:root {
  --bg: #f6f4f1;
  --surface: #fff;
  --text: #1c1b19;
  --muted: #5c5854;
  --accent: #2d5a4a;
  --accent-soft: #e8f0ed;
  --border: #d9d4ce;
  --danger: #a33;
  --focus: #1a6fb3;
  --touch-min: 44px;
  --radius: 10px;
  --font: "Malgun Gothic", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100dvh;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--bg) 70%, transparent);
  padding: 0.75rem 1rem 0.25rem;
}

.app-header__inner {
  max-width: 42rem;
  margin: 0 auto;
}

/* 헤더 네비게이션 */
.header-nav {
  display: flex;
  align-items: center;
  margin-bottom: 0.35rem;
}

.btn-back-home {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius);
  transition: background 0.15s;
}

.btn-back-home:hover {
  background: var(--accent-soft);
}

.btn-back-home:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.btn-back-home svg {
  flex-shrink: 0;
}

.progress-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 0.35rem;
}

.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.2s ease;
}

.step-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  outline: none;
}

.step-title:focus-visible {
  box-shadow: 0 0 0 3px var(--focus);
  border-radius: 4px;
}

main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1rem 6rem;
}

#panel-intro {
  max-width: 44rem;
  margin: 0 auto;
}

.panel {
  display: none;
  padding-top: 0.5rem;
}

.panel--visible {
  display: block;
}

.lead {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.disclaimer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.disclaimer ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  min-width: 5rem;
  padding: 0 1.1rem;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.btn:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  filter: brightness(1.05);
}

.btn--secondary {
  background: var(--surface);
  color: var(--accent);
  border-color: var(--accent);
}

.btn--secondary:hover {
  background: var(--accent-soft);
}

.btn--danger {
  background: #fff;
  color: var(--danger);
  border-color: var(--danger);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.counter-pill {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.35rem 0.75rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 99px;
  margin-bottom: 0.75rem;
}

.word-categories {
  margin-top: 0.5rem;
}

.word-cat__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  margin: 1rem 0 0.5rem;
}

.word-cat__counter {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  margin-left: 0.3rem;
}

.word-cat__counter--done {
  color: var(--accent);
}

.word-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.word-chip {
  min-height: var(--touch-min);
  padding: 0.35rem 0.85rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 2px solid var(--border);
  background: var(--surface);
  border-radius: 99px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.word-chip:hover {
  border-color: var(--accent);
}

.word-chip[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.word-chip:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.word-chip:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.field-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.35rem;
}

textarea,
input[type="text"] {
  width: 100%;
  font-size: 1rem;
  font-family: inherit;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  resize: vertical;
  min-height: 5rem;
}

input[type="text"] {
  min-height: var(--touch-min);
}

textarea:focus,
input:focus {
  outline: 3px solid var(--focus);
  outline-offset: 0;
  border-color: var(--accent);
}

details.word-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.75rem;
}

details.word-block summary {
  font-weight: 700;
  cursor: pointer;
  min-height: var(--touch-min);
  display: flex;
  align-items: center;
}

details.word-block .fields {
  padding: 0.5rem 0 0.75rem;
}

.label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0.5rem 0 0.25rem;
}

.scripture-box {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1rem;
}

.scripture-box cite {
  display: block;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.scripture-box p {
  margin: 0;
  font-size: 1rem;
}

.radio-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.radio-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  min-height: var(--touch-min);
}

.radio-row input {
  margin-top: 0.35rem;
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--accent);
}

.msg {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin: 0.75rem 0;
}

.msg--error {
  background: #fdeeee;
  border: 1px solid #e8b4b4;
  color: #6a2222;
}

.msg--ok {
  background: var(--accent-soft);
  border: 1px solid #b8d4c8;
  color: var(--accent);
}

.save-status {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.save-status[aria-live="polite"] {
  min-height: 1.25em;
}

.toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  z-index: 40;
}

.toolbar .btn {
  min-height: 40px;
  font-size: 0.88rem;
  padding: 0 0.75rem;
}

.summary-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
}

.summary-block h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.summary-block p,
.summary-block li {
  margin: 0.25rem 0;
  white-space: pre-wrap;
  word-break: keep-all;
}

.summary-nav {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.summary-nav a {
  color: var(--accent);
  font-weight: 600;
}

.closing-print {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  white-space: pre-wrap;
  font-size: 0.95rem;
}

dialog {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  max-width: 22rem;
  font-family: inherit;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.35);
}

dialog h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

dialog p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.print-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.5rem 0 1rem;
}

/* ── 홈 (인트로) ── */

.hero {
  text-align: center;
  padding: 2.5rem 0 1.5rem;
}

.hero__icon {
  margin-bottom: 0.75rem;
}

.hero__title {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin: 0;
  line-height: 1.15;
  outline: none;
}

.hero__title:focus-visible {
  box-shadow: 0 0 0 3px var(--focus);
  border-radius: 4px;
}

.hero__subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0.2rem 0 0;
}

.hero__tagline {
  font-size: 1.1rem;
  color: var(--text);
  margin: 1.25rem 0 1.5rem;
  line-height: 1.7;
  word-break: keep-all;
}

.btn--hero {
  min-width: 10rem;
  padding: 0 1.8rem;
  min-height: 52px;
  font-size: 1.1rem;
  border-radius: 99px;
}

/* 소개 섹션 */
.home-section {
  margin: 2rem 0 0;
}

.home-section__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent-soft);
}

.home-section__body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  word-break: keep-all;
}

/* 가치 카드 */
.value-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

@media (min-width: 480px) {
  .value-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  text-align: center;
}

.value-card__icon {
  margin-bottom: 0.5rem;
}

.value-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  color: var(--accent);
}

.value-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  word-break: keep-all;
}

/* 5단계 로드맵 */
.roadmap {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  counter-reset: none;
}

.roadmap__step {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.roadmap__step:last-child {
  border-bottom: none;
}

.roadmap__num {
  flex-shrink: 0;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
}

.roadmap__step strong {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.1rem;
}

.roadmap__step p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* 성경 인용 (홈) */
.home-scripture {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.2rem;
  margin: 2rem 0 0;
}

.home-scripture p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 0.5rem;
  word-break: keep-all;
}

.home-scripture cite {
  display: block;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

/* 하단 CTA */
.home-cta {
  text-align: center;
  margin: 2rem 0 0;
}

/* 홈 하단 면책 */
.home-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.home-legal {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

/* ── 종합 보고서 ── */

.report-header {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 1.25rem;
}

.report-header__title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  margin: 0 0 0.15rem;
  outline: none;
}

.report-header__title:focus-visible {
  box-shadow: 0 0 0 3px var(--focus);
  border-radius: 4px;
}

.report-header__subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.report-header__date {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.4rem 0 0;
}

/* 서술 도입 */
.report-narrative {
  margin-bottom: 1.5rem;
}

.report-narrative__opening {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  word-break: keep-all;
  margin: 0;
}

/* 챕터 */
.report-chapter {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.report-chapter:last-of-type {
  border-bottom: none;
}

.report-chapter__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.report-chapter__num {
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 50%;
}

.report-chapter__lead {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
  word-break: keep-all;
}

.report-chapter__summary {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0.75rem 0 0;
  text-align: center;
}

.report-chapter__muted {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  margin: 0.5rem 0 0;
}

/* 단어 칩 (보고서) */
.report-word-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 0.75rem 0;
}

.report-chip {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 99px;
}

/* 성찰 카드 */
.report-reflect-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 0.6rem;
}

.report-reflect-card__word {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--accent-soft);
}

.report-dl {
  margin: 0;
}

.report-dl dt {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.4rem;
}

.report-dl dd {
  margin: 0.1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: keep-all;
}

/* 인사이트 박스 */
.report-insight {
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-top: 0.75rem;
}

.report-insight p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0.3rem 0;
  word-break: keep-all;
}

/* 인용 (관계) */
.report-quote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.85rem 1rem;
  margin: 0.5rem 0 0.75rem;
  font-size: 1.05rem;
}

.report-quote p {
  margin: 0;
  line-height: 1.55;
}

/* 비교 (내가 보는 나 vs 다른 사람) */
.report-compare {
  display: flex;
  gap: 0;
  margin: 0.75rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.report-compare__col {
  flex: 1;
  padding: 0.85rem 0.9rem;
  background: var(--surface);
}

.report-compare__col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 0.35rem;
}

.report-compare__col p {
  font-size: 0.9rem;
  margin: 0;
  white-space: pre-wrap;
  word-break: keep-all;
}

.report-compare__divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}

/* 성경 (보고서) */
.report-scripture {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.1rem;
  margin: 0.5rem 0 0.75rem;
}

.report-scripture p {
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 0.4rem;
  word-break: keep-all;
}

.report-scripture cite {
  display: block;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
}

.report-scripture--final {
  text-align: center;
  border-left: none;
  border-radius: var(--radius);
  margin-top: 1.25rem;
}

/* 핵심 메시지 */
.report-keymsg {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin: 0.5rem 0 0.75rem;
}

/* 나의 고백 */
.report-myvoice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin: 0.5rem 0;
}

.report-myvoice h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0 0 0.35rem;
}

.report-myvoice p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
  white-space: pre-wrap;
  word-break: keep-all;
}

/* 실천 다짐 */
.report-pledge {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 0.5rem 0 0.75rem;
}

.report-pledge__icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.report-pledge__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 0.15rem;
}

.report-pledge__text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

/* 종합 결론 */
.report-conclusion {
  background: linear-gradient(135deg, var(--accent-soft), #f0ece8);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  margin-top: 1rem;
}

.report-conclusion__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
  text-align: center;
  margin: 0 0 0.85rem;
}

.report-conclusion__body p {
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0.6rem 0;
  word-break: keep-all;
}

/* MBTI */
.mbti-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
}

.mbti-box h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.mbti-type-label {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-align: center;
  margin: 0.25rem 0;
}

.mbti-type-title {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.mbti-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.mbti-bar-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mbti-dim-label {
  width: 3.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  flex-shrink: 0;
}

.mbti-dim--active {
  color: var(--accent);
  font-weight: 800;
}

.mbti-bar-track {
  flex: 1;
  display: flex;
  height: 14px;
  border-radius: 99px;
  overflow: hidden;
  background: var(--bg);
}

.mbti-bar-fill--left {
  height: 100%;
  background: var(--accent);
  border-radius: 99px 0 0 99px;
  transition: width 0.3s ease;
}

.mbti-bar-fill--right {
  height: 100%;
  background: var(--border);
  border-radius: 0 99px 99px 0;
  transition: width 0.3s ease;
}

.mbti-desc {
  font-size: 0.92rem;
  color: var(--text);
  margin: 0.5rem 0 0.25rem;
  line-height: 1.55;
}

.mbti-bible {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0.25rem 0;
}

.mbti-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

@media print {
  .app-header,
  .toolbar,
  .btn-row .btn--secondary,
  .skip-link,
  .summary-nav,
  .print-hide {
    display: none !important;
  }

  body {
    background: #fff;
  }

  main {
    max-width: none;
    padding-bottom: 0;
  }

  .panel {
    display: block !important;
  }

  .panel:not(#panel-summary) {
    display: none !important;
  }

  details.word-block {
    break-inside: avoid;
  }

  .report-header {
    border-bottom-color: #333;
  }

  .report-chapter {
    break-inside: avoid;
  }

  .report-reflect-card,
  .report-pledge,
  .report-conclusion {
    break-inside: avoid;
  }

  .report-conclusion {
    background: #f4f2ef !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .report-chip {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .report-chapter__num {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
