/* ROBERIN recovery calculator redesign v3 - 2026-05-18
   Reference: https://roberin.com/projects/date-difference-calculator/ */
body.postid-1398 {
  --rc-paper: #fff7e8;
  --rc-paper-soft: #fbf0dc;
  --rc-panel: rgba(255, 253, 247, 0.94);
  --rc-input: #fffdf8;
  --rc-ink: #2b2119;
  --rc-muted: #67584a;
  --rc-line: #6b5745;
  --rc-line-soft: rgba(107, 87, 69, 0.26);
  --rc-green: #e3efd2;
  --rc-green-ink: #2f4e2e;
  --rc-blue: #dfeef8;
  --rc-blue-ink: #28455a;
  --rc-amber: #f7df9d;
  --rc-amber-strong: #d2aa55;
  --rc-red: #a43e2d;
  --rc-red-soft: #f3dfd3;
  --rc-white: #fffdf7;
  --rc-shadow: 4px 4px 0 rgba(72, 55, 40, 0.22);
  --rc-shadow-soft: 2px 2px 0 rgba(72, 55, 40, 0.14);
  background:
    linear-gradient(90deg, rgba(107, 87, 69, 0.025) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(0deg, rgba(107, 87, 69, 0.022) 1px, transparent 1px) 0 0 / 18px 18px,
    #faf2e8;
}

body.postid-1398 .cs-site-content > .cs-container,
body.postid-1398 .cs-main-content,
body.postid-1398 .cs-content-area,
body.postid-1398 .cs-entry__container,
body.postid-1398 .cs-entry__content-wrap {
  width: 100%;
  max-width: none;
}

body.postid-1398 .cs-breadcrumbs,
body.postid-1398 .cs-entry__header,
body.postid-1398 .recovery-calculator {
  width: min(1120px, calc(100vw - 32px));
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

body.postid-1398 .cs-entry__header {
  margin-top: 18px;
  margin-bottom: 14px;
  text-align: left;
}

body.postid-1398 .cs-entry__title {
  color: var(--rc-ink);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.recovery-calculator,
.recovery-calculator *,
.recovery-calculator *::before,
.recovery-calculator *::after {
  box-sizing: border-box;
}

.recovery-calculator {
  position: relative;
  isolation: isolate;
  margin-top: 0;
  margin-bottom: 24px;
  padding: 14px;
  overflow: hidden;
  color: var(--rc-ink);
  background: var(--rc-paper);
  border: 2px solid var(--rc-line);
  border-radius: 0;
  box-shadow: var(--rc-shadow);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  line-height: 1.52;
}

.recovery-calculator::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(107, 87, 69, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, 0.045) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.recovery-calculator .calculator-header {
  display: grid;
  gap: 6px;
  margin: 0 0 10px;
  padding: 0 0 10px;
  text-align: left;
  border-bottom: 2px solid var(--rc-line);
}

.recovery-calculator .tool-kicker {
  width: max-content;
  max-width: 100%;
  padding: 4px 8px;
  color: var(--rc-green-ink);
  background: var(--rc-green);
  border: 1px solid var(--rc-line);
  box-shadow: var(--rc-shadow-soft);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.recovery-calculator .calculator-header h2 {
  margin: 0;
  color: var(--rc-ink);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.14;
  font-weight: 950;
  letter-spacing: -0.045em;
  text-shadow: none;
  word-break: keep-all;
}

.recovery-calculator .subtitle {
  max-width: 760px;
  margin: 0;
  color: var(--rc-muted);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 700;
  word-break: keep-all;
}

.recovery-calculator button,
.recovery-calculator input {
  font-family: inherit;
}

.recovery-calculator button {
  appearance: none;
  border-radius: 0;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease, color 120ms ease, border-color 120ms ease;
}

.recovery-calculator .example-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 10px;
}

.recovery-calculator .btn-example,
.recovery-calculator .btn-clear,
.recovery-calculator .preset-btn,
.recovery-calculator .toggle-btn,
.recovery-calculator .btn-detail-toggle,
.recovery-calculator .btn-save-chart {
  min-width: 0;
  color: var(--rc-ink);
  background: var(--rc-white);
  border: 1px solid var(--rc-line);
  box-shadow: var(--rc-shadow-soft);
  font-weight: 900;
}

.recovery-calculator .btn-example {
  min-height: 38px;
  padding: 8px 10px;
  color: var(--rc-green-ink);
  background: var(--rc-green);
  font-size: 13.5px;
  line-height: 1.1;
  white-space: nowrap;
}

.recovery-calculator .btn-clear {
  min-height: 38px;
  padding: 8px 10px;
  color: #743528;
  background: var(--rc-red-soft);
  font-size: 13.5px;
  line-height: 1.1;
}

.recovery-calculator .btn-example:hover,
.recovery-calculator .btn-clear:hover,
.recovery-calculator .preset-btn:hover,
.recovery-calculator .toggle-btn:hover,
.recovery-calculator .btn-detail-toggle:hover,
.recovery-calculator .btn-save-chart:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 rgba(72, 55, 40, 0.16);
}

.recovery-calculator .btn-example:active,
.recovery-calculator .btn-clear:active,
.recovery-calculator .preset-btn:active,
.recovery-calculator .toggle-btn:active,
.recovery-calculator .btn-detail-toggle:active,
.recovery-calculator .btn-save-chart:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.recovery-calculator .btn-example:focus-visible,
.recovery-calculator .btn-clear:focus-visible,
.recovery-calculator .preset-btn:focus-visible,
.recovery-calculator .toggle-btn:focus-visible,
.recovery-calculator .btn-detail-toggle:focus-visible,
.recovery-calculator .btn-save-chart:focus-visible,
.recovery-calculator .cost-input:focus-visible {
  outline: 3px solid #d6a62b;
  outline-offset: 2px;
}

.recovery-calculator .calculator-main {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.88fr) minmax(0, 1.02fr);
  gap: 10px;
  margin: 0 0 10px;
  align-items: stretch;
}

.recovery-calculator .cost-section,
.recovery-calculator .results-section-inner,
.recovery-calculator .info-section {
  min-width: 0;
  color: var(--rc-ink);
  background: var(--rc-panel);
  border: 1px solid var(--rc-line);
  border-radius: 0;
  box-shadow: var(--rc-shadow-soft);
  padding: 12px;
}

.recovery-calculator .cost-section {
  display: flex;
  flex-direction: column;
}

.recovery-calculator .section-title,
.recovery-calculator .results-title,
.recovery-calculator .info-title,
.recovery-calculator .chart-header h4,
.recovery-calculator .analysis-box h4,
.recovery-calculator .scenario-box h4,
.recovery-calculator .timeline-box h4 {
  margin: 0 0 10px;
  color: var(--rc-ink) !important;
  font-size: 15.5px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.recovery-calculator .section-title {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 0 8px;
  border-bottom: 1px solid var(--rc-line-soft);
}

.recovery-calculator .optional-tag,
.recovery-calculator .toggle-tag,
.recovery-calculator .btn-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 3px 7px;
  color: var(--rc-green-ink);
  background: var(--rc-green);
  border: 1px solid rgba(107, 87, 69, 0.34);
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
}

.recovery-calculator .input-group {
  min-width: 0;
  margin: 0 0 9px;
}

.recovery-calculator .input-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.recovery-calculator .input-group label,
.recovery-calculator .loss-presets > label,
.recovery-calculator .quick-label,
.recovery-calculator .scenario-label,
.recovery-calculator .card-subtitle,
.recovery-calculator .input-hint,
.recovery-calculator .option-description,
.recovery-calculator .label-hint {
  color: var(--rc-muted);
  font-size: 12.5px;
  line-height: 1.25;
  font-weight: 900;
}

.recovery-calculator .input-group label,
.recovery-calculator .loss-presets > label {
  display: block;
  margin: 0 0 5px;
}

.recovery-calculator .label-hint {
  display: block;
  margin-top: 2px;
  font-size: 11.5px;
  font-weight: 750;
}

.recovery-calculator .cost-input {
  min-width: 0;
  min-height: 40px;
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  color: var(--rc-ink);
  -webkit-text-fill-color: var(--rc-ink);
  caret-color: #5f4834;
  background: var(--rc-input);
  border: 1px solid var(--rc-line);
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(107, 87, 69, 0.08);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  color-scheme: light;
}

.recovery-calculator .cost-input:focus {
  background: #fff6d8;
  border-color: #5f4834;
  outline: none;
}

.recovery-calculator .unit-display {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: #7a412f;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
}

.recovery-calculator .input-hint {
  display: block;
  margin-top: 5px;
  font-size: 11.8px;
  font-weight: 750;
}

.recovery-calculator .loss-presets {
  margin: 0 0 9px;
  padding: 9px;
  background: #fffaf0;
  border: 1px dashed rgba(107, 87, 69, 0.44);
}

.recovery-calculator .presets-buttons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.recovery-calculator .preset-btn {
  min-height: 34px;
  padding: 7px 6px;
  font-size: 12.5px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.recovery-calculator .preset-btn.active,
.recovery-calculator .preset-btn[aria-checked="true"] {
  color: #241c15;
  -webkit-text-fill-color: #241c15;
  background: var(--rc-amber);
  border-color: #5f4834;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.42), var(--rc-shadow-soft);
}

.recovery-calculator .recovery-input-status {
  min-height: 22px;
  margin: auto 0 0;
  padding: 8px 9px;
  color: var(--rc-muted);
  background: #fffaf0;
  border: 1px dashed rgba(107, 87, 69, 0.44);
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 800;
}

.recovery-calculator .recovery-input-status.is-error {
  color: #7a2c20;
  background: #f7ded3;
  border-style: solid;
}

.recovery-calculator .quick-result {
  display: grid;
  gap: 8px;
  margin: 0 0 10px;
}

.recovery-calculator .quick-main {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 12px;
  background: var(--rc-blue);
  border: 1px solid var(--rc-line);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.38);
  text-align: center;
}

.recovery-calculator .quick-value-large {
  color: var(--rc-blue-ink);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

.recovery-calculator .quick-item,
.recovery-calculator .analysis-row,
.recovery-calculator .card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  padding: 8px 9px;
  background: #fffaf0;
  border: 1px solid rgba(107, 87, 69, 0.36);
}

.recovery-calculator .quick-value,
.recovery-calculator .analysis-row strong,
.recovery-calculator .card-row strong,
.recovery-calculator .scenario-value,
.recovery-calculator .example-recovery {
  color: var(--rc-ink);
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
  text-align: right;
}

.recovery-calculator .quick-item.highlight,
.recovery-calculator .analysis-row.highlight {
  background: #f5ead2;
  border-color: var(--rc-line);
}

.recovery-calculator .danger-critical,
.recovery-calculator .danger-high,
.recovery-calculator .danger-medium {
  color: #8e3426 !important;
  -webkit-text-fill-color: #8e3426 !important;
}

.recovery-calculator .danger-low,
.recovery-calculator .danger-safe {
  color: #2f4e2e !important;
  -webkit-text-fill-color: #2f4e2e !important;
}

.recovery-calculator .btn-detail-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding: 10px 12px;
  text-align: left;
  background: #35271d;
  border-color: #231a13;
  color: #fffaf0;
  -webkit-text-fill-color: #fffaf0;
  box-shadow: 3px 3px 0 rgba(72, 55, 40, 0.24);
}

.recovery-calculator .btn-detail-toggle .btn-content {
  display: grid;
  gap: 2px;
}

.recovery-calculator .btn-detail-toggle .btn-text {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 950;
}

.recovery-calculator .btn-detail-toggle .btn-hint {
  color: rgba(255, 250, 240, 0.78);
  -webkit-text-fill-color: rgba(255, 250, 240, 0.78);
  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 750;
}

.recovery-calculator .btn-detail-toggle .btn-badge {
  flex: 0 0 auto;
  color: #241c15;
  -webkit-text-fill-color: #241c15;
  background: var(--rc-amber);
  border-color: transparent;
}

.recovery-calculator .toggle-group + .toggle-group {
  margin-top: 8px;
}

.recovery-calculator .toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 40px;
  padding: 8px 9px;
  color: var(--rc-ink);
  background: #fffaf0;
  font-size: 13px;
  line-height: 1.2;
  text-align: left;
}

.recovery-calculator .toggle-icon {
  color: #7a412f;
  font-size: 12px;
  transition: transform 120ms ease;
}

.recovery-calculator .toggle-btn.active .toggle-icon {
  transform: rotate(90deg);
}

.recovery-calculator .toggle-content {
  display: none;
  margin-top: 7px;
  padding: 9px;
  background: #fffaf0;
  border: 1px dashed rgba(107, 87, 69, 0.44);
}

.recovery-calculator .toggle-content.active {
  display: block;
}

.recovery-calculator .results-section {
  display: none;
  margin: 0 0 10px;
}

.recovery-calculator .results-section.expanded {
  display: block;
}

.recovery-calculator .results-section-inner {
  display: grid;
  gap: 10px;
}

.recovery-calculator .results-title {
  margin-bottom: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rc-line-soft);
}

.recovery-calculator .results-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.recovery-calculator .result-card,
.recovery-calculator .analysis-box,
.recovery-calculator .chart-box,
.recovery-calculator .scenario-box,
.recovery-calculator .scenario-card,
.recovery-calculator .timeline-box,
.recovery-calculator .info-example,
.recovery-calculator .info-warning {
  min-width: 0;
  background: #fffaf0;
  border: 1px solid rgba(107, 87, 69, 0.42);
  box-shadow: none;
}

.recovery-calculator .result-card {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.recovery-calculator .card-header {
  color: var(--rc-muted);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 950;
}

.recovery-calculator .card-body {
  display: grid;
  gap: 6px;
}

.recovery-calculator .recovery-card {
  place-items: center;
  align-content: center;
  text-align: center;
  background: var(--rc-blue);
  border-color: var(--rc-line);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.38);
}

.recovery-calculator .card-amount {
  color: var(--rc-blue-ink);
  font-size: clamp(24px, 3.1vw, 38px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}

.recovery-calculator .loss-recovery-diff {
  min-height: 18px;
  color: #7a412f;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 900;
}

.recovery-calculator .analysis-box,
.recovery-calculator .chart-box,
.recovery-calculator .scenario-box,
.recovery-calculator .timeline-box {
  padding: 10px;
}

.recovery-calculator #fee-result,
.recovery-calculator #scenario-result {
  display: none;
}

.recovery-calculator #fee-result.active,
.recovery-calculator #scenario-result.active {
  display: block;
}

.recovery-calculator .analysis-content {
  display: grid;
  gap: 6px;
}

.recovery-calculator .fee-explanation {
  padding: 9px;
  color: var(--rc-muted);
  background: #fff7e8;
  border: 1px dashed rgba(107, 87, 69, 0.38);
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 750;
}

.recovery-calculator .fee-explanation p {
  margin: 0;
}

.recovery-calculator .chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.recovery-calculator .chart-header h4,
.recovery-calculator .analysis-box h4,
.recovery-calculator .scenario-box h4,
.recovery-calculator .timeline-box h4 {
  margin-bottom: 0;
}

.recovery-calculator .btn-save-chart {
  flex: 0 0 auto;
  min-height: 32px;
  padding: 7px 9px;
  color: var(--rc-green-ink);
  background: var(--rc-green);
  font-size: 12px;
  line-height: 1;
}

.recovery-calculator .chart-container {
  position: relative;
  min-height: 260px;
  height: 260px;
  background: #fffdf8;
  border: 1px solid rgba(107, 87, 69, 0.36);
  padding: 8px;
}

.recovery-calculator .scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 8px;
}

.recovery-calculator .scenario-card {
  display: grid;
  gap: 5px;
  place-items: center;
  min-height: 90px;
  padding: 10px;
  text-align: center;
}

.recovery-calculator .scenario-value {
  color: #5c3827;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1;
}

.recovery-calculator .recovery-timeline {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.recovery-calculator .recovery-timeline table {
  width: 100%;
  border-collapse: collapse;
  color: var(--rc-ink);
  font-size: 13px;
  line-height: 1.35;
  min-width: 420px;
}

.recovery-calculator .recovery-timeline th,
.recovery-calculator .recovery-timeline td {
  padding: 8px;
  border: 1px solid rgba(107, 87, 69, 0.36);
}

.recovery-calculator .recovery-timeline th {
  color: var(--rc-muted);
  background: #f5ead2;
  font-weight: 950;
}

.recovery-calculator .recovery-timeline td {
  background: #fffdf8;
  font-weight: 800;
}

.recovery-calculator .recovery-timeline tr.is-recovery td {
  background: var(--rc-green);
  color: var(--rc-green-ink);
  font-weight: 950;
}

.recovery-calculator .info-section {
  margin: 0;
}

.recovery-calculator .info-content {
  display: grid;
  gap: 10px;
  color: var(--rc-muted);
  font-size: 13.5px;
  line-height: 1.62;
  font-weight: 650;
}

.recovery-calculator .info-content p {
  margin: 0;
}

.recovery-calculator .info-examples {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.recovery-calculator .info-example {
  display: grid;
  gap: 4px;
  padding: 9px;
  text-align: center;
}

.recovery-calculator .example-loss {
  color: var(--rc-red);
  font-size: 12.5px;
  font-weight: 950;
}

.recovery-calculator .example-arrow {
  color: var(--rc-muted);
  font-size: 12px;
  font-weight: 900;
}

.recovery-calculator .info-warning {
  padding: 10px;
  color: #63412d;
  background: #f5ead2;
  border-color: var(--rc-line);
  font-weight: 800;
}

.recovery-calculator .chart-error {
  display: grid;
  place-items: center;
  min-height: 180px;
  text-align: center;
}

.recovery-calculator .chart-error-message {
  margin: 0 0 4px;
  color: var(--rc-red);
  font-weight: 950;
}

.recovery-calculator .chart-error-detail {
  margin: 0;
  color: var(--rc-muted);
  font-size: 12.5px;
  font-weight: 750;
}

/* Ad flow: frameless top/after/bottom placeholders and public ad wrappers. */
body.postid-1398 .recovery-calculator-ad,
body.postid-1398 .recovery-calculator + .roberin-qa-ad-placeholder,
body.postid-1398 .roberin-qa-ad-placeholder[data-roberin-qa-ad-position="after-tool"],
body.postid-1398 .roberin-qa-ad-placeholder[data-roberin-qa-ad-slot="7492498702"],
body.postid-1398 .roberin-qa-ad-placeholder[data-roberin-qa-ad-slot="1316434178"] {
  width: min(1120px, calc(100vw - 32px));
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 !important;
  color: var(--rc-muted);
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: hidden;
}

body.postid-1398 .recovery-calculator-ad--after-tool,
body.postid-1398 .recovery-calculator + .roberin-qa-ad-placeholder,
body.postid-1398 .roberin-qa-ad-placeholder[data-roberin-qa-ad-position="after-tool"],
body.postid-1398 .roberin-qa-ad-placeholder[data-roberin-qa-ad-slot="7492498702"] {
  margin-top: 24px;
  margin-bottom: 24px;
}

body.postid-1398 .recovery-calculator-ad--bottom,
body.postid-1398 .roberin-qa-ad-placeholder[data-roberin-qa-ad-slot="1316434178"] {
  margin-top: 24px;
  margin-bottom: 24px;
}

body.postid-1398 .recovery-calculator-ad ins.adsbygoogle {
  max-width: 100%;
}

/* Dark scheme */
body.postid-1398[data-scheme="dark"],
body.postid-1398[data-scheme="inverse"] {
  --rc-paper: #2b2119;
  --rc-paper-soft: #2b2119;
  --rc-panel: #33271d;
  --rc-input: #241c15;
  --rc-ink: #f7ebd8;
  --rc-muted: #f0dfc5;
  --rc-line: #a98b6b;
  --rc-line-soft: rgba(169, 139, 107, 0.38);
  --rc-green: #344a32;
  --rc-green-ink: #f7ebd8;
  --rc-blue: #233c43;
  --rc-blue-ink: #f7ebd8;
  --rc-amber: #d2aa55;
  --rc-red: #f0a083;
  --rc-red-soft: #5a3028;
  --rc-white: #241c15;
  --rc-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34);
  --rc-shadow-soft: 2px 2px 0 rgba(0, 0, 0, 0.24);
  background:
    linear-gradient(90deg, rgba(229, 196, 139, 0.035) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(0deg, rgba(229, 196, 139, 0.03) 1px, transparent 1px) 0 0 / 18px 18px,
    #201811 !important;
}

body.postid-1398[data-scheme="dark"] .cs-main-content,
body.postid-1398[data-scheme="inverse"] .cs-main-content,
body.postid-1398[data-scheme="dark"] .cs-entry__wrap,
body.postid-1398[data-scheme="inverse"] .cs-entry__wrap,
body.postid-1398[data-scheme="dark"] .entry-content,
body.postid-1398[data-scheme="inverse"] .entry-content {
  color: #f2e4cf !important;
}

body.postid-1398[data-scheme="dark"] .cs-entry__title,
body.postid-1398[data-scheme="inverse"] .cs-entry__title,
body.postid-1398[data-scheme="dark"] .recovery-calculator,
body.postid-1398[data-scheme="inverse"] .recovery-calculator,
body.postid-1398[data-scheme="dark"] .recovery-calculator .calculator-header h2,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .calculator-header h2,
body.postid-1398[data-scheme="dark"] .recovery-calculator .section-title,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .section-title,
body.postid-1398[data-scheme="dark"] .recovery-calculator .results-title,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .results-title,
body.postid-1398[data-scheme="dark"] .recovery-calculator .info-title,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .info-title,
body.postid-1398[data-scheme="dark"] .recovery-calculator strong,
body.postid-1398[data-scheme="inverse"] .recovery-calculator strong {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator::before,
body.postid-1398[data-scheme="inverse"] .recovery-calculator::before {
  background-image:
    linear-gradient(rgba(229, 196, 139, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 196, 139, 0.05) 1px, transparent 1px) !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .subtitle,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .subtitle,
body.postid-1398[data-scheme="dark"] .recovery-calculator .input-group label,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .input-group label,
body.postid-1398[data-scheme="dark"] .recovery-calculator .loss-presets > label,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .loss-presets > label,
body.postid-1398[data-scheme="dark"] .recovery-calculator .quick-label,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .quick-label,
body.postid-1398[data-scheme="dark"] .recovery-calculator .card-header,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .card-header,
body.postid-1398[data-scheme="dark"] .recovery-calculator .card-subtitle,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .card-subtitle,
body.postid-1398[data-scheme="dark"] .recovery-calculator .info-content,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .info-content,
body.postid-1398[data-scheme="dark"] .recovery-calculator .option-description,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .option-description,
body.postid-1398[data-scheme="dark"] .recovery-calculator .input-hint,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .input-hint {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .cost-section,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .cost-section,
body.postid-1398[data-scheme="dark"] .recovery-calculator .results-section-inner,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .results-section-inner,
body.postid-1398[data-scheme="dark"] .recovery-calculator .info-section {
  color: #f7ebd8 !important;
  background: #33271d !important;
  border-color: #a98b6b !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .cost-input,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .cost-input {
  color: #fff5df !important;
  -webkit-text-fill-color: #fff5df !important;
  caret-color: #f0c86a !important;
  background: #241c15 !important;
  border-color: #a98b6b !important;
  box-shadow: inset 0 1px 0 rgba(240, 200, 106, 0.10) !important;
  color-scheme: dark;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .cost-input:focus,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .cost-input:focus {
  background: #2f251c !important;
  border-color: #f0c86a !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .btn-example,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .btn-example,
body.postid-1398[data-scheme="dark"] .recovery-calculator .tool-kicker,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .tool-kicker,
body.postid-1398[data-scheme="dark"] .recovery-calculator .btn-save-chart,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .btn-save-chart {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
  background: #344a32 !important;
  border-color: #a98b6b !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .btn-clear,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .btn-clear {
  color: #fff0dd !important;
  -webkit-text-fill-color: #fff0dd !important;
  background: #5a3028 !important;
  border-color: #c98266 !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .btn-detail-toggle,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .btn-detail-toggle {
  color: #201811 !important;
  -webkit-text-fill-color: #201811 !important;
  background: #f0c86a !important;
  border-color: #a98b6b !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .btn-detail-toggle .btn-hint,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .btn-detail-toggle .btn-hint {
  color: rgba(32, 24, 17, 0.78) !important;
  -webkit-text-fill-color: rgba(32, 24, 17, 0.78) !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .preset-btn,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .preset-btn,
body.postid-1398[data-scheme="dark"] .recovery-calculator .toggle-btn,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .toggle-btn,
body.postid-1398[data-scheme="dark"] .recovery-calculator .quick-item,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .quick-item,
body.postid-1398[data-scheme="dark"] .recovery-calculator .analysis-row,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .analysis-row,
body.postid-1398[data-scheme="dark"] .recovery-calculator .card-row,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .card-row,
body.postid-1398[data-scheme="dark"] .recovery-calculator .result-card,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .result-card,
body.postid-1398[data-scheme="dark"] .recovery-calculator .analysis-box,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .analysis-box,
body.postid-1398[data-scheme="dark"] .recovery-calculator .chart-box,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .chart-box,
body.postid-1398[data-scheme="dark"] .recovery-calculator .scenario-box,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .scenario-box,
body.postid-1398[data-scheme="dark"] .recovery-calculator .scenario-card,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .scenario-card,
body.postid-1398[data-scheme="dark"] .recovery-calculator .timeline-box,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .timeline-box,
body.postid-1398[data-scheme="dark"] .recovery-calculator .info-example,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .info-example,
body.postid-1398[data-scheme="dark"] .recovery-calculator .fee-explanation,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .fee-explanation,
body.postid-1398[data-scheme="dark"] .recovery-calculator .loss-presets,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .loss-presets,
body.postid-1398[data-scheme="dark"] .recovery-calculator .toggle-content,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .toggle-content,
body.postid-1398[data-scheme="dark"] .recovery-calculator .recovery-input-status,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .recovery-input-status {
  color: #f7ebd8 !important;
  background: #241c15 !important;
  border-color: #725b46 !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .quick-main,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .quick-main,
body.postid-1398[data-scheme="dark"] .recovery-calculator .recovery-card,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .recovery-card {
  background: #233c43 !important;
  border-color: #a98b6b !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .chart-container,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .chart-container,
body.postid-1398[data-scheme="dark"] .recovery-calculator .recovery-timeline td,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .recovery-timeline td {
  color: #f7ebd8 !important;
  background: #241c15 !important;
  border-color: #725b46 !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .recovery-timeline th,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .recovery-timeline th,
body.postid-1398[data-scheme="dark"] .recovery-calculator .info-warning,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .info-warning,
body.postid-1398[data-scheme="dark"] .recovery-calculator .quick-item.highlight,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .quick-item.highlight,
body.postid-1398[data-scheme="dark"] .recovery-calculator .analysis-row.highlight,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .analysis-row.highlight {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
  background: #3b2d21 !important;
  border-color: #d2aa55 !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .recovery-input-status.is-error,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .recovery-input-status.is-error {
  color: #ffd1bf !important;
  -webkit-text-fill-color: #ffd1bf !important;
  background: #4a241d !important;
  border-color: #c98266 !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .preset-btn.active,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .preset-btn.active,
body.postid-1398[data-scheme="dark"] .recovery-calculator .preset-btn[aria-checked="true"],
body.postid-1398[data-scheme="inverse"] .recovery-calculator .preset-btn[aria-checked="true"],
body.postid-1398[data-scheme="dark"] .recovery-calculator .btn-badge,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .btn-badge,
body.postid-1398[data-scheme="dark"] .recovery-calculator .optional-tag,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .optional-tag,
body.postid-1398[data-scheme="dark"] .recovery-calculator .toggle-tag,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .toggle-tag {
  color: #241c15 !important;
  -webkit-text-fill-color: #241c15 !important;
  background: #d2aa55 !important;
  border-color: #a98b6b !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .danger-critical,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .danger-critical,
body.postid-1398[data-scheme="dark"] .recovery-calculator .danger-high,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .danger-high,
body.postid-1398[data-scheme="dark"] .recovery-calculator .danger-medium,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .danger-medium {
  color: #f0a083 !important;
  -webkit-text-fill-color: #f0a083 !important;
}

body.postid-1398[data-scheme="dark"] .recovery-calculator .danger-low,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .danger-low,
body.postid-1398[data-scheme="dark"] .recovery-calculator .danger-safe,
body.postid-1398[data-scheme="inverse"] .recovery-calculator .danger-safe {
  color: #bfe3a8 !important;
  -webkit-text-fill-color: #bfe3a8 !important;
}

/* Responsive */
@media (max-width: 980px) {
  body.postid-1398 .cs-breadcrumbs,
  body.postid-1398 .cs-entry__header,
  body.postid-1398 .recovery-calculator,
  body.postid-1398 .recovery-calculator-ad,
  body.postid-1398 .recovery-calculator + .roberin-qa-ad-placeholder,
  body.postid-1398 .roberin-qa-ad-placeholder[data-roberin-qa-ad-slot="7492498702"],
  body.postid-1398 .roberin-qa-ad-placeholder[data-roberin-qa-ad-slot="1316434178"] {
    width: min(100%, calc(100vw - 24px));
  }

  .recovery-calculator .calculator-main,
  .recovery-calculator .results-cards {
    grid-template-columns: 1fr;
  }

  .recovery-calculator .preview-section {
    order: -1;
  }

  .recovery-calculator .quick-main {
    min-height: 96px;
  }
}

@media (max-width: 640px) {
  body.postid-1398 .cs-breadcrumbs,
  body.postid-1398 .cs-entry__header,
  body.postid-1398 .recovery-calculator,
  body.postid-1398 .recovery-calculator-ad,
  body.postid-1398 .recovery-calculator + .roberin-qa-ad-placeholder,
  body.postid-1398 .roberin-qa-ad-placeholder[data-roberin-qa-ad-slot="7492498702"],
  body.postid-1398 .roberin-qa-ad-placeholder[data-roberin-qa-ad-slot="1316434178"] {
    width: min(100%, calc(100vw - 16px));
  }

  .recovery-calculator {
    padding: 10px;
    margin-bottom: 18px;
  }

  .recovery-calculator .calculator-header {
    margin-bottom: 8px;
    padding-bottom: 8px;
  }

  .recovery-calculator .example-buttons,
  .recovery-calculator .input-row,
  .recovery-calculator .scenario-grid,
  .recovery-calculator .info-examples {
    grid-template-columns: 1fr;
  }

  .recovery-calculator .presets-buttons {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 5px;
  }

  .recovery-calculator .preset-btn {
    min-height: 36px;
    padding-left: 3px;
    padding-right: 3px;
    font-size: 12px;
  }

  .recovery-calculator .cost-section,
  .recovery-calculator .results-section-inner,
  .recovery-calculator .info-section {
    padding: 10px;
  }

  .recovery-calculator .chart-header {
    align-items: stretch;
    flex-direction: column;
  }

  .recovery-calculator .btn-save-chart {
    width: 100%;
  }

  .recovery-calculator .chart-container {
    height: 230px;
    min-height: 230px;
  }
}

@media (max-width: 380px) {
  .recovery-calculator .calculator-header h2 {
    font-size: 21px;
  }

  .recovery-calculator .quick-value-large {
    font-size: 32px;
  }

  .recovery-calculator .btn-detail-toggle {
    align-items: stretch;
    flex-direction: column;
  }

  .recovery-calculator .btn-detail-toggle .btn-badge {
    width: max-content;
  }
}

/* Strict after-tool ad symmetry gate: neutralize global ad/body margins for this page.
   This must outrank global content/ad styles loaded after tool assets. */
body.postid-1398 .entry-content > .recovery-calculator-ad.recovery-calculator-ad--after-tool,
body.postid-1398 .entry-content > .recovery-calculator-ad.roberin-ad--after-tool,
body.postid-1398 .entry-content > .recovery-calculator-ad.recovery-calculator-ad--after-tool .roberin-qa-ad-placeholder[data-roberin-qa-ad-slot="7492498702"] {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

body.postid-1398 .entry-content > .recovery-calculator-ad.recovery-calculator-ad--after-tool + .wp-block-group.content1,
body.postid-1398 .entry-content > .recovery-calculator-ad.roberin-ad--after-tool + .wp-block-group.content1 {
  margin-top: 24px !important;
}

/* Phase 2 redo v9: exact PDF page deletion article rhythm. */
body.postid-1398 {
  --pdf-article-page: #f9f1e7;
  --pdf-article-panel: #f8efe2;
  --pdf-article-card: #fff8ed;
  --pdf-article-accent-paper: #e2edd8;
  --pdf-article-text: #34281f;
  --pdf-article-muted: #574838;
  --pdf-article-line: #6b5745;
  --pdf-article-line-soft: rgba(107, 87, 69, .34);
  --pdf-article-mustard: #d2aa55;
  --pdf-article-mustard-soft: rgba(210, 170, 85, .24);
  --pdf-article-focus: #4f7d94;
  --pdf-article-shadow: rgba(82, 65, 50, .22);
  --pdf-article-soft-shadow: rgba(82, 65, 50, .13);
}

body.postid-1398[data-scheme="dark"],
body.postid-1398[data-scheme="inverse"] {
  --pdf-article-page: #201811;
  --pdf-article-panel: #33271d;
  --pdf-article-card: #2b2119;
  --pdf-article-accent-paper: #344a32;
  --pdf-article-text: #f2e4cf;
  --pdf-article-muted: #f0dfc5;
  --pdf-article-line: #a98b6b;
  --pdf-article-line-soft: rgba(169, 139, 107, .46);
  --pdf-article-mustard: #d2aa55;
  --pdf-article-mustard-soft: rgba(210, 170, 85, .22);
  --pdf-article-focus: #d2aa55;
  --pdf-article-shadow: rgba(0, 0, 0, .32);
  --pdf-article-soft-shadow: rgba(0, 0, 0, .2);
}

body.postid-1398 #recovery-calculator-guide,
body.postid-1398 #recovery-calculator-guide *,
body.postid-1398 #recovery-calculator-guide *::before,
body.postid-1398 #recovery-calculator-guide *::after {
  box-sizing: border-box !important;
  min-width: 0 !important;
}

body.postid-1398 .entry-content > .recovery-calculator-ad.recovery-calculator-ad--after-tool,
body.postid-1398 .entry-content > .recovery-calculator-ad.roberin-ad--after-tool,
body.postid-1398 .entry-content > .recovery-calculator-ad.recovery-calculator-ad--after-tool .roberin-qa-ad-placeholder[data-roberin-qa-ad-slot="7492498702"] {
  margin-top: clamp(24px, 4vw, 42px) !important;
  margin-bottom: clamp(24px, 4vw, 42px) !important;
}

body.postid-1398 .entry-content > .recovery-calculator-ad.recovery-calculator-ad--after-tool + #recovery-calculator-guide,
body.postid-1398 .entry-content > .recovery-calculator-ad.roberin-ad--after-tool + #recovery-calculator-guide {
  margin-top: clamp(24px, 4vw, 42px) !important;
}

body.postid-1398 .entry-content article#recovery-calculator-guide.roberin-article-body.pdf-page-deletion-article,
body.postid-1398 #recovery-calculator-guide.roberin-article-body.pdf-page-deletion-article,
body.postid-1398 .pdf-page-deletion-article {
  position: relative !important;
  z-index: 0 !important;
  display: grid !important;
  gap: 18px !important;
  box-sizing: border-box !important;
  width: min(980px, calc(100vw - 32px)) !important;
  max-width: 980px !important;
  min-width: 0 !important;
  margin: clamp(24px, 4vw, 42px) auto !important;
  padding: clamp(16px, 3vw, 28px) !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  background:
    linear-gradient(rgba(107, 87, 69, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, .04) 1px, transparent 1px),
    var(--pdf-article-panel) !important;
  background-size: 28px 28px, 28px 28px, auto !important;
  border: 2px solid var(--pdf-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 var(--pdf-article-shadow) !important;
  overflow: hidden !important;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
  word-break: keep-all !important;
}

body.postid-1398 #recovery-calculator-guide :is(p, li, td, th, summary, span, strong, code, h2, h3) {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
}

body.postid-1398 #recovery-calculator-guide .pdf-article__hero,
body.postid-1398 #recovery-calculator-guide .pdf-article__section {
  display: grid !important;
  gap: 13px !important;
  min-width: 0 !important;
  margin: 0 !important;
  color: inherit !important;
  background: transparent !important;
  border-right: 0 !important;
  border-left: 0 !important;
  box-shadow: none !important;
}

body.postid-1398 #recovery-calculator-guide .pdf-article__hero {
  padding: 0 0 22px !important;
  border-top: 0 !important;
  border-bottom: 1px dashed var(--pdf-article-line-soft) !important;
}

body.postid-1398 #recovery-calculator-guide .pdf-article__section {
  padding: 0 !important;
  border: 0 !important;
}

body.postid-1398 #recovery-calculator-guide .pdf-article__section + .pdf-article__section {
  margin-top: 6px !important;
  padding-top: 22px !important;
  border-top: 1px dashed var(--pdf-article-line-soft) !important;
  border-bottom: 0 !important;
}

body.postid-1398 #recovery-calculator-guide .pdf-article__kicker {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 26px !important;
  margin: 0 !important;
  padding: 5px 9px !important;
  color: var(--pdf-article-muted) !important;
  -webkit-text-fill-color: var(--pdf-article-muted) !important;
  background: var(--pdf-article-accent-paper) !important;
  border: 1px solid var(--pdf-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0 var(--pdf-article-soft-shadow) !important;
  font-size: 15px !important;
  font-weight: 680 !important;
  line-height: 1.72 !important;
  letter-spacing: .01em !important;
}

body.postid-1398 #recovery-calculator-guide h2,
body.postid-1398 #recovery-calculator-guide h3 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  background: transparent !important;
  border: 0 !important;
  border-left: 0 !important;
  border-left-width: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  letter-spacing: -.02em !important;
  word-break: keep-all !important;
}

body.postid-1398 #recovery-calculator-guide h2 {
  font-size: clamp(25px, 3vw, 30px) !important;
  font-weight: 950 !important;
  line-height: 1.18 !important;
}

body.postid-1398 #recovery-calculator-guide h3 {
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
}

body.postid-1398 #recovery-calculator-guide p,
body.postid-1398 #recovery-calculator-guide li,
body.postid-1398 #recovery-calculator-guide summary {
  margin: 0 !important;
  color: var(--pdf-article-muted) !important;
  -webkit-text-fill-color: var(--pdf-article-muted) !important;
  font-size: 15px !important;
  font-weight: 680 !important;
  line-height: 1.72 !important;
  overflow-wrap: anywhere !important;
}

body.postid-1398 #recovery-calculator-guide strong {
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  font-weight: 920 !important;
}

body.postid-1398 #recovery-calculator-guide .pdf-article__nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
  color: inherit !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-1398 #recovery-calculator-guide .pdf-article__nav a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  padding: 6px 10px !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  text-decoration: none !important;
  background: var(--pdf-article-card) !important;
  border: 1px solid var(--pdf-article-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.72 !important;
}

body.postid-1398 #recovery-calculator-guide .pdf-article__nav a:hover,
body.postid-1398 #recovery-calculator-guide .pdf-article__nav a:focus-visible {
  background: var(--pdf-article-mustard-soft) !important;
  outline: 2px solid var(--pdf-article-focus) !important;
  outline-offset: 2px !important;
}

body.postid-1398 #recovery-calculator-guide .pdf-article__grid,
body.postid-1398 #recovery-calculator-guide .pdf-article__process-grid,
body.postid-1398 #recovery-calculator-guide .pdf-article__use-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  min-width: 0 !important;
}

body.postid-1398 #recovery-calculator-guide .pdf-article__use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.postid-1398 #recovery-calculator-guide .pdf-article__card,
body.postid-1398 #recovery-calculator-guide .pdf-article__process,
body.postid-1398 #recovery-calculator-guide .pdf-article__use,
body.postid-1398 #recovery-calculator-guide .pdf-article__notice,
body.postid-1398 #recovery-calculator-guide details {
  display: grid !important;
  gap: 7px !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 12px !important;
  color: var(--pdf-article-muted) !important;
  -webkit-text-fill-color: var(--pdf-article-muted) !important;
  background: var(--pdf-article-card) !important;
  border: 1px solid var(--pdf-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 var(--pdf-article-soft-shadow) !important;
}

body.postid-1398 #recovery-calculator-guide .pdf-article__notice {
  background: rgba(239, 225, 188, .64) !important;
  border-style: dashed !important;
}

body.postid-1398 #recovery-calculator-guide .pdf-article__process {
  background: rgba(226, 237, 216, .70) !important;
}

body.postid-1398 #recovery-calculator-guide .pdf-article__use span,
body.postid-1398 #recovery-calculator-guide .pdf-article__process span {
  color: var(--pdf-article-muted) !important;
  -webkit-text-fill-color: var(--pdf-article-muted) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
}

body.postid-1398 #recovery-calculator-guide code {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  padding: 5px 8px !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  background: var(--pdf-article-card) !important;
  border: 1px solid var(--pdf-article-line-soft) !important;
  border-radius: 0 !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace !important;
  font-size: .92em !important;
  font-weight: 780 !important;
  line-height: 1.48 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

body.postid-1398 #recovery-calculator-guide :is(ul, ol) {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

body.postid-1398 #recovery-calculator-guide ol,
body.postid-1398 #recovery-calculator-guide ol.pdf-article__steps {
  counter-reset: pdf-article-step !important;
}

body.postid-1398 #recovery-calculator-guide :is(ul, ol) > li {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  min-width: 0 !important;
  min-height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  overflow-wrap: anywhere !important;
}

body.postid-1398 #recovery-calculator-guide :is(ul, ol) > li::before {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  flex: 0 0 auto !important;
  align-self: center !important;
  box-sizing: border-box !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  border-radius: 0 !important;
}

body.postid-1398 #recovery-calculator-guide ul > li::before {
  content: "" !important;
  display: inline-block !important;
  width: 9px !important;
  height: 9px !important;
  background: var(--pdf-article-mustard) !important;
  border: 1px solid var(--pdf-article-line) !important;
  box-shadow: 1px 1px 0 rgba(82, 65, 50, .22) !important;
  line-height: 1 !important;
}

body.postid-1398 #recovery-calculator-guide ol > li,
body.postid-1398 #recovery-calculator-guide ol.pdf-article__steps > li {
  counter-increment: pdf-article-step !important;
}

body.postid-1398 #recovery-calculator-guide ol > li::before,
body.postid-1398 #recovery-calculator-guide ol.pdf-article__steps > li::before {
  content: counter(pdf-article-step) !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 20px !important;
  height: 20px !important;
  background: var(--pdf-article-mustard-soft) !important;
  border: 1px solid var(--pdf-article-line) !important;
  box-shadow: 1px 1px 0 rgba(82, 65, 50, .22) !important;
  font-size: 11px !important;
  font-weight: 920 !important;
  line-height: 1 !important;
}

body.postid-1398 #recovery-calculator-guide .pdf-article__li-text {
  display: block !important;
  min-width: 0 !important;
  align-self: center !important;
}

body.postid-1398 #recovery-calculator-guide details summary {
  cursor: pointer !important;
  display: list-item !important;
  list-style-position: inside !important;
  list-style-type: disclosure-closed !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  font-weight: 950 !important;
  line-height: 1.45 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-1398 #recovery-calculator-guide details[open] summary {
  margin-bottom: 8px !important;
  list-style-type: disclosure-open !important;
}

body.postid-1398 #recovery-calculator-guide details summary::after {
  content: none !important;
  display: none !important;
}

body.postid-1398[data-scheme="dark"] .entry-content article#recovery-calculator-guide.roberin-article-body.pdf-page-deletion-article,
body.postid-1398[data-scheme="inverse"] .entry-content article#recovery-calculator-guide.roberin-article-body.pdf-page-deletion-article,
body.postid-1398[data-scheme="dark"] #recovery-calculator-guide.pdf-page-deletion-article,
body.postid-1398[data-scheme="inverse"] #recovery-calculator-guide.pdf-page-deletion-article {
  color: #f2e4cf !important;
  -webkit-text-fill-color: #f2e4cf !important;
  background-image:
    linear-gradient(rgba(169, 139, 107, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 139, 107, .06) 1px, transparent 1px) !important;
  background-color: #33271d !important;
  border-color: #a98b6b !important;
}

body.postid-1398[data-scheme="dark"] #recovery-calculator-guide :is(h2, h3, strong, summary),
body.postid-1398[data-scheme="inverse"] #recovery-calculator-guide :is(h2, h3, strong, summary) {
  color: #f2e4cf !important;
  -webkit-text-fill-color: #f2e4cf !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-1398[data-scheme="dark"] #recovery-calculator-guide :is(p, li, span),
body.postid-1398[data-scheme="inverse"] #recovery-calculator-guide :is(p, li, span) {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

body.postid-1398[data-scheme="dark"] #recovery-calculator-guide .pdf-article__card,
body.postid-1398[data-scheme="dark"] #recovery-calculator-guide .pdf-article__process,
body.postid-1398[data-scheme="dark"] #recovery-calculator-guide .pdf-article__use,
body.postid-1398[data-scheme="dark"] #recovery-calculator-guide .pdf-article__notice,
body.postid-1398[data-scheme="dark"] #recovery-calculator-guide details,
body.postid-1398[data-scheme="dark"] #recovery-calculator-guide .pdf-article__nav a,
body.postid-1398[data-scheme="inverse"] #recovery-calculator-guide .pdf-article__card,
body.postid-1398[data-scheme="inverse"] #recovery-calculator-guide .pdf-article__process,
body.postid-1398[data-scheme="inverse"] #recovery-calculator-guide .pdf-article__use,
body.postid-1398[data-scheme="inverse"] #recovery-calculator-guide .pdf-article__notice,
body.postid-1398[data-scheme="inverse"] #recovery-calculator-guide details,
body.postid-1398[data-scheme="inverse"] #recovery-calculator-guide .pdf-article__nav a {
  background-color: #33271d !important;
  border-color: rgba(169, 139, 107, .72) !important;
  box-shadow: 3px 3px 0 rgba(32, 24, 17, .52) !important;
}

body.postid-1398[data-scheme="dark"] #recovery-calculator-guide .pdf-article__notice,
body.postid-1398[data-scheme="dark"] #recovery-calculator-guide .pdf-article__process,
body.postid-1398[data-scheme="inverse"] #recovery-calculator-guide .pdf-article__notice,
body.postid-1398[data-scheme="inverse"] #recovery-calculator-guide .pdf-article__process {
  background-color: rgba(36, 28, 21, .56) !important;
}

body.postid-1398[data-scheme="dark"] #recovery-calculator-guide code,
body.postid-1398[data-scheme="inverse"] #recovery-calculator-guide code {
  color: #f2e4cf !important;
  -webkit-text-fill-color: #f2e4cf !important;
  background: #241c15 !important;
  border-color: rgba(169, 139, 107, .56) !important;
}

body.postid-1398[data-scheme="dark"] #recovery-calculator-guide :is(ul, ol) > li::before,
body.postid-1398[data-scheme="inverse"] #recovery-calculator-guide :is(ul, ol) > li::before {
  border-color: #a98b6b !important;
}

@media (max-width: 920px) {
  body.postid-1398 #recovery-calculator-guide .pdf-article__use-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  body.postid-1398 .entry-content > .recovery-calculator-ad,
  body.postid-1398 .entry-content > .roberin-qa-ad-placeholder {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }

  body.postid-1398 .entry-content > .recovery-calculator-ad.recovery-calculator-ad--after-tool,
  body.postid-1398 .entry-content > .recovery-calculator-ad.roberin-ad--after-tool,
  body.postid-1398 .entry-content > .recovery-calculator-ad.recovery-calculator-ad--after-tool .roberin-qa-ad-placeholder[data-roberin-qa-ad-slot="7492498702"] {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  body.postid-1398 .entry-content article#recovery-calculator-guide.roberin-article-body.pdf-page-deletion-article,
  body.postid-1398 #recovery-calculator-guide.roberin-article-body.pdf-page-deletion-article,
  body.postid-1398 .pdf-page-deletion-article {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    padding: 12px !important;
    font-size: 15px !important;
    line-height: 1.72 !important;
    box-shadow: 4px 4px 0 rgba(82, 65, 50, .16) !important;
  }

  body.postid-1398 #recovery-calculator-guide .pdf-article__grid,
  body.postid-1398 #recovery-calculator-guide .pdf-article__process-grid,
  body.postid-1398 #recovery-calculator-guide .pdf-article__use-grid {
    grid-template-columns: 1fr !important;
  }

  body.postid-1398 #recovery-calculator-guide h3 {
    font-size: 18px !important;
  }
}


@media (min-width: 371px) and (max-width: 640px) {
  body.postid-1398[data-scheme="dark"] .entry-content article#recovery-calculator-guide.roberin-article-body.pdf-page-deletion-article,
  body.postid-1398[data-scheme="inverse"] .entry-content article#recovery-calculator-guide.roberin-article-body.pdf-page-deletion-article,
  body.postid-1398[data-scheme="dark"] #recovery-calculator-guide.pdf-page-deletion-article,
  body.postid-1398[data-scheme="inverse"] #recovery-calculator-guide.pdf-page-deletion-article {
    color: #f2e4cf !important;
    -webkit-text-fill-color: #f2e4cf !important;
    background-color: #33271d !important;
  }
}

@media (max-width: 370px) {
  body.postid-1398 #recovery-calculator-guide h2 {
    font-size: 25.2px !important;
  }
}

/* v10 final dark-mobile article token alignment with the live PDF reference computed values. */
@media (min-width: 371px) and (max-width: 640px) {
  html body.postid-1398[data-scheme="dark"].single-sight-projects .entry-content article#recovery-calculator-guide.roberin-article-body.pdf-page-deletion-article,
  html body.postid-1398[data-scheme="inverse"].single-sight-projects .entry-content article#recovery-calculator-guide.roberin-article-body.pdf-page-deletion-article {
    color: rgb(242, 228, 207) !important;
    -webkit-text-fill-color: rgb(242, 228, 207) !important;
    background-color: rgb(51, 39, 29) !important;
  }
}

@media (max-width: 370px) {
  html body.postid-1398[data-scheme="dark"].single-sight-projects .entry-content article#recovery-calculator-guide.roberin-article-body.pdf-page-deletion-article,
  html body.postid-1398[data-scheme="inverse"].single-sight-projects .entry-content article#recovery-calculator-guide.roberin-article-body.pdf-page-deletion-article {
    color: rgb(241, 227, 207) !important;
    -webkit-text-fill-color: rgb(241, 227, 207) !important;
    background-color: rgb(52, 40, 30) !important;
  }
}
