/* ROBERIN inflation adjustment calculator width/body strict v9 - 2026-05-21 */
body.postid-4311 {
  --iac-paper: #fff7e8;
  --iac-paper-soft: #fbf0dc;
  --iac-ink: #2b2119;
  --iac-muted: #67584a;
  --iac-line: #6b5745;
  --iac-line-soft: rgba(107, 87, 69, 0.26);
  --iac-green: #e3efd2;
  --iac-green-ink: #2f4e2e;
  --iac-blue: #dfeef8;
  --iac-blue-ink: #28455a;
  --iac-amber: #f7df9d;
  --iac-red: #a43e2d;
  --iac-red-soft: #f3dfd3;
  --iac-white: #fffdf7;
  --iac-shadow: 4px 4px 0 rgba(72, 55, 40, 0.22);
  --iac-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-4311 .cs-site-content > .cs-container,
body.postid-4311 .cs-main-content,
body.postid-4311 .cs-content-area,
body.postid-4311 .cs-entry__container,
body.postid-4311 .cs-entry__content-wrap {
  width: 100%;
  max-width: none;
}

body.postid-4311 .cs-breadcrumbs,
body.postid-4311 .cs-entry__header,
body.postid-4311 .inflation-calculator-ad,
body.postid-4311 .entry-content > article {
  width: min(980px, calc(100vw - 32px));
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* v7 width request: expand only the tool canvas by 200px while keeping it viewport-bound. */
body.postid-4311 .inflation-calculator-wrapper {
  width: min(1180px, calc(100vw - 32px));
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  min-width: 0;
}

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

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

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

.inflation-calculator-wrapper {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: var(--iac-ink);
}

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

.inflation-adjustment-calculator-container::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;
}

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

.calculator-header h2 {
  margin: 0;
  color: var(--iac-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;
}

.calculator-header .subtitle,
.subtitle {
  max-width: 720px;
  margin: 0;
  color: var(--iac-muted);
  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;
}

.btn-quick,
.btn-reset,
.btn-calculate,
.source-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;
}

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

.btn-quick,
.source-btn.active {
  background: var(--iac-green);
  color: var(--iac-green-ink);
}

.btn-reset {
  background: var(--iac-red-soft);
  color: #743528;
}

.btn-quick svg,
.btn-reset svg,
.btn-calculate svg,
.section-title svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

.btn-quick:hover,
.btn-reset:hover,
.btn-calculate:hover,
.source-btn:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 rgba(72, 55, 40, 0.16);
}

.btn-quick:active,
.btn-reset:active,
.btn-calculate:active,
.source-btn:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.btn-quick:focus-visible,
.btn-reset:focus-visible,
.btn-calculate:focus-visible,
.source-btn:focus-visible,
.money-input:focus-visible,
.number-input:focus-visible,
.select-input:focus-visible {
  outline: 3px solid #d6a62b;
  outline-offset: 2px;
}

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

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

.section-title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  color: var(--iac-ink);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.section-title svg {
  color: #7a412f;
}

.input-group {
  display: grid;
  gap: 5px;
  margin: 0 0 10px;
}

.input-group label,
.group-label {
  color: var(--iac-muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.input-hint,
.info-desc {
  color: var(--iac-muted);
  font-size: 12px;
  line-height: 1.42;
  font-weight: 700;
}

.source-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.money-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  min-width: 0;
}

.money-input,
.number-input,
.select-input {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 9px 10px;
  color: var(--iac-ink);
  -webkit-text-fill-color: var(--iac-ink);
  background: var(--iac-white);
  border: 1px solid var(--iac-line);
  border-radius: 0;
  box-shadow: inset 2px 2px 0 rgba(107, 87, 69, 0.08);
  font: 800 14px/1.2 inherit;
}

.money-input-row .money-input,
.money-input-row .number-input {
  border-right: 0;
}

.input-unit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 0 10px;
  color: #7a412f;
  background: var(--iac-amber);
  border: 1px solid var(--iac-line);
  font-size: 13px;
  font-weight: 950;
}

.money-input::placeholder,
.number-input::placeholder {
  color: rgba(103, 88, 74, 0.72);
  -webkit-text-fill-color: rgba(103, 88, 74, 0.72);
}

.money-input[aria-invalid="true"],
.number-input[aria-invalid="true"],
.select-input[aria-invalid="true"] {
  border-color: var(--iac-red);
  box-shadow: inset 2px 2px 0 rgba(164, 62, 45, 0.12), 0 0 0 2px rgba(164, 62, 45, 0.16);
}

.year-inputs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 8px;
  align-items: end;
  margin: 0 0 10px;
}

.year-inputs[hidden],
.custom-inputs[hidden],
.result-details[hidden],
.visual-comparison[hidden],
.result-main[hidden] {
  display: none !important;
}

.year-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #7a412f;
  font-size: 22px;
  font-weight: 950;
}

.custom-inputs {
  display: grid;
  gap: 0;
  margin: 0 0 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--iac-line);
}

.btn-calculate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--iac-ink);
  background: #ddbf6f;
  border: 2px solid var(--iac-line);
  box-shadow: var(--iac-shadow-soft);
  font-size: 15px;
  font-weight: 950;
}

.result-main,
.visual-comparison,
.result-details {
  min-width: 0;
}

.result-main {
  display: grid;
  place-items: center;
  min-height: 164px;
  padding: 14px;
  background: var(--iac-blue);
  border: 1px solid var(--iac-line);
  color: var(--iac-blue-ink);
  text-align: center;
  box-shadow: inset 2px 2px 0 rgba(40, 69, 90, 0.08);
}

.placeholder-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 8px;
  color: #7a412f;
  background: var(--iac-amber);
  border: 1px solid var(--iac-line);
  border-radius: 999px;
  font-size: 26px;
  font-weight: 950;
}

.result-placeholder p {
  margin: 0;
  color: var(--iac-blue-ink);
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 800;
  word-break: keep-all;
}

.coin-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
}

.coin-stack {
  min-width: 0;
  padding: 10px;
  background: var(--iac-white);
  border: 1px solid var(--iac-line);
  box-shadow: var(--iac-shadow-soft);
  text-align: center;
}

.coin-label {
  color: var(--iac-muted);
  font-size: 12px;
  font-weight: 900;
}

.coin-amount {
  margin: 3px 0 8px;
  color: var(--iac-ink);
  font-size: clamp(17px, 2.2vw, 23px);
  font-weight: 950;
  line-height: 1.12;
  word-break: keep-all;
}

.coin-amount.highlight {
  color: #7a412f;
}

.coin-visual {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3px;
  min-height: 24px;
}

.coin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--iac-line);
  border-radius: 999px;
  color: var(--iac-ink);
  font-size: 10px;
  font-weight: 950;
}

.coin.from {
  background: #e7dfd4;
}

.coin.to {
  background: var(--iac-amber);
}

.comparison-equals {
  display: grid;
  place-items: center;
  color: #7a412f;
  font-size: 25px;
  font-weight: 950;
}

.multiplier-section {
  margin: 8px 0;
  text-align: center;
}

.multiplier-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  color: var(--iac-green-ink);
  background: var(--iac-green);
  border: 1px solid var(--iac-line);
  box-shadow: var(--iac-shadow-soft);
  font-size: 14px;
  font-weight: 950;
}

.multiplier-badge.decrease {
  color: #743528;
  background: var(--iac-red-soft);
}

.result-explanation,
.info-card {
  color: var(--iac-ink);
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid var(--iac-line-soft);
  padding: 10px;
}

.result-explanation p,
.info-card p,
.info-card ul {
  margin: 0;
  color: var(--iac-ink);
  font-size: 13.5px;
  line-height: 1.55;
  font-weight: 700;
  word-break: keep-all;
}

.result-explanation strong,
.info-card strong {
  color: #7a412f;
  font-weight: 950;
}

.highlight-box {
  margin-top: 8px;
  padding: 9px 10px;
  background: var(--iac-blue);
  border-left: 4px solid #4f7d94;
  color: var(--iac-blue-ink);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.result-details {
  display: grid;
  gap: 0;
  margin-top: 8px;
  background: var(--iac-paper-soft);
  border: 1px solid var(--iac-line);
}

.detail-item {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-bottom: 1px dashed var(--iac-line-soft);
}

.detail-item:last-child {
  border-bottom: 0;
}

.detail-label {
  color: var(--iac-muted);
  font-size: 12.5px;
  font-weight: 900;
}

.detail-value {
  min-width: 0;
  color: var(--iac-ink);
  font-size: 13px;
  font-weight: 950;
  text-align: right;
  overflow-wrap: anywhere;
}

.detail-value.positive {
  color: var(--iac-red);
}

.detail-value.negative {
  color: #2f6949;
}

.info-section {
  display: grid;
  align-content: start;
  gap: 9px;
}

.info-section .section-title {
  margin-bottom: 1px;
}

.info-card h4 {
  margin: 0 0 5px;
  color: var(--iac-ink);
  font-size: 13.5px;
  line-height: 1.25;
  font-weight: 950;
}

.info-card + .info-card {
  margin-top: 0;
}

.feature-list {
  display: grid;
  gap: 6px;
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.feature-list li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 0.56em;
  background: #d2aa55;
  border: 1px solid var(--iac-line);
  transform: rotate(45deg);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 10000;
  transform: translate(-50%, 80px);
  opacity: 0;
  max-width: calc(100vw - 32px);
  padding: 10px 14px;
  color: var(--iac-ink);
  background: var(--iac-white);
  border: 1px solid var(--iac-line);
  box-shadow: var(--iac-shadow);
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, opacity 180ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.toast.error {
  color: #fff8ed;
  background: #8f3528;
}

.toast.success {
  color: var(--iac-green-ink);
  background: var(--iac-green);
}

body.postid-4311 .inflation-calculator-ad {
  display: block;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-align: center;
}

body.postid-4311 .inflation-calculator-ad--after-tool + article,
body.postid-4311 .inflation-calculator-ad--after-tool + .wp-block-html + article {
  margin-top: 0 !important;
}

body.postid-4311 .inflation-calculator-ad ins.adsbygoogle,
body.postid-4311 .roberin-qa-ad-placeholder {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 920px) {
  body.postid-4311 .cs-breadcrumbs,
  body.postid-4311 .cs-entry__header,
  body.postid-4311 .inflation-calculator-wrapper,
  body.postid-4311 .inflation-calculator-ad,
  body.postid-4311 .entry-content > article {
    width: min(100% - 24px, 760px);
  }

  .calculator-main {
    grid-template-columns: 1fr;
  }

  .info-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body.postid-4311 .cs-breadcrumbs,
  body.postid-4311 .cs-entry__header,
  body.postid-4311 .inflation-calculator-wrapper,
  body.postid-4311 .inflation-calculator-ad,
  body.postid-4311 .entry-content > article {
    width: calc(100vw - 20px);
  }

  .inflation-adjustment-calculator-container {
    padding: 10px;
    box-shadow: 3px 3px 0 rgba(72, 55, 40, 0.2);
  }

  .quick-actions,
  .source-toggle,
  .year-inputs,
  .coin-comparison,
  .detail-item {
    grid-template-columns: 1fr;
  }

  .year-arrow,
  .comparison-equals {
    min-height: auto;
    transform: rotate(90deg);
  }

  .btn-quick,
  .btn-reset,
  .source-btn {
    justify-content: center;
    white-space: normal;
  }

  .coin-amount {
    font-size: 18px;
  }

  .detail-value {
    text-align: left;
  }
}

@media (max-width: 380px) {
  body.postid-4311 .cs-breadcrumbs,
  body.postid-4311 .cs-entry__header,
  body.postid-4311 .inflation-calculator-wrapper,
  body.postid-4311 .inflation-calculator-ad,
  body.postid-4311 .entry-content > article {
    width: calc(100vw - 16px);
  }

  .calculator-header h2 {
    font-size: 21px;
  }

  .money-input,
  .number-input,
  .select-input {
    font-size: 13.5px;
  }
}

body.postid-4311[data-scheme="dark"],
body.postid-4311[data-scheme="inverse"] {
  --iac-paper: #2b2119;
  --iac-paper-soft: #33271d;
  --iac-ink: #f2e4cf;
  --iac-muted: #f0dfc5;
  --iac-line: #a98b6b;
  --iac-line-soft: rgba(169, 139, 107, 0.34);
  --iac-green: #344a32;
  --iac-green-ink: #f2e4cf;
  --iac-blue: #263a45;
  --iac-blue-ink: #f2e4cf;
  --iac-amber: #d2aa55;
  --iac-red: #ffb09d;
  --iac-red-soft: #5b3028;
  --iac-white: #241c15;
  --iac-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34);
  --iac-shadow-soft: 2px 2px 0 rgba(0, 0, 0, 0.24);
  background:
    linear-gradient(90deg, rgba(210, 170, 85, 0.03) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(0deg, rgba(210, 170, 85, 0.025) 1px, transparent 1px) 0 0 / 18px 18px,
    #201811;
}

body.postid-4311[data-scheme="dark"] .cs-wrapper,
body.postid-4311[data-scheme="inverse"] .cs-wrapper,
body.postid-4311[data-scheme="dark"] .cs-site,
body.postid-4311[data-scheme="inverse"] .cs-site,
body.postid-4311[data-scheme="dark"] .cs-site-inner,
body.postid-4311[data-scheme="inverse"] .cs-site-inner,
body.postid-4311[data-scheme="dark"] .cs-site-primary,
body.postid-4311[data-scheme="inverse"] .cs-site-primary,
body.postid-4311[data-scheme="dark"] .cs-site-content,
body.postid-4311[data-scheme="inverse"] .cs-site-content,
body.postid-4311[data-scheme="dark"] footer.cs-footer,
body.postid-4311[data-scheme="inverse"] footer.cs-footer {
  background-color: #201811;
  color: #f2e4cf;
}

body.postid-4311[data-scheme="dark"] .cs-main-content,
body.postid-4311[data-scheme="inverse"] .cs-main-content,
body.postid-4311[data-scheme="dark"] .cs-entry__wrap,
body.postid-4311[data-scheme="inverse"] .cs-entry__wrap,
body.postid-4311[data-scheme="dark"] .entry-content,
body.postid-4311[data-scheme="inverse"] .entry-content {
  background: transparent;
}

body.postid-4311[data-scheme="dark"] .cs-entry__title,
body.postid-4311[data-scheme="inverse"] .cs-entry__title,
body.postid-4311[data-scheme="dark"] .calculator-header h2,
body.postid-4311[data-scheme="inverse"] .calculator-header h2,
body.postid-4311[data-scheme="dark"] .section-title,
body.postid-4311[data-scheme="inverse"] .section-title,
body.postid-4311[data-scheme="dark"] .detail-value,
body.postid-4311[data-scheme="inverse"] .detail-value,
body.postid-4311[data-scheme="dark"] .coin-amount,
body.postid-4311[data-scheme="inverse"] .coin-amount,
body.postid-4311[data-scheme="dark"] .info-card h4,
body.postid-4311[data-scheme="inverse"] .info-card h4 {
  color: #f2e4cf;
  -webkit-text-fill-color: #f2e4cf;
}

body.postid-4311[data-scheme="dark"] .calculator-header .subtitle,
body.postid-4311[data-scheme="inverse"] .calculator-header .subtitle,
body.postid-4311[data-scheme="dark"] .input-group label,
body.postid-4311[data-scheme="inverse"] .input-group label,
body.postid-4311[data-scheme="dark"] .group-label,
body.postid-4311[data-scheme="inverse"] .group-label,
body.postid-4311[data-scheme="dark"] .input-hint,
body.postid-4311[data-scheme="inverse"] .input-hint,
body.postid-4311[data-scheme="dark"] .detail-label,
body.postid-4311[data-scheme="inverse"] .detail-label,
body.postid-4311[data-scheme="dark"] .coin-label,
body.postid-4311[data-scheme="inverse"] .coin-label,
body.postid-4311[data-scheme="dark"] .info-desc,
body.postid-4311[data-scheme="inverse"] .info-desc {
  color: #f0dfc5;
  -webkit-text-fill-color: #f0dfc5;
}

body.postid-4311[data-scheme="dark"] .inflation-adjustment-calculator-container::before,
body.postid-4311[data-scheme="inverse"] .inflation-adjustment-calculator-container::before {
  background:
    linear-gradient(rgba(210, 170, 85, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 170, 85, 0.048) 1px, transparent 1px);
  background-size: 20px 20px;
}

body.postid-4311[data-scheme="dark"] .input-section,
body.postid-4311[data-scheme="inverse"] .input-section,
body.postid-4311[data-scheme="dark"] .result-section,
body.postid-4311[data-scheme="inverse"] .result-section,
body.postid-4311[data-scheme="dark"] .info-section,
body.postid-4311[data-scheme="inverse"] .info-section,
body.postid-4311[data-scheme="dark"] .coin-stack,
body.postid-4311[data-scheme="inverse"] .coin-stack,
body.postid-4311[data-scheme="dark"] .result-explanation,
body.postid-4311[data-scheme="inverse"] .result-explanation,
body.postid-4311[data-scheme="dark"] .info-card,
body.postid-4311[data-scheme="inverse"] .info-card,
body.postid-4311[data-scheme="dark"] .result-details,
body.postid-4311[data-scheme="inverse"] .result-details {
  background: rgba(51, 39, 29, 0.96);
  border-color: #a98b6b;
}

body.postid-4311[data-scheme="dark"] .money-input,
body.postid-4311[data-scheme="inverse"] .money-input,
body.postid-4311[data-scheme="dark"] .number-input,
body.postid-4311[data-scheme="inverse"] .number-input,
body.postid-4311[data-scheme="dark"] .select-input,
body.postid-4311[data-scheme="inverse"] .select-input {
  color: #f2e4cf;
  -webkit-text-fill-color: #f2e4cf;
  background: #241c15;
  border-color: #a98b6b;
  box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.22);
}

body.postid-4311[data-scheme="dark"] .money-input::placeholder,
body.postid-4311[data-scheme="inverse"] .money-input::placeholder,
body.postid-4311[data-scheme="dark"] .number-input::placeholder,
body.postid-4311[data-scheme="inverse"] .number-input::placeholder {
  color: rgba(242, 228, 207, 0.68);
  -webkit-text-fill-color: rgba(242, 228, 207, 0.68);
}

body.postid-4311[data-scheme="dark"] .btn-calculate,
body.postid-4311[data-scheme="inverse"] .btn-calculate,
body.postid-4311[data-scheme="dark"] .input-unit,
body.postid-4311[data-scheme="inverse"] .input-unit {
  color: #241c15;
  -webkit-text-fill-color: #241c15;
  background: #d2aa55;
  border-color: #a98b6b;
}

body.postid-4311[data-scheme="dark"] .btn-quick,
body.postid-4311[data-scheme="inverse"] .btn-quick,
body.postid-4311[data-scheme="dark"] .source-btn.active,
body.postid-4311[data-scheme="inverse"] .source-btn.active {
  color: #f2e4cf;
  -webkit-text-fill-color: #f2e4cf;
  background: #344a32;
  border-color: #a98b6b;
}

body.postid-4311[data-scheme="dark"] .source-btn,
body.postid-4311[data-scheme="inverse"] .source-btn,
body.postid-4311[data-scheme="dark"] .coin.from,
body.postid-4311[data-scheme="inverse"] .coin.from {
  color: #f2e4cf;
  -webkit-text-fill-color: #f2e4cf;
  background: #241c15;
  border-color: #a98b6b;
}

body.postid-4311[data-scheme="dark"] .btn-reset,
body.postid-4311[data-scheme="inverse"] .btn-reset,
body.postid-4311[data-scheme="dark"] .multiplier-badge.decrease,
body.postid-4311[data-scheme="inverse"] .multiplier-badge.decrease {
  color: #f2e4cf;
  -webkit-text-fill-color: #f2e4cf;
  background: #5b3028;
  border-color: #a98b6b;
}

body.postid-4311[data-scheme="dark"] .result-main,
body.postid-4311[data-scheme="inverse"] .result-main,
body.postid-4311[data-scheme="dark"] .highlight-box,
body.postid-4311[data-scheme="inverse"] .highlight-box {
  color: #f2e4cf;
  -webkit-text-fill-color: #f2e4cf;
  background: #263a45;
  border-color: #a98b6b;
}

body.postid-4311[data-scheme="dark"] .coin.to,
body.postid-4311[data-scheme="inverse"] .coin.to,
body.postid-4311[data-scheme="dark"] .placeholder-icon,
body.postid-4311[data-scheme="inverse"] .placeholder-icon {
  color: #241c15;
  -webkit-text-fill-color: #241c15;
  background: #d2aa55;
  border-color: #a98b6b;
}

body.postid-4311[data-scheme="dark"] .result-explanation p,
body.postid-4311[data-scheme="inverse"] .result-explanation p,
body.postid-4311[data-scheme="dark"] .info-card p,
body.postid-4311[data-scheme="inverse"] .info-card p,
body.postid-4311[data-scheme="dark"] .info-card ul,
body.postid-4311[data-scheme="inverse"] .info-card ul,
body.postid-4311[data-scheme="dark"] .result-placeholder p,
body.postid-4311[data-scheme="inverse"] .result-placeholder p {
  color: #f2e4cf;
  -webkit-text-fill-color: #f2e4cf;
}

body.postid-4311[data-scheme="dark"] .result-explanation strong,
body.postid-4311[data-scheme="inverse"] .result-explanation strong,
body.postid-4311[data-scheme="dark"] .info-card strong,
body.postid-4311[data-scheme="inverse"] .info-card strong,
body.postid-4311[data-scheme="dark"] .comparison-equals,
body.postid-4311[data-scheme="inverse"] .comparison-equals,
body.postid-4311[data-scheme="dark"] .coin-amount.highlight,
body.postid-4311[data-scheme="inverse"] .coin-amount.highlight {
  color: #d2aa55;
  -webkit-text-fill-color: #d2aa55;
}

/* v2.1 QA fix: transformed separators must never capture taps on compact mobile rows. */
.year-arrow,
.comparison-equals {
  pointer-events: none;
}

/* v2.2 QA fix: neutralize legacy article/content margins around the after-tool ad. */
body.postid-4311 .inflation-calculator-wrapper {
  margin-bottom: 0 !important;
}

body.postid-4311 .inflation-calculator-wrapper + .inflation-calculator-ad--after-tool,
body.postid-4311 .inflation-calculator-ad {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

body.postid-4311 .inflation-calculator-ad--after-tool + article > .content1 {
  margin-top: 0 !important;
}

/* v4 Phase 2 body rhythm: target-specific namespace mapped to the PDF reference structure. */
body.postid-4311 article.roberin-article-body.inflation-article {
  box-sizing: border-box;
  width: min(980px, calc(100vw - 32px));
  max-width: 980px;
  margin: 0 auto 34px;
  padding: 28px;
  color: #34281f;
  -webkit-text-fill-color: #34281f;
  background: #f8efe2;
  border: 2px solid #6b5745;
  border-radius: 0;
  box-shadow: 5px 5px 0 rgba(82, 65, 50, 0.22);
  display: grid;
  gap: 18px;
}

body.postid-4311 .inflation-article *,
body.postid-4311 .inflation-article *::before,
body.postid-4311 .inflation-article *::after {
  box-sizing: border-box;
}

body.postid-4311 .inflation-article__hero,
body.postid-4311 .inflation-article__section {
  margin: 0;
  padding: 0;
  color: #34281f;
  -webkit-text-fill-color: #34281f;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: grid;
  gap: 13px;
}

body.postid-4311 .inflation-article__hero {
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(107, 87, 69, 0.34);
}

body.postid-4311 .inflation-article__section + .inflation-article__section {
  padding-top: 22px;
  border-top: 1px dashed rgba(107, 87, 69, 0.34);
}

body.postid-4311 .inflation-article__kicker {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  padding: 5px 9px;
  color: #34281f;
  -webkit-text-fill-color: #34281f;
  background: #e2edd8;
  border: 1px solid #6b5745;
  border-radius: 0;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  box-shadow: 2px 2px 0 rgba(82, 65, 50, 0.13);
}

body.postid-4311 .inflation-article h2,
body.postid-4311 .inflation-article h3,
body.postid-4311 .inflation-article p,
body.postid-4311 .inflation-article strong,
body.postid-4311 .inflation-article summary,
body.postid-4311 .inflation-article li,
body.postid-4311 .inflation-article code {
  margin-top: 0;
}

body.postid-4311 .inflation-article h2 {
  margin: 0;
  color: #34281f;
  -webkit-text-fill-color: #34281f;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: clamp(25px, 2.2vw, 30px);
  line-height: 1.28;
  letter-spacing: -0.03em;
  font-weight: 950;
}

body.postid-4311 .inflation-article h3 {
  margin: 0;
  color: #34281f;
  -webkit-text-fill-color: #34281f;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 1.04rem;
  line-height: 1.35;
  font-weight: 900;
}

body.postid-4311 .inflation-article p {
  margin: 0;
  color: #574838;
  -webkit-text-fill-color: #574838;
  font-size: 0.98rem;
  line-height: 1.72;
}

body.postid-4311 .inflation-article strong {
  color: #7a412f;
  -webkit-text-fill-color: #7a412f;
  font-weight: 900;
}

body.postid-4311 .inflation-article code {
  display: inline;
  overflow-wrap: anywhere;
  color: #34281f;
  -webkit-text-fill-color: #34281f;
  background: rgba(221, 191, 111, 0.22);
  border: 1px dashed rgba(107, 87, 69, 0.46);
  border-radius: 8px;
  padding: 1px 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
}

body.postid-4311 .inflation-article__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.postid-4311 .inflation-article__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  color: #34281f;
  -webkit-text-fill-color: #34281f;
  text-decoration: none;
  background: #fff8ed;
  border: 1px solid #6b5745;
  border-radius: 0;
  box-shadow: none;
  font-size: 13px;
  font-weight: 850;
}

body.postid-4311 .inflation-article__nav a:hover,
body.postid-4311 .inflation-article__nav a:focus-visible {
  background: #ddbf6f;
  color: #241c15;
  -webkit-text-fill-color: #241c15;
}

body.postid-4311 .inflation-article__grid,
body.postid-4311 .inflation-article__process-grid,
body.postid-4311 .inflation-article__use-grid {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.postid-4311 .inflation-article__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.postid-4311 .inflation-article__process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.postid-4311 .inflation-article__use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.postid-4311 .inflation-article__card,
body.postid-4311 .inflation-article__process,
body.postid-4311 .inflation-article__use,
body.postid-4311 .inflation-article details {
  display: grid;
  gap: 7px;
  min-width: 0;
  margin: 0;
  padding: 12px;
  color: #574838;
  -webkit-text-fill-color: #574838;
  background: #fff8ed;
  border: 1px solid #6b5745;
  border-radius: 0;
  box-shadow: 3px 3px 0 rgba(82, 65, 50, 0.13);
}

body.postid-4311 .inflation-article__process > span,
body.postid-4311 .inflation-article__use > span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  padding: 3px 7px;
  color: #34281f;
  -webkit-text-fill-color: #34281f;
  background: #e2edd8;
  border: 1px solid rgba(107, 87, 69, 0.72);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

body.postid-4311 .inflation-article__process p,
body.postid-4311 .inflation-article__use p,
body.postid-4311 .inflation-article__card p,
body.postid-4311 .inflation-article details p {
  font-size: 0.93rem;
  line-height: 1.6;
}

body.postid-4311 .inflation-article__notice {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 12px;
  color: #574838;
  -webkit-text-fill-color: #574838;
  background: rgba(239, 225, 188, 0.64);
  border: 1px dashed #6b5745;
  border-radius: 0;
  box-shadow: 3px 3px 0 rgba(82, 65, 50, 0.13);
}

body.postid-4311 .inflation-article__steps,
body.postid-4311 .inflation-article__notice ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.postid-4311 .inflation-article__steps > li,
body.postid-4311 .inflation-article__notice li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  margin: 0;
  padding: 0;
  color: #574838;
  -webkit-text-fill-color: #574838;
  background: transparent;
  border: 0;
  box-shadow: none;
  line-height: 1.6;
}

body.postid-4311 .inflation-article__steps > li::before,
body.postid-4311 .inflation-article__notice li::before {
  content: "";
  position: static;
  flex: 0 0 9px;
  align-self: center;
  width: 9px;
  height: 9px;
  margin: 0;
  transform: none;
  border-radius: 50%;
  background: #ddbf6f;
  border: 1px solid #6b5745;
  box-shadow: 1px 1px 0 rgba(82, 65, 50, 0.2);
}

body.postid-4311 .inflation-article__li-text {
  display: block;
  min-width: 0;
  color: #574838;
  -webkit-text-fill-color: #574838;
}

body.postid-4311 .inflation-article details {
  gap: 7px;
}

body.postid-4311 .inflation-article details + details {
  margin-top: 10px;
}

body.postid-4311 .inflation-article summary {
  display: list-item;
  list-style-position: inside;
  list-style-type: disclosure-closed;
  cursor: pointer;
  color: #34281f;
  -webkit-text-fill-color: #34281f;
  font-weight: 900;
  line-height: 1.45;
}

body.postid-4311 .inflation-article details[open] summary {
  list-style-type: disclosure-open;
}

body.postid-4311 .inflation-article summary::after {
  content: none;
  display: none;
}

body.postid-4311 .inflation-article script[type="application/ld+json"] {
  display: none !important;
}

body.postid-4311[data-scheme="dark"] article.roberin-article-body.inflation-article,
body.postid-4311[data-scheme="inverse"] article.roberin-article-body.inflation-article {
  color: #f2e4cf;
  -webkit-text-fill-color: #f2e4cf;
  background: #33271d;
  border-color: #a98b6b;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.32);
}

body.postid-4311[data-scheme="dark"] .inflation-article__hero,
body.postid-4311[data-scheme="inverse"] .inflation-article__hero {
  border-bottom-color: rgba(169, 139, 107, 0.46);
}

body.postid-4311[data-scheme="dark"] .inflation-article__section + .inflation-article__section,
body.postid-4311[data-scheme="inverse"] .inflation-article__section + .inflation-article__section {
  border-top-color: rgba(169, 139, 107, 0.46);
}

body.postid-4311[data-scheme="dark"] .inflation-article__hero,
body.postid-4311[data-scheme="inverse"] .inflation-article__hero,
body.postid-4311[data-scheme="dark"] .inflation-article__section,
body.postid-4311[data-scheme="inverse"] .inflation-article__section,
body.postid-4311[data-scheme="dark"] .inflation-article h2,
body.postid-4311[data-scheme="inverse"] .inflation-article h2,
body.postid-4311[data-scheme="dark"] .inflation-article h3,
body.postid-4311[data-scheme="inverse"] .inflation-article h3,
body.postid-4311[data-scheme="dark"] .inflation-article summary,
body.postid-4311[data-scheme="inverse"] .inflation-article summary {
  color: #f2e4cf;
  -webkit-text-fill-color: #f2e4cf;
  background: transparent;
  border-left: 0;
  border-right: 0;
  box-shadow: none;
}

body.postid-4311[data-scheme="dark"] .inflation-article p,
body.postid-4311[data-scheme="inverse"] .inflation-article p,
body.postid-4311[data-scheme="dark"] .inflation-article__li-text,
body.postid-4311[data-scheme="inverse"] .inflation-article__li-text,
body.postid-4311[data-scheme="dark"] .inflation-article li,
body.postid-4311[data-scheme="inverse"] .inflation-article li {
  color: #f0dfc5;
  -webkit-text-fill-color: #f0dfc5;
}

body.postid-4311[data-scheme="dark"] .inflation-article strong,
body.postid-4311[data-scheme="inverse"] .inflation-article strong {
  color: #d2aa55;
  -webkit-text-fill-color: #d2aa55;
}

body.postid-4311[data-scheme="dark"] .inflation-article__kicker,
body.postid-4311[data-scheme="inverse"] .inflation-article__kicker,
body.postid-4311[data-scheme="dark"] .inflation-article__process > span,
body.postid-4311[data-scheme="inverse"] .inflation-article__process > span,
body.postid-4311[data-scheme="dark"] .inflation-article__use > span,
body.postid-4311[data-scheme="inverse"] .inflation-article__use > span {
  color: #f2e4cf;
  -webkit-text-fill-color: #f2e4cf;
  background: #344a32;
  border-color: #a98b6b;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.24);
}

body.postid-4311[data-scheme="dark"] .inflation-article__nav a,
body.postid-4311[data-scheme="inverse"] .inflation-article__nav a,
body.postid-4311[data-scheme="dark"] .inflation-article__card,
body.postid-4311[data-scheme="inverse"] .inflation-article__card,
body.postid-4311[data-scheme="dark"] .inflation-article__process,
body.postid-4311[data-scheme="inverse"] .inflation-article__process,
body.postid-4311[data-scheme="dark"] .inflation-article__use,
body.postid-4311[data-scheme="inverse"] .inflation-article__use,
body.postid-4311[data-scheme="dark"] .inflation-article details,
body.postid-4311[data-scheme="inverse"] .inflation-article details {
  color: #f0dfc5;
  -webkit-text-fill-color: #f0dfc5;
  background: #241c15;
  border-color: #a98b6b;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.28);
}

body.postid-4311[data-scheme="dark"] .inflation-article__notice,
body.postid-4311[data-scheme="inverse"] .inflation-article__notice {
  color: #f0dfc5;
  -webkit-text-fill-color: #f0dfc5;
  background: rgba(73, 53, 32, 0.76);
  border-color: #a98b6b;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.28);
}

body.postid-4311[data-scheme="dark"] .inflation-article__nav a:hover,
body.postid-4311[data-scheme="inverse"] .inflation-article__nav a:hover,
body.postid-4311[data-scheme="dark"] .inflation-article__nav a:focus-visible,
body.postid-4311[data-scheme="inverse"] .inflation-article__nav a:focus-visible {
  color: #241c15;
  -webkit-text-fill-color: #241c15;
  background: #d2aa55;
}

body.postid-4311[data-scheme="dark"] .inflation-article code,
body.postid-4311[data-scheme="inverse"] .inflation-article code {
  color: #f2e4cf;
  -webkit-text-fill-color: #f2e4cf;
  background: rgba(210, 170, 85, 0.2);
  border-color: rgba(169, 139, 107, 0.72);
}

body.postid-4311[data-scheme="dark"] .inflation-article__steps > li::before,
body.postid-4311[data-scheme="inverse"] .inflation-article__steps > li::before,
body.postid-4311[data-scheme="dark"] .inflation-article__notice li::before,
body.postid-4311[data-scheme="inverse"] .inflation-article__notice li::before {
  background: #d2aa55;
  border-color: #a98b6b;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.34);
}

@media (max-width: 760px) {
  body.postid-4311 article.roberin-article-body.inflation-article {
    width: min(100%, calc(100vw - 24px));
    padding: 18px;
    border-radius: 20px;
    gap: 22px;
  }

  body.postid-4311 .inflation-article__grid,
  body.postid-4311 .inflation-article__process-grid,
  body.postid-4311 .inflation-article__use-grid {
    grid-template-columns: 1fr;
  }

  body.postid-4311 .inflation-article__hero {
    padding-bottom: 20px;
  }

  body.postid-4311 .inflation-article__section + .inflation-article__section {
    padding-top: 22px;
  }

  body.postid-4311 .inflation-article__nav a {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    min-width: 0;
  }

  body.postid-4311 .inflation-article h2 {
    font-size: clamp(1.32rem, 7vw, 1.64rem);
  }
}

@media (max-width: 380px) {
  body.postid-4311 article.roberin-article-body.inflation-article {
    width: min(100%, calc(100vw - 18px));
    padding: 16px;
  }

  body.postid-4311 .inflation-article__nav a {
    flex-basis: 100%;
  }
}

/* v4.1 dark verifier hard gate: actual input values stay bold, placeholders stay lighter. */
body.postid-4311 .money-input,
body.postid-4311 .number-input,
body.postid-4311 .select-input {
  font-weight: 950;
}

body.postid-4311 .money-input::placeholder,
body.postid-4311 .number-input::placeholder {
  font-weight: 600;
  opacity: 1;
}

body.postid-4311[data-scheme="dark"] .money-input::placeholder,
body.postid-4311[data-scheme="inverse"] .money-input::placeholder,
body.postid-4311[data-scheme="dark"] .number-input::placeholder,
body.postid-4311[data-scheme="inverse"] .number-input::placeholder {
  color: rgba(242, 228, 207, 0.54);
  -webkit-text-fill-color: rgba(242, 228, 207, 0.54);
  font-weight: 600;
  opacity: 1;
}

/* v4.2 Phase 2 verifier hard overrides: global article styles must not re-card headings/lists. */
body.postid-4311 article.roberin-article-body.inflation-article {
  width: min(100%, 972px) !important;
  margin: 0 auto 34px !important;
  padding: clamp(22px, 3.2vw, 26px) !important;
  border: 2px solid #6b5745 !important;
  border-radius: 24px !important;
  box-shadow: 5px 5px 0 rgba(82, 65, 50, 0.22) !important;
}

body.postid-4311 article.roberin-article-body.inflation-article h2,
body.postid-4311 article.roberin-article-body.inflation-article h3 {
  margin: 0 !important;
  padding: 0 !important;
  color: #34281f !important;
  -webkit-text-fill-color: #34281f !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

body.postid-4311 article.roberin-article-body.inflation-article h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem) !important;
  line-height: 1.28 !important;
}

body.postid-4311 article.roberin-article-body.inflation-article h3 {
  font-size: 1.04rem !important;
  line-height: 1.35 !important;
}

body.postid-4311 article.roberin-article-body.inflation-article .inflation-article__steps > li,
body.postid-4311 article.roberin-article-body.inflation-article .inflation-article__notice li {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  text-indent: 0 !important;
}

body.postid-4311 article.roberin-article-body.inflation-article .inflation-article__steps > li::before,
body.postid-4311 article.roberin-article-body.inflation-article .inflation-article__notice li::before {
  content: "" !important;
  position: static !important;
  inset: auto !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  flex: 0 0 9px !important;
  align-self: center !important;
  width: 9px !important;
  height: 9px !important;
  margin: 0 !important;
  transform: none !important;
  border-radius: 50% !important;
  background: #ddbf6f !important;
  border: 1px solid #6b5745 !important;
  box-shadow: 1px 1px 0 rgba(82, 65, 50, 0.2) !important;
}

body.postid-4311[data-scheme="dark"] article.roberin-article-body.inflation-article,
body.postid-4311[data-scheme="inverse"] article.roberin-article-body.inflation-article {
  border-color: #a98b6b !important;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.32) !important;
}

body.postid-4311[data-scheme="dark"] article.roberin-article-body.inflation-article h2,
body.postid-4311[data-scheme="inverse"] article.roberin-article-body.inflation-article h2,
body.postid-4311[data-scheme="dark"] article.roberin-article-body.inflation-article h3,
body.postid-4311[data-scheme="inverse"] article.roberin-article-body.inflation-article h3 {
  color: #f2e4cf !important;
  -webkit-text-fill-color: #f2e4cf !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-4311[data-scheme="dark"] article.roberin-article-body.inflation-article .inflation-article__steps > li::before,
body.postid-4311[data-scheme="inverse"] article.roberin-article-body.inflation-article .inflation-article__steps > li::before,
body.postid-4311[data-scheme="dark"] article.roberin-article-body.inflation-article .inflation-article__notice li::before,
body.postid-4311[data-scheme="inverse"] article.roberin-article-body.inflation-article .inflation-article__notice li::before {
  background: #d2aa55 !important;
  border-color: #a98b6b !important;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.34) !important;
}

@media (max-width: 760px) {
  body.postid-4311 article.roberin-article-body.inflation-article {
    width: min(100%, calc(100vw - 24px)) !important;
    padding: 18px !important;
  }
}

@media (max-width: 380px) {
  body.postid-4311 article.roberin-article-body.inflation-article {
    width: min(100%, calc(100vw - 18px)) !important;
    padding: 16px !important;
  }
}

/* v6.1 dark body wrapper surface must not inherit light article background. */
body.postid-4311[data-scheme="dark"] article.roberin-article-body.inflation-article,
body.postid-4311[data-scheme="inverse"] article.roberin-article-body.inflation-article {
  color: #f2e4cf !important;
  -webkit-text-fill-color: #f2e4cf !important;
  background: #33271d !important;
  border-color: #a98b6b !important;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.32) !important;
}


/* v8 strict body verifier fix: target namespace mirrors PDF page-deletion rendered rhythm without leaking pdf-* classes. */
body.postid-4311 article.roberin-article-body.inflation-article {
  width: min(980px, calc(100vw - 32px)) !important;
  max-width: 980px !important;
  padding: 28px !important;
  gap: 18px !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 rgba(82, 65, 50, 0.22) !important;
}

body.postid-4311 .inflation-article__hero,
body.postid-4311 .inflation-article__section {
  gap: 13px !important;
}

body.postid-4311 .inflation-article__hero {
  padding-bottom: 22px !important;
}

body.postid-4311 .inflation-article__section + .inflation-article__section {
  padding-top: 22px !important;
}

body.postid-4311 .inflation-article__kicker {
  padding: 5px 9px !important;
  border-radius: 0 !important;
  font-size: 15px !important;
  box-shadow: 2px 2px 0 rgba(82, 65, 50, 0.13) !important;
}

body.postid-4311 .inflation-article h2 {
  font-size: clamp(25px, 2.2vw, 30px) !important;
  line-height: 1.28 !important;
}

body.postid-4311 .inflation-article__nav a {
  flex: 0 0 auto !important;
  justify-content: flex-start !important;
  min-width: 0 !important;
  padding: 6px 10px !important;
  color: #34281f !important;
  -webkit-text-fill-color: #34281f !important;
  background: #fff8ed !important;
  border: 1px solid #6b5745 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 13px !important;
}

body.postid-4311 .inflation-article__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

body.postid-4311 .inflation-article__process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

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

body.postid-4311 .inflation-article__card,
body.postid-4311 .inflation-article__use,
body.postid-4311 .inflation-article details {
  gap: 7px !important;
  border-radius: 0 !important;
}

body.postid-4311 .inflation-article__process {
  gap: 7px !important;
  background: rgba(226, 237, 216, 0.7) !important;
  border-radius: 0 !important;
}

body.postid-4311 .inflation-article__notice {
  gap: 7px !important;
  border-radius: 0 !important;
}

body.postid-4311 .inflation-article__steps > li,
body.postid-4311 .inflation-article__notice li {
  gap: 9px !important;
  font-size: 15px !important;
}

body.postid-4311[data-scheme="dark"] .inflation-article__nav a,
body.postid-4311[data-scheme="inverse"] .inflation-article__nav a,
body.postid-4311[data-scheme="dark"] .inflation-article__card,
body.postid-4311[data-scheme="inverse"] .inflation-article__card,
body.postid-4311[data-scheme="dark"] .inflation-article__use,
body.postid-4311[data-scheme="inverse"] .inflation-article__use,
body.postid-4311[data-scheme="dark"] .inflation-article details,
body.postid-4311[data-scheme="inverse"] .inflation-article details {
  background: #33271d !important;
  border-color: rgba(169, 139, 107, 0.72) !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 rgba(32, 24, 17, 0.52) !important;
}

body.postid-4311[data-scheme="dark"] .inflation-article__process,
body.postid-4311[data-scheme="inverse"] .inflation-article__process,
body.postid-4311[data-scheme="dark"] .inflation-article__notice,
body.postid-4311[data-scheme="inverse"] .inflation-article__notice {
  background: rgba(36, 28, 21, 0.56) !important;
  border-color: rgba(169, 139, 107, 0.72) !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 rgba(32, 24, 17, 0.52) !important;
}

body.postid-4311[data-scheme="dark"] .inflation-article__kicker,
body.postid-4311[data-scheme="inverse"] .inflation-article__kicker,
body.postid-4311[data-scheme="dark"] .inflation-article__process > span,
body.postid-4311[data-scheme="inverse"] .inflation-article__process > span,
body.postid-4311[data-scheme="dark"] .inflation-article__use > span,
body.postid-4311[data-scheme="inverse"] .inflation-article__use > span {
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2) !important;
}

@media (max-width: 760px) {
  body.postid-4311 article.roberin-article-body.inflation-article {
    width: min(100%, calc(100vw - 24px)) !important;
    padding: 12px !important;
    gap: 18px !important;
    border-radius: 0 !important;
    box-shadow: 4px 4px 0 rgba(82, 65, 50, 0.16) !important;
  }
  body.postid-4311 .inflation-article__grid,
  body.postid-4311 .inflation-article__process-grid,
  body.postid-4311 .inflation-article__use-grid {
    grid-template-columns: 1fr !important;
  }
  body.postid-4311 .inflation-article__hero {
    padding-bottom: 22px !important;
  }
  body.postid-4311 .inflation-article__section + .inflation-article__section {
    padding-top: 22px !important;
  }
}

@media (max-width: 380px) {
  body.postid-4311 article.roberin-article-body.inflation-article {
    width: min(100%, calc(100vw - 24px)) !important;
    padding: 12px !important;
  }
}


/* v9 body 1:1 gate: PDF reference keeps the softer mobile article shadow in dark mode too. */
@media (max-width: 760px) {
  body.postid-4311[data-scheme="dark"] article.roberin-article-body.inflation-article,
  body.postid-4311[data-scheme="inverse"] article.roberin-article-body.inflation-article {
    box-shadow: 4px 4px 0 rgba(82, 65, 50, 0.16) !important;
  }
}
