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

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

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

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

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

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

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

.pyeong-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;
}

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

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

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

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

.pyeong-calculator-wrapper button,
.pyeong-calculator-wrapper input,
.pyeong-calculator-wrapper select {
  font: inherit;
}

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

.pyeong-calculator-wrapper .btn-quick,
.pyeong-calculator-wrapper .btn-reset,
.pyeong-calculator-wrapper .btn-calculate,
.pyeong-calculator-wrapper .btn-copy,
.pyeong-calculator-wrapper .area-type-btn,
.pyeong-calculator-wrapper .preset-ratio-btn,
.pyeong-calculator-wrapper .size-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--py-ink);
  background: var(--py-white);
  border: 1px solid var(--py-line);
  box-shadow: var(--py-shadow-soft);
  font-size: 13.5px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.pyeong-calculator-wrapper .btn-quick,
.pyeong-calculator-wrapper .size-chip {
  background: var(--py-green);
  color: var(--py-green-ink);
}

.pyeong-calculator-wrapper .btn-reset,
.pyeong-calculator-wrapper .btn-copy {
  background: var(--py-red-paper);
  color: var(--py-red-ink);
}

.pyeong-calculator-wrapper .btn-calculate {
  width: 100%;
  min-height: 42px;
  margin-top: 2px;
  color: #241c15;
  background: #d2aa55;
  border: 2px solid var(--py-line);
  font-size: 15px;
}

.pyeong-calculator-wrapper .btn-copy {
  margin-top: 10px;
  width: 100%;
}

.pyeong-calculator-wrapper .btn-quick:hover,
.pyeong-calculator-wrapper .btn-reset:hover,
.pyeong-calculator-wrapper .btn-calculate:hover,
.pyeong-calculator-wrapper .btn-copy:hover,
.pyeong-calculator-wrapper .area-type-btn:hover,
.pyeong-calculator-wrapper .preset-ratio-btn:hover,
.pyeong-calculator-wrapper .size-chip:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 rgba(72, 55, 40, 0.16);
}

.pyeong-calculator-wrapper .btn-quick:active,
.pyeong-calculator-wrapper .btn-reset:active,
.pyeong-calculator-wrapper .btn-calculate:active,
.pyeong-calculator-wrapper .btn-copy:active,
.pyeong-calculator-wrapper .area-type-btn:active,
.pyeong-calculator-wrapper .preset-ratio-btn:active,
.pyeong-calculator-wrapper .size-chip:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.pyeong-calculator-wrapper button:focus-visible,
.pyeong-calculator-wrapper input:focus-visible,
.pyeong-calculator-wrapper select:focus-visible {
  outline: 3px solid #d6a62b;
  outline-offset: 2px;
}

.pyeong-calculator-wrapper .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: stretch;
}

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

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

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

.pyeong-calculator-wrapper .pyeong-form {
  display: grid;
  gap: 10px;
}

.pyeong-calculator-wrapper .input-group {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.pyeong-calculator-wrapper .field-label,
.pyeong-calculator-wrapper .input-group > label {
  display: block;
  margin: 0;
  color: var(--py-ink);
  font-size: 13.5px;
  line-height: 1.22;
  font-weight: 900;
}

.pyeong-calculator-wrapper .unit-toggle,
.pyeong-calculator-wrapper .area-type-buttons,
.pyeong-calculator-wrapper .preset-ratios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  min-width: 0;
}

.pyeong-calculator-wrapper .area-type-buttons,
.pyeong-calculator-wrapper .preset-ratios {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pyeong-calculator-wrapper .preset-ratios {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pyeong-calculator-wrapper .radio-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  min-height: 38px;
  padding: 8px;
  color: var(--py-ink);
  background: var(--py-white);
  border: 1px solid var(--py-line);
  box-shadow: var(--py-shadow-soft);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 900;
  cursor: pointer;
}

.pyeong-calculator-wrapper .radio-label input {
  width: 14px;
  height: 14px;
  accent-color: #d2aa55;
  flex: 0 0 auto;
}

.pyeong-calculator-wrapper .area-type-btn.active,
.pyeong-calculator-wrapper .preset-ratio-btn.active {
  background: var(--py-blue);
  color: var(--py-blue-ink);
  border-color: var(--py-line);
  box-shadow: inset 0 0 0 2px rgba(107, 87, 69, 0.12), var(--py-shadow-soft);
}

.pyeong-calculator-wrapper .help-text {
  margin: 0;
  padding: 9px 10px;
  color: var(--py-muted);
  background: rgba(251, 240, 220, 0.86);
  border: 1px dashed var(--py-line-soft);
  font-size: 12.8px;
  line-height: 1.45;
  font-weight: 700;
  word-break: keep-all;
}

.pyeong-calculator-wrapper .input-with-unit,
.pyeong-calculator-wrapper .slider-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.pyeong-calculator-wrapper .slider-group {
  grid-template-columns: minmax(0, 1fr) 72px auto;
}

.pyeong-calculator-wrapper .number-input,
.pyeong-calculator-wrapper .value-slider {
  min-width: 0;
}

.pyeong-calculator-wrapper .number-input {
  width: 100%;
  max-width: 100%;
  min-height: 40px;
  padding: 9px 10px;
  color: var(--py-ink);
  -webkit-text-fill-color: var(--py-ink);
  background: var(--py-white);
  border: 1px solid var(--py-line);
  border-radius: 0;
  box-shadow: inset 1px 1px 3px rgba(72, 55, 40, 0.08);
  font-size: 15px;
  font-weight: 850;
}

.pyeong-calculator-wrapper .number-input::placeholder {
  color: rgba(103, 88, 74, 0.72);
  opacity: 1;
}

.pyeong-calculator-wrapper .ratio-input {
  text-align: center;
}

.pyeong-calculator-wrapper .input-unit,
.pyeong-calculator-wrapper .unit-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 40px;
  padding: 0 8px;
  color: var(--py-ink);
  background: var(--py-green);
  border: 1px solid var(--py-line);
  font-size: 13px;
  font-weight: 950;
}

.pyeong-calculator-wrapper .value-slider {
  width: 100%;
  height: 9px;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: #e9ddc9;
  border: 1px solid var(--py-line);
  outline: none;
}

.pyeong-calculator-wrapper .value-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #d2aa55;
  border: 2px solid var(--py-line);
  box-shadow: var(--py-shadow-soft);
}

.pyeong-calculator-wrapper .value-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #d2aa55;
  border: 2px solid var(--py-line);
  border-radius: 0;
  box-shadow: var(--py-shadow-soft);
}

.pyeong-calculator-wrapper .result-display {
  display: grid;
  gap: 9px;
  min-height: 235px;
  padding: 12px;
  color: var(--py-ink);
  background: rgba(251, 240, 220, 0.82);
  border: 1px solid var(--py-line-soft);
}

.pyeong-calculator-wrapper .result-kicker {
  color: var(--py-muted);
  font-size: 12.5px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.pyeong-calculator-wrapper .result-primary {
  display: block;
  color: #7a412f;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.pyeong-calculator-wrapper .result-summary-text {
  margin: 0;
  color: var(--py-ink);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.pyeong-calculator-wrapper .result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 2px;
}

.pyeong-calculator-wrapper .result-grid > div {
  min-width: 0;
  padding: 9px;
  background: var(--py-white);
  border: 1px solid var(--py-line-soft);
}

.pyeong-calculator-wrapper .result-grid span {
  display: block;
  color: var(--py-muted);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 850;
}

.pyeong-calculator-wrapper .result-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--py-ink);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 950;
  word-break: keep-all;
}

.pyeong-calculator-wrapper .result-placeholder,
.pyeong-calculator-wrapper .viz-placeholder {
  display: grid;
  place-items: center;
  min-height: 116px;
  color: var(--py-muted);
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.pyeong-calculator-wrapper .visualization-container {
  display: grid;
  gap: 8px;
  min-height: 235px;
  padding: 12px;
  background: rgba(251, 240, 220, 0.82);
  border: 1px solid var(--py-line-soft);
}

.pyeong-calculator-wrapper .viz-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 162px;
  overflow: hidden;
  background:
    linear-gradient(rgba(107, 87, 69, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, 0.04) 1px, transparent 1px),
    var(--py-white);
  background-size: 16px 16px;
  border: 1px dashed var(--py-line-soft);
}

.pyeong-calculator-wrapper .area-box {
  position: absolute;
  display: grid;
  place-items: center;
  max-width: 88%;
  max-height: 88%;
  text-align: center;
  color: var(--py-ink);
  border: 2px solid var(--py-line);
  box-shadow: var(--py-shadow-soft);
}

.pyeong-calculator-wrapper .area-box span {
  display: block;
  padding: 4px;
  font-size: 11.5px;
  line-height: 1.15;
  font-weight: 850;
  background: rgba(255, 253, 247, 0.84);
}

.pyeong-calculator-wrapper .area-box strong {
  font-size: 12.5px;
}

.pyeong-calculator-wrapper .area-box--supply {
  background: rgba(223, 238, 248, 0.86);
}

.pyeong-calculator-wrapper .area-box--private {
  background: rgba(227, 239, 210, 0.9);
}

.pyeong-calculator-wrapper .viz-note {
  margin: 0;
  color: var(--py-muted);
  font-size: 12.7px;
  line-height: 1.4;
  font-weight: 750;
  word-break: keep-all;
}

.pyeong-calculator-wrapper .common-size-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}

.pyeong-calculator-wrapper .size-chip {
  min-height: 34px;
  font-size: 12.5px;
}

.pyeong-calculator-wrapper .info-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.pyeong-calculator-wrapper .info-card {
  min-width: 0;
  padding: 12px;
  color: var(--py-ink);
  background: rgba(251, 240, 220, 0.82);
  border: 1px solid var(--py-line-soft);
}

.pyeong-calculator-wrapper .info-card strong {
  display: block;
  margin-bottom: 5px;
  color: #7a412f;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 950;
}

.pyeong-calculator-wrapper .info-card p {
  margin: 0;
  color: var(--py-muted);
  font-size: 13px;
  line-height: 1.48;
  font-weight: 750;
  word-break: keep-all;
}

body.postid-1281 .entry-content > .pyeong-calculator-wrapper + .roberin-ad,
body.postid-1281 .entry-content > .pyeong-calculator-wrapper + ins.adsbygoogle {
  margin-top: 24px;
}

body.postid-1281 .entry-content > .roberin-ad {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.postid-1281 .entry-content > .roberin-ad--after-tool {
  margin-bottom: 24px;
}

body.postid-1281 .entry-content > .roberin-ad--after-tool + article {
  margin-top: 0;
}

body.postid-1281 .entry-content > .roberin-ad ins.adsbygoogle,
body.postid-1281 .entry-content > ins.adsbygoogle {
  display: block;
  width: min(100%, 970px);
  min-height: 250px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.postid-1281 .entry-content > .roberin-ad .roberin-qa-ad-placeholder {
  display: grid;
  place-items: center;
  min-height: 250px;
  color: rgba(103, 88, 74, 0.72);
  background: transparent;
  border: 1px dashed rgba(107, 87, 69, 0.32);
  box-shadow: none;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 960px) {
  .pyeong-calculator-wrapper .calculator-main,
  .pyeong-calculator-wrapper .info-content {
    grid-template-columns: 1fr;
  }

  .pyeong-calculator-wrapper .result-display,
  .pyeong-calculator-wrapper .visualization-container {
    min-height: auto;
  }
}

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

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

  .pyeong-calculator-wrapper .quick-actions,
  .pyeong-calculator-wrapper .preset-ratios,
  .pyeong-calculator-wrapper .common-size-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pyeong-calculator-wrapper .unit-toggle {
    grid-template-columns: 1fr;
  }

  .pyeong-calculator-wrapper .slider-group {
    grid-template-columns: 1fr 70px auto;
  }

  .pyeong-calculator-wrapper .result-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .pyeong-calculator-wrapper .quick-actions,
  .pyeong-calculator-wrapper .area-type-buttons,
  .pyeong-calculator-wrapper .preset-ratios,
  .pyeong-calculator-wrapper .common-size-list {
    grid-template-columns: 1fr;
  }

  .pyeong-calculator-wrapper .slider-group {
    grid-template-columns: 1fr;
  }

  .pyeong-calculator-wrapper .input-unit,
  .pyeong-calculator-wrapper .unit-text {
    width: 100%;
  }
}

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

body[data-scheme="dark"] .pyeong-calculator-container,
body[data-scheme="inverse"] .pyeong-calculator-container {
  background: #2b2119;
  color: #f2e4cf;
}

body[data-scheme="dark"] .pyeong-calculator-container::before,
body[data-scheme="inverse"] .pyeong-calculator-container::before {
  background:
    linear-gradient(rgba(210, 170, 85, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 170, 85, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

body[data-scheme="dark"] .pyeong-calculator-wrapper .input-section,
body[data-scheme="dark"] .pyeong-calculator-wrapper .result-section,
body[data-scheme="dark"] .pyeong-calculator-wrapper .special-section,
body[data-scheme="dark"] .pyeong-calculator-wrapper .info-section,
body[data-scheme="inverse"] .pyeong-calculator-wrapper .input-section,
body[data-scheme="inverse"] .pyeong-calculator-wrapper .result-section,
body[data-scheme="inverse"] .pyeong-calculator-wrapper .special-section,
body[data-scheme="inverse"] .pyeong-calculator-wrapper .info-section {
  background: rgba(51, 39, 29, 0.94);
}

body[data-scheme="dark"] .pyeong-calculator-wrapper .number-input,
body[data-scheme="inverse"] .pyeong-calculator-wrapper .number-input {
  color: #f2e4cf;
  -webkit-text-fill-color: #f2e4cf;
  background: #241c15;
  border-color: #a98b6b;
}

body[data-scheme="dark"] .pyeong-calculator-wrapper .number-input::placeholder,
body[data-scheme="inverse"] .pyeong-calculator-wrapper .number-input::placeholder {
  color: rgba(242, 228, 207, 0.66);
  -webkit-text-fill-color: rgba(242, 228, 207, 0.66);
  opacity: 1;
}

body[data-scheme="dark"] .pyeong-calculator-wrapper .help-text,
body[data-scheme="dark"] .pyeong-calculator-wrapper .result-display,
body[data-scheme="dark"] .pyeong-calculator-wrapper .visualization-container,
body[data-scheme="dark"] .pyeong-calculator-wrapper .info-card,
body[data-scheme="inverse"] .pyeong-calculator-wrapper .help-text,
body[data-scheme="inverse"] .pyeong-calculator-wrapper .result-display,
body[data-scheme="inverse"] .pyeong-calculator-wrapper .visualization-container,
body[data-scheme="inverse"] .pyeong-calculator-wrapper .info-card {
  background: rgba(36, 28, 21, 0.82);
}

body[data-scheme="dark"] .pyeong-calculator-wrapper .result-primary,
body[data-scheme="dark"] .pyeong-calculator-wrapper .info-card strong,
body[data-scheme="inverse"] .pyeong-calculator-wrapper .result-primary,
body[data-scheme="inverse"] .pyeong-calculator-wrapper .info-card strong {
  color: #f7df9d;
}

body[data-scheme="dark"] .pyeong-calculator-wrapper .btn-calculate,
body[data-scheme="inverse"] .pyeong-calculator-wrapper .btn-calculate {
  color: #241c15;
  background: #d2aa55;
}

body[data-scheme="dark"] .pyeong-calculator-wrapper .viz-stage,
body[data-scheme="inverse"] .pyeong-calculator-wrapper .viz-stage {
  background:
    linear-gradient(rgba(210, 170, 85, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 170, 85, 0.04) 1px, transparent 1px),
    #241c15;
}

body[data-scheme="dark"] .pyeong-calculator-wrapper .area-box span,
body[data-scheme="inverse"] .pyeong-calculator-wrapper .area-box span {
  background: rgba(36, 28, 21, 0.86);
}
