/* ROBERIN rent-vs-deposit calculator repair v5: public-copy-safe visual comparison charts */
.rent-vs-deposit-calculator {
  --rvd-paper: #fff7e8;
  --rvd-paper-soft: #fbf0dc;
  --rvd-ink: #2b2119;
  --rvd-muted: #67584a;
  --rvd-line: #6b5745;
  --rvd-line-soft: rgba(107, 87, 69, 0.26);
  --rvd-green: #e3efd2;
  --rvd-green-ink: #2f4e2e;
  --rvd-blue: #dfeef8;
  --rvd-blue-ink: #28455a;
  --rvd-amber: #f7df9d;
  --rvd-red: #a43e2d;
  --rvd-white: #fffdf7;
  --rvd-shadow: 4px 4px 0 rgba(72, 55, 40, 0.22);
  --rvd-shadow-soft: 2px 2px 0 rgba(72, 55, 40, 0.14);
  width: min(1150px, calc(100vw - 32px));
  max-width: 1150px;
  margin: 0 auto 24px;
  color: var(--rvd-ink);
  -webkit-text-fill-color: currentColor;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

.rent-vs-deposit-calculator,
.rent-vs-deposit-calculator *,
.rent-vs-deposit-calculator *::before,
.rent-vs-deposit-calculator *::after {
  box-sizing: border-box;
}

.rent-vs-deposit-container {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  color: var(--rvd-ink);
  background: var(--rvd-paper);
  border: 2px solid var(--rvd-line);
  border-radius: 0;
  box-shadow: var(--rvd-shadow);
  line-height: 1.52;
}

.rent-vs-deposit-container::before {
  content: "" !important;
  display: block !important;
  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;
}

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

.calculator-header h2 {
  margin: 0;
  color: var(--rvd-ink);
  -webkit-text-fill-color: currentColor;
  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;
}

.calculator-header .subtitle,
.subtitle {
  max-width: 660px;
  margin: 0;
  color: var(--rvd-muted);
  -webkit-text-fill-color: currentColor;
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 700;
  word-break: keep-all;
}

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

.quick-action-btn,
.tab-btn,
.chart-tab,
.btn-calculate,
.btn-secondary,
.fee-calculator-btn {
  appearance: none;
  border-radius: 0;
  font-family: inherit;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease, color 120ms ease;
}

.quick-action-btn,
.btn-secondary,
.fee-calculator-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--rvd-line);
  box-shadow: var(--rvd-shadow-soft);
  font-size: 13.5px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.btn-quick {
  color: var(--rvd-green-ink);
  -webkit-text-fill-color: currentColor;
  background: var(--rvd-green);
}

.btn-reset,
.btn-secondary,
.fee-calculator-btn {
  color: #743528;
  -webkit-text-fill-color: currentColor;
  background: #f3dfd3;
}

.quick-action-btn:hover,
.quick-action-btn:focus-visible,
.tab-btn:hover,
.chart-tab:hover,
.btn-calculate:hover,
.btn-secondary:hover,
.fee-calculator-btn:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 rgba(72, 55, 40, 0.16);
}

.quick-action-btn:active,
.tab-btn:active,
.chart-tab:active,
.btn-calculate:active,
.btn-secondary:active,
.fee-calculator-btn:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.calculator-main {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: 10px;
  margin: 0 0 10px;
  align-items: start;
}

.input-section,
.result-section,
.special-section,
.info-section {
  min-width: 0;
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid var(--rvd-line);
  border-radius: 0;
  box-shadow: var(--rvd-shadow-soft);
  padding: 12px;
}

.input-section,
.result-section,
.special-section {
  display: flex;
  flex-direction: column;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  padding: 0 0 8px;
  color: var(--rvd-ink) !important;
  -webkit-text-fill-color: currentColor !important;
  border-bottom: 1px solid var(--rvd-line-soft);
  font-size: 15.5px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.tab-control,
.chart-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0 0 9px;
}

.chart-tabs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tab-btn,
.chart-tab {
  min-height: 34px;
  padding: 7px 8px;
  color: var(--rvd-ink);
  -webkit-text-fill-color: currentColor;
  background: var(--rvd-white);
  border: 1px solid var(--rvd-line);
  box-shadow: var(--rvd-shadow-soft);
  font-size: 12.5px;
  line-height: 1.1;
  font-weight: 900;
}

.tab-btn.active,
.chart-tab.active {
  color: #fffaf0;
  -webkit-text-fill-color: currentColor;
  background: #35271d;
  border-color: #231a13;
  box-shadow: 2px 2px 0 rgba(72, 55, 40, 0.18);
}

.tab-pane[hidden],
.chart-panel[hidden] {
  display: none !important;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

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

.input-group label {
  display: block;
  margin: 0 0 5px;
  color: var(--rvd-muted);
  -webkit-text-fill-color: currentColor;
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.input-with-unit {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.rent-vs-deposit-calculator input,
.rent-vs-deposit-calculator select {
  min-width: 0;
  min-height: 40px;
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  color: var(--rvd-ink) !important;
  -webkit-text-fill-color: var(--rvd-ink) !important;
  background: #fffdf8;
  border: 1px solid var(--rvd-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: 800;
  font-family: inherit;
  outline: none;
  color-scheme: light;
}

.input-with-unit input {
  border-right: 0;
}

.input-unit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 58px;
  padding: 0 8px;
  color: var(--rvd-muted);
  -webkit-text-fill-color: currentColor;
  background: #fbf0dc;
  border: 1px solid var(--rvd-line);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.rent-vs-deposit-calculator input::placeholder {
  color: rgba(103, 88, 74, 0.62) !important;
  -webkit-text-fill-color: rgba(103, 88, 74, 0.62) !important;
  font-weight: 650;
}

.rent-vs-deposit-calculator input:focus,
.rent-vs-deposit-calculator select:focus,
.input-with-unit:focus-within input,
.input-with-unit:focus-within .input-unit {
  background: #fff6d8;
  border-color: #5f4834;
}

.input-helper {
  margin: 4px 0 0;
  color: var(--rvd-muted);
  -webkit-text-fill-color: currentColor;
  font-size: 11.5px;
  line-height: 1.34;
  font-weight: 650;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 3px;
  color: var(--rvd-muted);
  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 750;
}

.rent-vs-deposit-calculator input[type="range"] {
  min-height: 30px;
  padding: 0;
  accent-color: #35271d;
}

.fee-calculator-btn {
  width: 100%;
  min-height: 38px;
  margin-top: 1px;
  text-decoration: none;
}

.analysis-error {
  margin: 1px 0 9px;
  padding: 8px 9px;
  color: var(--rvd-red);
  -webkit-text-fill-color: currentColor;
  background: #fff2c1;
  border: 1px solid #c99a35;
  border-left: 5px solid #c99a35;
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 850;
}

.calculator-buttons {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  margin-top: 2px;
  padding-top: 0;
}

.btn-calculate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  color: #fffaf0;
  -webkit-text-fill-color: currentColor;
  background: #35271d;
  border: 1px solid #231a13;
  box-shadow: 3px 3px 0 rgba(72, 55, 40, 0.24);
  font-size: 14.5px;
  line-height: 1;
  font-weight: 950;
}

.btn-secondary {
  min-height: 36px;
  padding: 8px 10px;
}

.result-display {
  display: grid;
  gap: 0;
  text-align: left;
}

.result-display > .main-result + .detail-results {
  margin-top: 12px;
}

.main-result {
  display: grid;
  place-items: center;
  min-height: 98px;
  margin: 0;
  padding: 12px;
  color: var(--rvd-blue-ink);
  background: var(--rvd-blue);
  border: 1px solid var(--rvd-line);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.38);
  text-align: center;
}

.winner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 8px;
  color: var(--rvd-blue-ink);
  -webkit-text-fill-color: currentColor;
  background: rgba(255,253,248,.74);
  border: 1px solid rgba(107,87,69,.36);
  font-size: 11.5px;
  line-height: 1;
  font-weight: 950;
}

.winner-badge.deposit { color: #6b3f19; }
.winner-badge.monthly { color: #2f4e2e; }
.winner-badge.neutral { color: #5f3d12; }

.big-number,
.winner-title {
  margin: 7px 0 0;
  color: var(--rvd-blue-ink);
  -webkit-text-fill-color: currentColor;
  font-size: clamp(21px, 2.2vw, 25px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.045em;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  word-break: keep-all;
}

.result-label,
.winner-description {
  margin: 6px 0 0;
  color: var(--rvd-muted);
  -webkit-text-fill-color: currentColor;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 900;
}

.detail-results,
.comparison-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.result-item,
.comparison-item {
  display: grid;
  gap: 2px;
  align-items: start;
  min-width: 0;
  margin: 0;
  padding: 8px 9px;
  color: var(--rvd-ink);
  background: #fffaf0;
  border: 1px solid rgba(107, 87, 69, 0.36);
  border-radius: 0;
  box-shadow: none;
}

.result-item.full-row { grid-column: 1 / -1; }

.result-label-text,
.comparison-label,
.comparison-monthly {
  color: var(--rvd-muted);
  -webkit-text-fill-color: currentColor;
  font-size: 11.5px;
  line-height: 1.1;
  font-weight: 900;
}

.result-value,
.comparison-value {
  color: var(--rvd-ink);
  -webkit-text-fill-color: currentColor;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 950;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.risk-analysis,
.detailed-analysis,
.chart-note {
  margin: 9px 0 0;
  padding: 10px;
  color: var(--rvd-muted);
  background: #fffdf8;
  border: 1px solid rgba(107, 87, 69, 0.28);
  border-radius: 0;
  box-shadow: none;
}

.risk-analysis h4,
.detailed-analysis h4,
.chart-note strong {
  display: block;
  margin: 0 0 7px;
  color: var(--rvd-ink);
  -webkit-text-fill-color: currentColor;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

.risk-meters {
  display: grid;
  gap: 8px;
}

.risk-label {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--rvd-muted);
  -webkit-text-fill-color: currentColor;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
}

.risk-bar-container {
  height: 9px;
  margin-top: 5px;
  background: #fbf0dc;
  border: 1px solid rgba(107,87,69,.36);
  overflow: hidden;
}

.risk-bar {
  height: 100%;
  transition: width 220ms ease;
}

.deposit-risk { background: #c7832e; }
.monthly-risk { background: #4f7a38; }

.risk-description,
.analysis-content p,
.chart-note span {
  margin: 7px 0 0;
  color: var(--rvd-muted);
  -webkit-text-fill-color: currentColor;
  font-size: 12.5px;
  line-height: 1.48;
  font-weight: 700;
}

.analysis-content h5 {
  margin: 9px 0 5px;
  color: var(--rvd-ink);
  -webkit-text-fill-color: currentColor;
  font-size: 12.8px;
  line-height: 1.2;
  font-weight: 950;
}

.analysis-content h5:first-child { margin-top: 0; }

.analysis-lines {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--rvd-muted);
  -webkit-text-fill-color: currentColor;
  font-size: 12.2px;
  line-height: 1.38;
  font-weight: 700;
}

.analysis-lines span,
.feature-list-items span {
  position: relative;
  min-width: 0;
  padding-left: 13px;
}

.analysis-lines span::before,
.feature-list-items span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 4px;
  height: 4px;
  background: var(--rvd-line);
}


.chart-panel { margin: 0; }

.chart-container {
  position: relative;
  min-height: 205px;
  height: 205px;
  padding: 8px;
  color: var(--rvd-ink);
  background: #fffdf8;
  border: 1px solid var(--rvd-line);
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(107, 87, 69, 0.08);
}

.chart-container canvas {
  width: 100% !important;
  height: 100% !important;
}

.chart-fallback {
  margin: 8px 0 0;
  color: var(--rvd-red);
  -webkit-text-fill-color: currentColor;
  font-size: 12.5px;
  line-height: 1.4;
  font-weight: 850;
}

.info-section {
  margin: 0;
  padding: 12px;
}

.info-content {
  color: var(--rvd-muted);
  font-size: 13.5px;
  line-height: 1.62;
  font-weight: 650;
}

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

.info-card {
  min-width: 0;
  padding: 10px;
  background: #fffaf0;
  border: 1px solid rgba(107, 87, 69, 0.32);
  border-radius: 0;
  text-align: left;
  box-shadow: none;
}

.info-icon {
  margin: 0 0 5px;
  color: var(--rvd-ink);
  font-size: 19px;
  line-height: 1;
  font-weight: 950;
}

.info-title {
  margin: 0 0 4px;
  color: var(--rvd-ink);
  -webkit-text-fill-color: currentColor;
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 950;
}

.info-desc {
  color: var(--rvd-muted);
  -webkit-text-fill-color: currentColor;
  font-size: 12px;
  line-height: 1.42;
  font-weight: 700;
}

.feature-list {
  margin: 0 0 9px;
  padding: 10px;
  background: #fffdf8;
  border: 1px solid rgba(107, 87, 69, 0.28);
}

.feature-list p {
  margin: 0 0 7px;
  color: var(--rvd-ink);
  -webkit-text-fill-color: currentColor;
  font-size: 13px;
  font-weight: 950;
}

.feature-list-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 12px;
  margin: 0;
}

.feature-list-items span {
  color: var(--rvd-muted);
  -webkit-text-fill-color: currentColor;
  font-size: 12.5px;
  line-height: 1.42;
  font-weight: 700;
}

.warning-box {
  margin: 0;
  padding: 10px 11px;
  color: #6f4b1d;
  -webkit-text-fill-color: currentColor;
  background: #fff2c1;
  border: 1px solid #c99a35;
  border-left: 5px solid #c99a35;
  font-size: 12.8px;
  line-height: 1.55;
  font-weight: 750;
}

.warning-box strong {
  color: #5f3d12;
  -webkit-text-fill-color: currentColor;
  font-weight: 950;
}

.rent-vs-deposit-calculator .analysis-content li,
.rent-vs-deposit-calculator .feature-list li {
  position: relative;
  list-style: none !important;
  padding-left: 13px;
}

.rent-vs-deposit-calculator .analysis-content li::before,
.rent-vs-deposit-calculator .feature-list li::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 4px;
  height: 4px;
  background: var(--rvd-line) !important;
  border-radius: 0;
}

.rent-vs-deposit-calculator .input-invalid {
  border-color: var(--rvd-red) !important;
  box-shadow: 0 0 0 3px rgba(164, 62, 45, 0.15) !important;
}

.rent-vs-deposit-calculator button:focus-visible,
.rent-vs-deposit-calculator a:focus-visible,
.rent-vs-deposit-calculator input:focus-visible,
.rent-vs-deposit-calculator select:focus-visible {
  outline: 3px solid #d6a62b;
  outline-offset: 2px;
}

.rent-vs-deposit-calculator-ad,
.rent-vs-deposit-ad,
[data-roberin-ad-position="after-tool"] {
  max-width: min(1150px, calc(100vw - 32px));
  margin-left: auto;
  margin-right: auto;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.rent-vs-deposit-ad--after-tool,
[data-roberin-ad-position="after-tool"] {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.rent-vs-deposit-ad--after-tool + .wp-block-group.content1,
.rent-vs-deposit-ad--after-tool + .wp-block-group {
  margin-top: 24px !important;
}

body[data-scheme="dark"] .rent-vs-deposit-calculator,
body[data-scheme="inverse"] .rent-vs-deposit-calculator {
  --rvd-paper: #2b2119;
  --rvd-paper-soft: #241c15;
  --rvd-ink: #f7ebd8;
  --rvd-muted: #f0dfc5;
  --rvd-line: #a98b6b;
  --rvd-line-soft: rgba(169, 139, 107, 0.48);
  --rvd-green: #344a32;
  --rvd-green-ink: #f7ebd8;
  --rvd-blue: #233c43;
  --rvd-blue-ink: #f1e8cf;
  --rvd-amber: #d2aa55;
  --rvd-red: #d08b75;
  --rvd-white: #241c15;
  --rvd-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34);
  --rvd-shadow-soft: 2px 2px 0 rgba(0, 0, 0, 0.24);
  color: #f2e4cf !important;
}

body[data-scheme="dark"] .rent-vs-deposit-container,
body[data-scheme="inverse"] .rent-vs-deposit-container {
  color: #f7ebd8 !important;
  background: #2b2119 !important;
  border-color: #a98b6b !important;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34) !important;
}

body[data-scheme="dark"] .rent-vs-deposit-container::before,
body[data-scheme="inverse"] .rent-vs-deposit-container::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[data-scheme="dark"] .calculator-header h2,
body[data-scheme="inverse"] .calculator-header h2,
body[data-scheme="dark"] .section-title,
body[data-scheme="inverse"] .section-title {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
}

body[data-scheme="dark"] .calculator-header .subtitle,
body[data-scheme="inverse"] .calculator-header .subtitle,
body[data-scheme="dark"] .input-group label,
body[data-scheme="inverse"] .input-group label,
body[data-scheme="dark"] .input-helper,
body[data-scheme="inverse"] .input-helper,
body[data-scheme="dark"] .result-label,
body[data-scheme="inverse"] .result-label,
body[data-scheme="dark"] .result-label-text,
body[data-scheme="inverse"] .result-label-text,
body[data-scheme="dark"] .comparison-label,
body[data-scheme="inverse"] .comparison-label,
body[data-scheme="dark"] .comparison-monthly,
body[data-scheme="inverse"] .comparison-monthly,
body[data-scheme="dark"] .risk-description,
body[data-scheme="inverse"] .risk-description,
body[data-scheme="dark"] .analysis-content p,
body[data-scheme="inverse"] .analysis-content p,
body[data-scheme="dark"] .analysis-lines,
body[data-scheme="inverse"] .analysis-lines,
body[data-scheme="dark"] .chart-note span,
body[data-scheme="inverse"] .chart-note span,
body[data-scheme="dark"] .info-desc,
body[data-scheme="inverse"] .info-desc,
body[data-scheme="dark"] .feature-list-items span,
body[data-scheme="inverse"] .feature-list-items span {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

body[data-scheme="dark"] .input-section,
body[data-scheme="inverse"] .input-section,
body[data-scheme="dark"] .result-section,
body[data-scheme="inverse"] .result-section,
body[data-scheme="dark"] .special-section,
body[data-scheme="inverse"] .special-section,
body[data-scheme="dark"] .info-section,
body[data-scheme="inverse"] .info-section,
body[data-scheme="dark"] .info-card,
body[data-scheme="inverse"] .info-card,
body[data-scheme="dark"] .feature-list,
body[data-scheme="inverse"] .feature-list,
body[data-scheme="dark"] .risk-analysis,
body[data-scheme="inverse"] .risk-analysis,
body[data-scheme="dark"] .detailed-analysis,
body[data-scheme="inverse"] .detailed-analysis,
body[data-scheme="dark"] .chart-note,
body[data-scheme="inverse"] .chart-note {
  color: #f7ebd8 !important;
  background: #33271d !important;
  border-color: #a98b6b !important;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.24) !important;
}

body[data-scheme="dark"] .rent-vs-deposit-calculator input,
body[data-scheme="inverse"] .rent-vs-deposit-calculator input,
body[data-scheme="dark"] .rent-vs-deposit-calculator select,
body[data-scheme="inverse"] .rent-vs-deposit-calculator select,
body[data-scheme="dark"] .input-unit,
body[data-scheme="inverse"] .input-unit,
body[data-scheme="dark"] .chart-container,
body[data-scheme="inverse"] .chart-container,
body[data-scheme="dark"] .result-item,
body[data-scheme="inverse"] .result-item {
  color: #fff5df !important;
  -webkit-text-fill-color: #fff5df !important;
  caret-color: #f0c86a !important;
  background: #241c15 !important;
  border-color: #a98b6b !important;
  color-scheme: dark;
}

body[data-scheme="dark"] .rent-vs-deposit-calculator input::placeholder,
body[data-scheme="inverse"] .rent-vs-deposit-calculator input::placeholder {
  color: rgba(240, 223, 197, 0.58) !important;
  -webkit-text-fill-color: rgba(240, 223, 197, 0.58) !important;
}

body[data-scheme="dark"] .btn-quick,
body[data-scheme="inverse"] .btn-quick {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
  background: #344a32 !important;
  border-color: #a98b6b !important;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.24) !important;
}

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

body[data-scheme="dark"] .tab-btn,
body[data-scheme="inverse"] .tab-btn,
body[data-scheme="dark"] .chart-tab,
body[data-scheme="inverse"] .chart-tab {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
  background: #241c15 !important;
  border-color: #a98b6b !important;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.24) !important;
}

body[data-scheme="dark"] .tab-btn.active,
body[data-scheme="inverse"] .tab-btn.active,
body[data-scheme="dark"] .chart-tab.active,
body[data-scheme="inverse"] .chart-tab.active,
body[data-scheme="dark"] .btn-calculate,
body[data-scheme="inverse"] .btn-calculate {
  color: #201811 !important;
  -webkit-text-fill-color: #201811 !important;
  background: #f0c86a !important;
  border-color: #a98b6b !important;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.28) !important;
}

body[data-scheme="dark"] .main-result,
body[data-scheme="inverse"] .main-result {
  color: #f7ebd8 !important;
  background: #233c43 !important;
  border-color: #a98b6b !important;
  box-shadow: inset 0 0 0 1px rgba(240, 223, 197, 0.10) !important;
}

body[data-scheme="dark"] .big-number,
body[data-scheme="inverse"] .big-number,
body[data-scheme="dark"] .winner-title,
body[data-scheme="inverse"] .winner-title,
body[data-scheme="dark"] .result-value,
body[data-scheme="inverse"] .result-value,
body[data-scheme="dark"] .analysis-content h5,
body[data-scheme="inverse"] .analysis-content h5,
body[data-scheme="dark"] .risk-analysis h4,
body[data-scheme="inverse"] .risk-analysis h4,
body[data-scheme="dark"] .detailed-analysis h4,
body[data-scheme="inverse"] .detailed-analysis h4,
body[data-scheme="dark"] .chart-note strong,
body[data-scheme="inverse"] .chart-note strong,
body[data-scheme="dark"] .info-title,
body[data-scheme="inverse"] .info-title,
body[data-scheme="dark"] .feature-list p,
body[data-scheme="inverse"] .feature-list p,
body[data-scheme="dark"] .warning-box strong,
body[data-scheme="inverse"] .warning-box strong {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
}

body[data-scheme="dark"] .warning-box,
body[data-scheme="inverse"] .warning-box {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
  background: #3b2d21 !important;
  border-color: #d2aa55 !important;
  border-left-color: #d2aa55 !important;
}

@media (max-width: 980px) {
  .rent-vs-deposit-calculator {
    width: min(950px, calc(100vw - 20px));
  }

  .calculator-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .special-section {
    grid-column: 1 / -1;
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .rent-vs-deposit-calculator {
    width: calc(100vw - 10px);
    max-width: calc(100vw - 10px);
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
  }

  .rent-vs-deposit-container {
    padding: 9px;
    border-width: 1px;
    box-shadow: 3px 3px 0 rgba(72, 55, 40, 0.18);
  }

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

  .quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 8px;
  }

  .quick-action-btn,
  .btn-secondary,
  .fee-calculator-btn {
    min-height: 36px;
    padding: 7px 8px;
    font-size: 12.5px;
  }

  .calculator-main {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 8px;
  }

  .input-section,
  .result-section,
  .special-section,
  .info-section {
    padding: 9px;
  }

  .section-title {
    margin-bottom: 8px;
    padding-bottom: 7px;
    font-size: 14.5px;
  }

  .rent-vs-deposit-calculator input,
  .rent-vs-deposit-calculator select {
    min-height: 38px;
    font-size: 13.5px;
  }

  .detail-results,
  .comparison-summary,
  .info-grid,
  .feature-list-items {
    grid-template-columns: 1fr;
  }

  .result-item.full-row { grid-column: auto; }

  .chart-container {
    height: 226px;
    min-height: 226px;
  }
}

@media (max-width: 380px) {
  .rent-vs-deposit-container { padding: 8px; }
  .input-unit { min-width: 54px; padding: 0 6px; }
  .chart-container { height: 218px; min-height: 218px; }
}

@media (prefers-reduced-motion: reduce) {
  .rent-vs-deposit-calculator *,
  .rent-vs-deposit-calculator *::before,
  .rent-vs-deposit-calculator *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* 2026-05-22 v6: Phase 2 body/article + ad flow. PDF reference rhythm rebuilt with target-specific namespace. */
body.postid-1424 {
  --rvd-article-page: #f9f1e7;
  --rvd-article-panel: #f8efe2;
  --rvd-article-card: #fff8ed;
  --rvd-article-accent-paper: #e2edd8;
  --rvd-article-text: #34281f;
  --rvd-article-muted: #574838;
  --rvd-article-line: #6b5745;
  --rvd-article-line-soft: rgba(107, 87, 69, .34);
  --rvd-article-mustard: #d2aa55;
  --rvd-article-mustard-soft: rgba(210, 170, 85, .24);
  --rvd-article-focus: #4f7d94;
  --rvd-article-shadow: rgba(82, 65, 50, .22);
  --rvd-article-soft-shadow: rgba(82, 65, 50, .13);
}

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

body.postid-1424 .rent-vs-deposit-ad,
body.postid-1424 .cs-custom-content-post-before {
  box-sizing: border-box !important;
  width: min(728px, calc(100vw - 32px)) !important;
  max-width: 728px !important;
  min-width: 0 !important;
  min-height: 90px !important;
  margin: 24px auto !important;
  padding: 0 !important;
  text-align: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

body.postid-1424 .rent-vs-deposit-ad--top,
body.postid-1424 .cs-custom-content-post-before {
  margin-top: 18px !important;
  margin-bottom: 22px !important;
}

body.postid-1424 .rent-vs-deposit-ad ins.adsbygoogle,
body.postid-1424 .cs-custom-content-post-before ins.adsbygoogle,
body.postid-1424 .entry-content ins.adsbygoogle {
  display: inline-block !important;
  width: min(728px, calc(100vw - 32px)) !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 90px !important;
  min-height: 90px !important;
  max-height: 120px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: hidden !important;
}

body.postid-1424 .rent-vs-deposit-ad iframe,
body.postid-1424 .cs-custom-content-post-before iframe,
body.postid-1424 .entry-content ins.adsbygoogle iframe {
  width: 100% !important;
  max-width: 100% !important;
}

body.postid-1424 .rent-vs-deposit-ad--after-tool {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

body.postid-1424 .rent-vs-deposit-ad--after-tool + article.roberin-article-body.rent-vs-deposit-article {
  margin-top: 24px !important;
}

body.postid-1424 .entry-content article.roberin-article-body.rent-vs-deposit-article,
body.postid-1424 .rent-vs-deposit-article {
  position: relative;
  z-index: 0;
  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: 24px auto clamp(24px, 4vw, 42px) !important;
  padding: clamp(16px, 3vw, 28px) !important;
  color: var(--rvd-article-text) !important;
  -webkit-text-fill-color: var(--rvd-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(--rvd-article-panel) !important;
  background-size: 28px 28px, 28px 28px, auto !important;
  border: 2px solid var(--rvd-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 var(--rvd-article-shadow) !important;
  overflow: hidden !important;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif !important;
  line-height: 1.72 !important;
  word-break: keep-all !important;
}

body.postid-1424 .rent-vs-deposit-article,
body.postid-1424 .rent-vs-deposit-article *,
body.postid-1424 .rent-vs-deposit-article *::before,
body.postid-1424 .rent-vs-deposit-article *::after {
  box-sizing: border-box !important;
  min-width: 0 !important;
}

body.postid-1424 .rent-vs-deposit-article :is(p, li, td, th, summary, span, strong, code, h2, h3) {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
}

body.postid-1424 .rvd-article__hero,
body.postid-1424 .rvd-article__section {
  display: grid !important;
  gap: 13px !important;
  min-width: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border-right: 0 !important;
  border-bottom-color: var(--rvd-article-line-soft) !important;
  border-left: 0 !important;
  box-shadow: none !important;
}

body.postid-1424 .rvd-article__hero {
  padding: 0 0 22px !important;
  border-top: 0 !important;
  border-bottom: 1px dashed var(--rvd-article-line-soft) !important;
}

body.postid-1424 .rvd-article__section + .rvd-article__section {
  margin-top: 6px !important;
  padding-top: 22px !important;
  border-top: 1px dashed var(--rvd-article-line-soft) !important;
}

body.postid-1424 .rvd-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(--rvd-article-text) !important;
  -webkit-text-fill-color: var(--rvd-article-text) !important;
  background: var(--rvd-article-accent-paper) !important;
  border: 1px solid var(--rvd-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0 var(--rvd-article-soft-shadow) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  letter-spacing: .01em !important;
}

body.postid-1424 .rent-vs-deposit-article h2,
body.postid-1424 .rent-vs-deposit-article h3 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--rvd-article-text) !important;
  -webkit-text-fill-color: var(--rvd-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-1424 .rent-vs-deposit-article h2 {
  font-size: clamp(25px, 3vw, 30px) !important;
  font-weight: 950 !important;
  line-height: 1.18 !important;
}

body.postid-1424 .rent-vs-deposit-article h3 {
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
}

body.postid-1424 .rent-vs-deposit-article p,
body.postid-1424 .rent-vs-deposit-article li,
body.postid-1424 .rent-vs-deposit-article summary {
  margin: 0 !important;
  color: var(--rvd-article-muted) !important;
  -webkit-text-fill-color: var(--rvd-article-muted) !important;
  font-size: 15px !important;
  font-weight: 680 !important;
  line-height: 1.72 !important;
  overflow-wrap: anywhere !important;
}

body.postid-1424 .rent-vs-deposit-article strong {
  color: var(--rvd-article-text) !important;
  -webkit-text-fill-color: var(--rvd-article-text) !important;
  font-weight: 920 !important;
}

body.postid-1424 .rvd-article__nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
}

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

body.postid-1424 .rvd-article__nav a:hover,
body.postid-1424 .rvd-article__nav a:focus-visible {
  background: var(--rvd-article-mustard-soft) !important;
  outline: 2px solid var(--rvd-article-focus) !important;
  outline-offset: 2px !important;
}

body.postid-1424 .rvd-article__grid,
body.postid-1424 .rvd-article__process-grid,
body.postid-1424 .rvd-article__use-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  min-width: 0 !important;
}

body.postid-1424 .rvd-article__use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.postid-1424 .rvd-article__card,
body.postid-1424 .rvd-article__process,
body.postid-1424 .rvd-article__use,
body.postid-1424 .rvd-article__notice,
body.postid-1424 .rent-vs-deposit-article details {
  display: grid !important;
  gap: 7px !important;
  min-width: 0 !important;
  padding: 12px !important;
  color: var(--rvd-article-muted) !important;
  -webkit-text-fill-color: var(--rvd-article-muted) !important;
  background: var(--rvd-article-card) !important;
  border: 1px solid var(--rvd-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 var(--rvd-article-soft-shadow) !important;
}

body.postid-1424 .rvd-article__notice {
  background: rgba(239, 225, 188, .64) !important;
  border-style: dashed !important;
}

body.postid-1424 .rvd-article__process {
  background: rgba(226, 237, 216, .70) !important;
}

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

body.postid-1424 .rent-vs-deposit-article code {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  padding: 5px 8px !important;
  color: var(--rvd-article-text) !important;
  -webkit-text-fill-color: var(--rvd-article-text) !important;
  background: var(--rvd-article-card) !important;
  border: 1px solid var(--rvd-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-1424 .rent-vs-deposit-article :is(ul, ol) {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

body.postid-1424 .rent-vs-deposit-article ol,
body.postid-1424 .rent-vs-deposit-article ol.rvd-article__steps {
  counter-reset: rvd-article-step !important;
}

body.postid-1424 .rent-vs-deposit-article :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-1424 .rent-vs-deposit-article :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(--rvd-article-text) !important;
  -webkit-text-fill-color: var(--rvd-article-text) !important;
  border-radius: 0 !important;
}

body.postid-1424 .rent-vs-deposit-article ul > li::before {
  content: "" !important;
  display: inline-block !important;
  width: 9px !important;
  height: 9px !important;
  background: var(--rvd-article-mustard) !important;
  border: 1px solid var(--rvd-article-line) !important;
  box-shadow: 1px 1px 0 rgba(82, 65, 50, .22) !important;
  line-height: 1 !important;
}

body.postid-1424 .rent-vs-deposit-article ol > li,
body.postid-1424 .rent-vs-deposit-article ol.rvd-article__steps > li {
  counter-increment: rvd-article-step !important;
}

body.postid-1424 .rent-vs-deposit-article ol > li::before,
body.postid-1424 .rent-vs-deposit-article ol.rvd-article__steps > li::before {
  content: counter(rvd-article-step) !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 20px !important;
  height: 20px !important;
  background: var(--rvd-article-mustard-soft) !important;
  border: 1px solid var(--rvd-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-1424 .rvd-article__li-text {
  display: block !important;
  min-width: 0 !important;
  align-self: center !important;
}

body.postid-1424 .rent-vs-deposit-article details {
  margin: 0 !important;
}

body.postid-1424 .rent-vs-deposit-article summary {
  display: list-item !important;
  cursor: pointer !important;
  list-style-position: inside !important;
  color: var(--rvd-article-text) !important;
  -webkit-text-fill-color: var(--rvd-article-text) !important;
  font-weight: 950 !important;
  line-height: 1.45 !important;
}

body.postid-1424 .rent-vs-deposit-article summary::after {
  content: none !important;
  display: none !important;
}

body.postid-1424 .rent-vs-deposit-article details[open] summary {
  margin-bottom: 8px !important;
}

body.postid-1424[data-scheme="dark"] .entry-content article.roberin-article-body.rent-vs-deposit-article,
body.postid-1424[data-scheme="inverse"] .entry-content article.roberin-article-body.rent-vs-deposit-article,
body.postid-1424[data-scheme="dark"] .rent-vs-deposit-article,
body.postid-1424[data-scheme="inverse"] .rent-vs-deposit-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-1424[data-scheme="dark"] .rent-vs-deposit-article :is(h2, h3, strong, summary),
body.postid-1424[data-scheme="inverse"] .rent-vs-deposit-article :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-1424[data-scheme="dark"] .rent-vs-deposit-article :is(p, li, span),
body.postid-1424[data-scheme="inverse"] .rent-vs-deposit-article :is(p, li, span) {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

body.postid-1424[data-scheme="dark"] .rvd-article__card,
body.postid-1424[data-scheme="dark"] .rvd-article__process,
body.postid-1424[data-scheme="dark"] .rvd-article__use,
body.postid-1424[data-scheme="dark"] .rvd-article__notice,
body.postid-1424[data-scheme="dark"] .rent-vs-deposit-article details,
body.postid-1424[data-scheme="dark"] .rvd-article__nav a,
body.postid-1424[data-scheme="inverse"] .rvd-article__card,
body.postid-1424[data-scheme="inverse"] .rvd-article__process,
body.postid-1424[data-scheme="inverse"] .rvd-article__use,
body.postid-1424[data-scheme="inverse"] .rvd-article__notice,
body.postid-1424[data-scheme="inverse"] .rent-vs-deposit-article details,
body.postid-1424[data-scheme="inverse"] .rvd-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-1424[data-scheme="dark"] .rvd-article__notice,
body.postid-1424[data-scheme="dark"] .rvd-article__process,
body.postid-1424[data-scheme="inverse"] .rvd-article__notice,
body.postid-1424[data-scheme="inverse"] .rvd-article__process {
  background-color: rgba(36, 28, 21, .56) !important;
}

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

body.postid-1424[data-scheme="dark"] .rent-vs-deposit-article :is(ul, ol) > li::before,
body.postid-1424[data-scheme="inverse"] .rent-vs-deposit-article :is(ul, ol) > li::before {
  border-color: #a98b6b !important;
}

@media (max-width: 920px) {
  body.postid-1424 .rvd-article__use-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  body.postid-1424 .rent-vs-deposit-ad,
  body.postid-1424 .cs-custom-content-post-before {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }

  body.postid-1424 .rent-vs-deposit-ad ins.adsbygoogle,
  body.postid-1424 .cs-custom-content-post-before ins.adsbygoogle,
  body.postid-1424 .entry-content ins.adsbygoogle {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.postid-1424 .entry-content article.roberin-article-body.rent-vs-deposit-article,
  body.postid-1424 .rent-vs-deposit-article {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-top: 24px !important;
    padding: 12px !important;
    box-shadow: 4px 4px 0 rgba(82, 65, 50, .16) !important;
  }

  body.postid-1424 .rvd-article__grid,
  body.postid-1424 .rvd-article__process-grid,
  body.postid-1424 .rvd-article__use-grid {
    grid-template-columns: 1fr !important;
  }

  body.postid-1424 .rent-vs-deposit-article h3 {
    font-size: 18px !important;
  }
}

@media (max-width: 370px) {
  body.postid-1424 .rent-vs-deposit-article h2 {
    font-size: 25.2px !important;
  }
}

/* v6 ad-gap guard: after-tool ad keeps equal 24px rhythm on mobile too. */
@media (max-width: 640px) {
  body.postid-1424 .rent-vs-deposit-ad--after-tool {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
}
