/* ROBERIN presentation time calculator redesign v2 - 2026-05-27 */
body.postid-1088 {
  --pc-paper: #fff7e8;
  --pc-paper-soft: #fbf0dc;
  --pc-ink: #2b2119;
  --pc-muted: #67584a;
  --pc-line: #6b5745;
  --pc-line-soft: rgba(107, 87, 69, 0.28);
  --pc-green: #e3efd2;
  --pc-green-ink: #2f4e2e;
  --pc-blue: #dfeef8;
  --pc-blue-ink: #28455a;
  --pc-amber: #f7df9d;
  --pc-red-paper: #f3dfd3;
  --pc-red-ink: #743528;
  --pc-white: #fffdf7;
  --pc-shadow: 4px 4px 0 rgba(72, 55, 40, 0.22);
  --pc-shadow-soft: 2px 2px 0 rgba(72, 55, 40, 0.14);
  --pc-main-grid-columns: minmax(0, 1.12fr) minmax(0, 0.92fr) minmax(0, 0.96fr);
  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-1088 .cs-site-content > .cs-container,
body.postid-1088 .cs-main-content,
body.postid-1088 .cs-content-area,
body.postid-1088 .cs-entry__container,
body.postid-1088 .cs-entry__content-wrap {
  width: 100%;
  max-width: none;
}

body.postid-1088 .cs-breadcrumbs,
body.postid-1088 .cs-entry__header,
body.postid-1088 .presentation-calc-wrapper {
  width: min(1050px, calc(100vw - 32px));
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

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

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

.presentation-calc-wrapper,
.presentation-calc-wrapper *,
.presentation-calc-wrapper *::before,
.presentation-calc-wrapper *::after {
  box-sizing: border-box;
}

.presentation-calc-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(--pc-ink);
}

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

.presentation-calc-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;
}

.presentation-calc-container br {
  display: none !important;
}

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

.calculator-header h2 {
  margin: 0;
  color: var(--pc-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(--pc-muted);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 700;
  word-break: keep-all;
}

.quick-actions {
  display: grid;
  grid-template-columns: var(--pc-main-grid-columns);
  gap: 10px;
  margin: 0 0 10px;
}

.btn-quick,
.btn-reset,
.btn-calculate,
.copy-btn,
.preset-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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--pc-green-ink);
  background: var(--pc-green);
  border: 1px solid var(--pc-line);
  box-shadow: var(--pc-shadow-soft);
  font-size: 13.5px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.btn-reset {
  color: var(--pc-red-ink);
  background: var(--pc-red-paper);
}

.btn-quick:hover,
.btn-reset:hover,
.btn-calculate:hover,
.copy-btn:hover,
.preset-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,
.copy-btn:active,
.preset-btn:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.btn-quick:focus-visible,
.btn-reset:focus-visible,
.btn-calculate:focus-visible,
.copy-btn:focus-visible,
.preset-btn:focus-visible,
.script-textarea:focus-visible,
.additional-settings input:focus-visible,
#speedSlider:focus-visible {
  outline: 3px solid #d6a62b;
  outline-offset: 2px;
}

.calculator-main {
  display: grid;
  grid-template-columns: var(--pc-main-grid-columns);
  gap: 10px;
  margin: 0 0 10px;
  align-items: stretch;
}

.input-section,
.result-section,
.special-section,
.info-section {
  min-width: 0;
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid var(--pc-line);
  border-radius: 0;
  box-shadow: var(--pc-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(--pc-ink) !important;
  border-bottom: 1px solid var(--pc-line-soft);
  font-size: 15.5px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.section-title svg,
.btn-calculate svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--pc-line);
  stroke: currentColor;
  stroke-width: 2.2;
}

.field-label,
.setting-row label {
  display: block;
  margin: 0 0 5px;
  color: var(--pc-muted);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.script-textarea {
  width: 100%;
  min-height: 218px;
  max-height: 340px;
  resize: vertical;
  padding: 10px 11px;
  color: var(--pc-ink);
  -webkit-text-fill-color: var(--pc-ink);
  caret-color: #5f4834;
  background: #fffdf8;
  border: 1px solid var(--pc-line);
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(107, 87, 69, 0.08);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 750;
  font-family: inherit;
  color-scheme: light;
}

.script-textarea:focus,
.additional-settings input:focus {
  background: #fff6d8;
  border-color: #5f4834;
  outline: none;
}

.script-textarea::placeholder {
  color: rgba(103, 88, 74, 0.82);
  -webkit-text-fill-color: rgba(103, 88, 74, 0.82);
}

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

.stat-item,
.result-item {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 8px 9px;
  background: #fffaf0;
  border: 1px solid rgba(107, 87, 69, 0.36);
}

.result-item {
  justify-items: center;
  text-align: center;
}

.stat-label,
.result-label-text {
  color: var(--pc-muted);
  font-size: 11.5px;
  line-height: 1.1;
  font-weight: 900;
}

.stat-value,
.result-value {
  color: var(--pc-ink);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.btn-calculate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 14px;
  color: #fffaf0;
  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;
}

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

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

.result-label {
  margin: 0 0 6px;
  color: var(--pc-muted);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 900;
}

.big-number {
  margin: 0;
  color: var(--pc-blue-ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}

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

.total-result {
  display: grid;
  gap: 7px;
  padding: 12px;
  color: var(--pc-ink);
  background: #f5ead2;
  border: 1px solid var(--pc-line);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.34);
  text-align: center;
}

.total-label {
  color: var(--pc-muted);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 900;
}

.total-value {
  color: #5c3827;
  font-size: clamp(25px, 2.9vw, 34px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.copy-btn {
  justify-self: center;
  min-height: 31px;
  padding: 7px 10px;
  color: var(--pc-ink);
  background: #fffdf8;
  border: 1px solid rgba(107, 87, 69, 0.62);
  box-shadow: 2px 2px 0 rgba(72, 55, 40, 0.12);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.speed-presets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 0 0 10px;
}

.preset-btn {
  min-height: 34px;
  padding: 7px 8px;
  color: var(--pc-ink);
  background: #fffdf8;
  border: 1px solid var(--pc-line);
  box-shadow: 2px 2px 0 rgba(72, 55, 40, 0.14);
  font-size: 12.5px;
  line-height: 1.1;
  font-weight: 900;
}

.preset-btn.active {
  color: var(--pc-green-ink);
  background: var(--pc-green);
}

.speed-control {
  margin: 0 0 10px;
  padding: 10px 0 0;
  border-top: 1px solid var(--pc-line-soft);
}

.slider-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

#speedSlider {
  width: 100%;
  min-width: 0;
  accent-color: #6b5745;
}

.slider-value {
  min-width: 76px;
  padding: 7px 8px;
  color: var(--pc-ink);
  background: #fffaf0;
  border: 1px solid rgba(107, 87, 69, 0.36);
  font-size: 12.5px;
  line-height: 1;
  font-weight: 950;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.additional-settings {
  display: grid;
  gap: 7px;
  margin-top: auto;
}

.setting-row {
  display: grid;
  gap: 5px;
}

.number-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: center;
  gap: 6px;
}

.additional-settings input {
  min-width: 0;
  min-height: 38px;
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  color: var(--pc-ink);
  -webkit-text-fill-color: var(--pc-ink);
  background: #fffdf8;
  border: 1px solid var(--pc-line);
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(107, 87, 69, 0.08);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 850;
  font-family: inherit;
  text-align: center;
  font-variant-numeric: tabular-nums;
  color-scheme: light;
}

.unit {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  color: var(--pc-muted);
  background: #fffaf0;
  border: 1px solid rgba(107, 87, 69, 0.36);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

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

.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);
  text-align: left;
}

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

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

.warning-box {
  margin: 0;
  padding: 10px 11px;
  color: #6f4b1d;
  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;
  font-weight: 950;
}

.toast {
  display: none;
  margin-top: 10px;
  padding: 10px 11px;
  color: var(--pc-ink);
  background: #fffaf0;
  border: 1px solid var(--pc-line);
  box-shadow: var(--pc-shadow-soft);
  font-size: 12.8px;
  line-height: 1.35;
  font-weight: 850;
}

.toast.show {
  display: block;
}

.toast.success { background: var(--pc-green); color: var(--pc-green-ink); }
.toast.info { background: var(--pc-blue); color: var(--pc-blue-ink); }
.toast.error { background: var(--pc-red-paper); color: var(--pc-red-ink); }

body.postid-1088 .presentation-calc-wrapper + .roberin-qa-ad-placeholder,
body.postid-1088 .presentation-calc-wrapper + .aicp,
body.postid-1088 .presentation-calc-wrapper + .roberin-ad-wrap {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-1088 .roberin-qa-ad-placeholder + .content1,
body.postid-1088 .aicp + .content1,
body.postid-1088 .roberin-ad-wrap + .content1 {
  margin-top: 0 !important;
}

@media (max-width: 980px) {
  body.postid-1088 .cs-breadcrumbs,
  body.postid-1088 .cs-entry__header,
  body.postid-1088 .presentation-calc-wrapper {
    width: min(1050px, calc(100vw - 20px));
  }

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

  .quick-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

@media (max-width: 640px) {
  body.postid-1088 .cs-breadcrumbs,
  body.postid-1088 .cs-entry__header,
  body.postid-1088 .presentation-calc-wrapper {
    width: calc(100vw - 10px);
    max-width: calc(100vw - 10px);
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }

  body.postid-1088 .cs-entry__header {
    margin-top: 12px;
    margin-bottom: 10px;
  }

  .presentation-calc-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: 1fr;
    gap: 6px;
    margin-bottom: 8px;
  }

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

  .script-textarea {
    min-height: 180px;
    font-size: 13.5px;
  }

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

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

  .additional-settings input,
  .unit {
    min-height: 38px;
    font-size: 13.5px;
  }

  .big-number {
    font-size: 36px;
  }
}

@media (max-width: 380px) {
  .presentation-calc-container { padding: 8px; }
  .script-stats,
  .detail-results,
  .info-grid,
  .speed-presets {
    grid-template-columns: 1fr;
  }
  .slider-wrapper { grid-template-columns: 1fr; }
  .slider-value { width: 100%; }
}

body.postid-1088[data-scheme="dark"],
body.postid-1088[data-scheme="inverse"] {
  --pc-paper: #2b2119;
  --pc-paper-soft: #241c15;
  --pc-ink: #f7ebd8;
  --pc-muted: #f0dfc5;
  --pc-line: #a98b6b;
  --pc-line-soft: rgba(169, 139, 107, 0.48);
  --pc-green: #344a32;
  --pc-green-ink: #f7ebd8;
  --pc-blue: #233c43;
  --pc-blue-ink: #f1e8cf;
  --pc-amber: #d2aa55;
  --pc-red-paper: #5a3028;
  --pc-red-ink: #fff0dd;
  --pc-white: #241c15;
  --pc-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34);
  --pc-shadow-soft: 2px 2px 0 rgba(0, 0, 0, 0.24);
  color: #f2e4cf !important;
  background:
    linear-gradient(90deg, rgba(229, 196, 139, 0.055) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(0deg, rgba(229, 196, 139, 0.045) 1px, transparent 1px) 0 0 / 18px 18px,
    #201811 !important;
}

body.postid-1088[data-scheme="dark"] .cs-wrapper,
body.postid-1088[data-scheme="inverse"] .cs-wrapper,
body.postid-1088[data-scheme="dark"] .cs-site,
body.postid-1088[data-scheme="inverse"] .cs-site,
body.postid-1088[data-scheme="dark"] .cs-site-inner,
body.postid-1088[data-scheme="inverse"] .cs-site-inner,
body.postid-1088[data-scheme="dark"] .cs-site-primary,
body.postid-1088[data-scheme="inverse"] .cs-site-primary,
body.postid-1088[data-scheme="dark"] .cs-site-content,
body.postid-1088[data-scheme="inverse"] .cs-site-content,
body.postid-1088[data-scheme="dark"] footer.cs-footer,
body.postid-1088[data-scheme="inverse"] footer.cs-footer {
  color: #f2e4cf !important;
  background-color: #201811 !important;
  background-image:
    linear-gradient(90deg, rgba(229, 196, 139, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(229, 196, 139, 0.045) 1px, transparent 1px) !important;
  background-size: 18px 18px !important;
}

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

body.postid-1088[data-scheme="dark"] .calculator-header .subtitle,
body.postid-1088[data-scheme="inverse"] .calculator-header .subtitle,
body.postid-1088[data-scheme="dark"] .field-label,
body.postid-1088[data-scheme="inverse"] .field-label,
body.postid-1088[data-scheme="dark"] .setting-row label,
body.postid-1088[data-scheme="inverse"] .setting-row label,
body.postid-1088[data-scheme="dark"] .stat-label,
body.postid-1088[data-scheme="inverse"] .stat-label,
body.postid-1088[data-scheme="dark"] .result-label,
body.postid-1088[data-scheme="inverse"] .result-label,
body.postid-1088[data-scheme="dark"] .result-label-text,
body.postid-1088[data-scheme="inverse"] .result-label-text,
body.postid-1088[data-scheme="dark"] .total-label,
body.postid-1088[data-scheme="inverse"] .total-label,
body.postid-1088[data-scheme="dark"] .info-desc,
body.postid-1088[data-scheme="inverse"] .info-desc,
body.postid-1088[data-scheme="dark"] .unit,
body.postid-1088[data-scheme="inverse"] .unit {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

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

body.postid-1088[data-scheme="dark"] .presentation-calc-container::before,
body.postid-1088[data-scheme="inverse"] .presentation-calc-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.postid-1088[data-scheme="dark"] .input-section,
body.postid-1088[data-scheme="inverse"] .input-section,
body.postid-1088[data-scheme="dark"] .result-section,
body.postid-1088[data-scheme="inverse"] .result-section,
body.postid-1088[data-scheme="dark"] .special-section,
body.postid-1088[data-scheme="inverse"] .special-section,
body.postid-1088[data-scheme="dark"] .info-section,
body.postid-1088[data-scheme="inverse"] .info-section,
body.postid-1088[data-scheme="dark"] .info-card,
body.postid-1088[data-scheme="inverse"] .info-card,
body.postid-1088[data-scheme="dark"] .stat-item,
body.postid-1088[data-scheme="inverse"] .stat-item,
body.postid-1088[data-scheme="dark"] .result-item,
body.postid-1088[data-scheme="inverse"] .result-item,
body.postid-1088[data-scheme="dark"] .slider-value,
body.postid-1088[data-scheme="inverse"] .slider-value,
body.postid-1088[data-scheme="dark"] .unit,
body.postid-1088[data-scheme="inverse"] .unit,
body.postid-1088[data-scheme="dark"] .copy-btn,
body.postid-1088[data-scheme="inverse"] .copy-btn,
body.postid-1088[data-scheme="dark"] .preset-btn,
body.postid-1088[data-scheme="inverse"] .preset-btn {
  color: #f7ebd8 !important;
  background: #33271d !important;
  border-color: #a98b6b !important;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.24) !important;
}

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

body.postid-1088[data-scheme="dark"] .script-textarea::placeholder,
body.postid-1088[data-scheme="inverse"] .script-textarea::placeholder {
  color: #d8c6aa !important;
  -webkit-text-fill-color: #d8c6aa !important;
}

body.postid-1088[data-scheme="dark"] .btn-quick,
body.postid-1088[data-scheme="inverse"] .btn-quick,
body.postid-1088[data-scheme="dark"] .preset-btn.active,
body.postid-1088[data-scheme="inverse"] .preset-btn.active {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
  background: #344a32 !important;
  border-color: #a98b6b !important;
}

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

body.postid-1088[data-scheme="dark"] .btn-calculate,
body.postid-1088[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.postid-1088[data-scheme="dark"] .main-result,
body.postid-1088[data-scheme="inverse"] .main-result,
body.postid-1088[data-scheme="dark"] .toast.info,
body.postid-1088[data-scheme="inverse"] .toast.info {
  color: #f7ebd8 !important;
  background: #233c43 !important;
  border-color: #a98b6b !important;
}

body.postid-1088[data-scheme="dark"] .big-number,
body.postid-1088[data-scheme="inverse"] .big-number,
body.postid-1088[data-scheme="dark"] .total-value,
body.postid-1088[data-scheme="inverse"] .total-value {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
}

body.postid-1088[data-scheme="dark"] .total-result,
body.postid-1088[data-scheme="inverse"] .total-result {
  background: #241c15 !important;
  border-color: #725b46 !important;
}

body.postid-1088[data-scheme="dark"] .warning-box,
body.postid-1088[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;
}

body.postid-1088[data-scheme="dark"] .warning-box strong,
body.postid-1088[data-scheme="inverse"] .warning-box strong {
  color: #f0c86a !important;
  -webkit-text-fill-color: #f0c86a !important;
}

body.postid-1088[data-scheme="dark"] .cs-header,
body.postid-1088[data-scheme="inverse"] .cs-header {
  color: #f2e4cf !important;
  background:
    linear-gradient(90deg, rgba(229, 196, 139, 0.055) 1px, transparent 1px) 0 0 / 16px 16px,
    linear-gradient(0deg, rgba(229, 196, 139, 0.045) 1px, transparent 1px) 0 0 / 16px 16px,
    #201811 !important;
  border-bottom-color: #725b46 !important;
}

body.postid-1088[data-scheme="dark"] .cs-header__inner,
body.postid-1088[data-scheme="inverse"] .cs-header__inner,
body.postid-1088[data-scheme="dark"] .cs-contact-form__content,
body.postid-1088[data-scheme="inverse"] .cs-contact-form__content {
  color: #f7ebd8 !important;
  background:
    linear-gradient(90deg, rgba(229, 196, 139, 0.06) 1px, transparent 1px) 0 0 / 14px 14px,
    linear-gradient(0deg, rgba(229, 196, 139, 0.05) 1px, transparent 1px) 0 0 / 14px 14px,
    #2b2119 !important;
  border-color: #a98b6b !important;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.34) !important;
}

body.postid-1088[data-scheme="dark"] .cs-header__toggle,
body.postid-1088[data-scheme="inverse"] .cs-header__toggle,
body.postid-1088[data-scheme="dark"] .cs-lang-current,
body.postid-1088[data-scheme="inverse"] .cs-lang-current,
body.postid-1088[data-scheme="dark"] .roberin-tool-search-toggle__button,
body.postid-1088[data-scheme="inverse"] .roberin-tool-search-toggle__button,
body.postid-1088[data-scheme="dark"] .cs-mobile-menu-button,
body.postid-1088[data-scheme="inverse"] .cs-mobile-menu-button {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
  background: #33271d !important;
  border-color: #a98b6b !important;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.28) !important;
}

body.postid-1088[data-scheme="dark"] .cs-lang-dropdown,
body.postid-1088[data-scheme="inverse"] .cs-lang-dropdown,
body.postid-1088[data-scheme="dark"] .cs-mobile-menu-dropdown,
body.postid-1088[data-scheme="inverse"] .cs-mobile-menu-dropdown {
  background: #2b2119 !important;
  border-color: #a98b6b !important;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34) !important;
}

body.postid-1088[data-scheme="dark"] .cs-header__menu a,
body.postid-1088[data-scheme="inverse"] .cs-header__menu a,
body.postid-1088[data-scheme="dark"] .cs-mobile-menu-dropdown a,
body.postid-1088[data-scheme="inverse"] .cs-mobile-menu-dropdown a,
body.postid-1088[data-scheme="dark"] .cs-lang-dropdown a,
body.postid-1088[data-scheme="inverse"] .cs-lang-dropdown a,
body.postid-1088[data-scheme="dark"] .cs-contact-form__heading,
body.postid-1088[data-scheme="inverse"] .cs-contact-form__heading,
body.postid-1088[data-scheme="dark"] .cs-contact-form__subheading,
body.postid-1088[data-scheme="inverse"] .cs-contact-form__subheading,
body.postid-1088[data-scheme="dark"] .cs-contact-form__description,
body.postid-1088[data-scheme="inverse"] .cs-contact-form__description,
body.postid-1088[data-scheme="dark"] .cs-footer__copyright,
body.postid-1088[data-scheme="inverse"] .cs-footer__copyright,
body.postid-1088[data-scheme="dark"] .cs-footer__copyright a,
body.postid-1088[data-scheme="inverse"] .cs-footer__copyright a {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

body.postid-1088[data-scheme="dark"] .wpcf7-form input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]),
body.postid-1088[data-scheme="inverse"] .wpcf7-form input:not([type="hidden"]):not([type="submit"]):not([type="checkbox"]),
body.postid-1088[data-scheme="dark"] .wpcf7-form textarea,
body.postid-1088[data-scheme="inverse"] .wpcf7-form textarea {
  color: #fff5df !important;
  -webkit-text-fill-color: #fff5df !important;
  caret-color: #f0c86a !important;
  background: #241c15 !important;
  border-color: #a98b6b !important;
  box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.18) !important;
}

body.postid-1088[data-scheme="dark"] .wpcf7-form input[type="submit"],
body.postid-1088[data-scheme="inverse"] .wpcf7-form input[type="submit"] {
  color: #201811 !important;
  -webkit-text-fill-color: #201811 !important;
  background: #f0c86a !important;
  border-color: #a98b6b !important;
}

body.postid-1088[data-scheme="dark"] .roberin-contact-consent,
body.postid-1088[data-scheme="inverse"] .roberin-contact-consent {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
  background: #344a32 !important;
  border-color: #a98b6b !important;
}

/* ROBERIN presentation calculator Phase 2 article body v3 - 2026-05-27 */
body.postid-1088 {
  --pc-article-page: #f9f1e7;
  --pc-article-panel: #f8efe2;
  --pc-article-card: #fff8ed;
  --pc-article-accent-paper: #e2edd8;
  --pc-article-text: #34281f;
  --pc-article-muted: #574838;
  --pc-article-line: #6b5745;
  --pc-article-line-soft: rgba(107, 87, 69, .34);
  --pc-article-mustard: #d2aa55;
  --pc-article-mustard-soft: rgba(210, 170, 85, .24);
  --pc-article-focus: #4f7d94;
  --pc-article-shadow: rgba(82, 65, 50, .22);
  --pc-article-soft-shadow: rgba(82, 65, 50, .13);
  --pc-article-notice: rgba(239, 225, 188, .64);
  --pc-article-process: rgba(226, 237, 216, .70);
}

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

body.postid-1088 .entry-content article.roberin-article-body.presentation-calc-article,
body.postid-1088 .presentation-calc-article {
  position: relative !important;
  z-index: 0 !important;
  display: grid !important;
  gap: 18px !important;
  box-sizing: border-box !important;
  width: min(980px, calc(100vw - 32px)) !important;
  max-width: 980px !important;
  min-width: 0 !important;
  margin: clamp(24px, 4vw, 42px) auto !important;
  padding: clamp(16px, 3vw, 28px) !important;
  color: var(--pc-article-text) !important;
  -webkit-text-fill-color: var(--pc-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(--pc-article-panel) !important;
  background-size: 28px 28px, 28px 28px, auto !important;
  border: 2px solid var(--pc-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 var(--pc-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;
  transform: none !important;
}

body.postid-1088 .presentation-calc-article,
body.postid-1088 .presentation-calc-article *,
body.postid-1088 .presentation-calc-article *::before,
body.postid-1088 .presentation-calc-article *::after {
  box-sizing: border-box !important;
  min-width: 0 !important;
}

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

body.postid-1088 .pc-article__hero,
body.postid-1088 .pc-article__section {
  display: grid !important;
  gap: 13px !important;
  min-width: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

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

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

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

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

body.postid-1088 .presentation-calc-article h3 {
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
}

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

body.postid-1088 .presentation-calc-article strong {
  color: var(--pc-article-text) !important;
  -webkit-text-fill-color: var(--pc-article-text) !important;
  font-weight: 920 !important;
}

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

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

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

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

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

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

body.postid-1088 .pc-article__notice {
  background: var(--pc-article-notice) !important;
  border-style: dashed !important;
}

body.postid-1088 .pc-article__process {
  background: var(--pc-article-process) !important;
}

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

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

body.postid-1088 .presentation-calc-article ol,
body.postid-1088 .presentation-calc-article ol.pc-article__steps {
  counter-reset: presentation-article-step !important;
}

body.postid-1088 .presentation-calc-article :is(ul, ol) > li {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  align-items: start !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-1088 .presentation-calc-article :is(ul, ol) > li::before {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  align-self: start !important;
  box-sizing: border-box !important;
  color: var(--pc-article-text) !important;
  -webkit-text-fill-color: var(--pc-article-text) !important;
  border-color: var(--pc-article-line) !important;
  border-radius: 0 !important;
}

body.postid-1088 .presentation-calc-article ul > li::before {
  content: "" !important;
  display: inline-block !important;
  width: 9px !important;
  height: 9px !important;
  margin-top: .45em !important;
  background: var(--pc-article-mustard) !important;
  border: 1px solid var(--pc-article-line) !important;
  box-shadow: 1px 1px 0 var(--pc-article-soft-shadow) !important;
  line-height: 1 !important;
}

body.postid-1088 .presentation-calc-article ol > li,
body.postid-1088 .presentation-calc-article ol.pc-article__steps > li {
  counter-increment: presentation-article-step !important;
}

body.postid-1088 .presentation-calc-article ol > li::before,
body.postid-1088 .presentation-calc-article ol.pc-article__steps > li::before {
  content: counter(presentation-article-step) !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 20px !important;
  height: 20px !important;
  background: var(--pc-article-mustard-soft) !important;
  border: 1px solid var(--pc-article-line) !important;
  box-shadow: 1px 1px 0 var(--pc-article-soft-shadow) !important;
  font-size: 11px !important;
  font-weight: 920 !important;
  line-height: 1 !important;
}

body.postid-1088 .pc-article__li-text {
  display: block !important;
  min-width: 0 !important;
  align-self: start !important;
  color: var(--pc-article-muted) !important;
  -webkit-text-fill-color: var(--pc-article-muted) !important;
}

body.postid-1088 .presentation-calc-article details {
  margin: 0 !important;
}

body.postid-1088 .presentation-calc-article summary {
  cursor: pointer !important;
  color: var(--pc-article-text) !important;
  -webkit-text-fill-color: var(--pc-article-text) !important;
  font-weight: 950 !important;
  line-height: 1.45 !important;
  list-style-position: inside !important;
}

body.postid-1088 .presentation-calc-article details[open] summary {
  margin-bottom: 8px !important;
}

body.postid-1088 .presentation-calc-wrapper + .roberin-qa-ad-placeholder + article.roberin-article-body.presentation-calc-article,
body.postid-1088 .presentation-calc-wrapper + .aicp.roberin-aicp-ad-guard + article.roberin-article-body.presentation-calc-article,
body.postid-1088 .presentation-calc-wrapper + .roberin-ad-wrap + article.roberin-article-body.presentation-calc-article {
  margin-top: 0 !important;
}

body.postid-1088 .presentation-calc-article + .roberin-qa-ad-placeholder,
body.postid-1088 .presentation-calc-article + .aicp.roberin-aicp-ad-guard,
body.postid-1088 .presentation-calc-article + .roberin-ad-wrap,
body.postid-1088 .entry-content > .aicp.roberin-aicp-ad-guard[data-roberin-aicp-slot="1316434178"] {
  width: min(728px, calc(100vw - 32px)) !important;
  max-width: 728px !important;
  min-width: 0 !important;
  margin: 40px auto 42px !important;
  padding: 0 !important;
  text-align: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

body.postid-1088 .entry-content > .aicp.roberin-aicp-ad-guard[data-roberin-aicp-slot="7492498702"] ins.adsbygoogle,
body.postid-1088 .entry-content > .aicp.roberin-aicp-ad-guard[data-roberin-aicp-slot="1316434178"] ins.adsbygoogle,
body.postid-1088 .entry-content > .roberin-qa-ad-placeholder ins.adsbygoogle,
body.postid-1088 .entry-content > .roberin-ad-wrap 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;
  background: transparent !important;
  overflow: hidden !important;
}

body.postid-1088[data-scheme="dark"] .entry-content article.roberin-article-body.presentation-calc-article,
body.postid-1088[data-scheme="inverse"] .entry-content article.roberin-article-body.presentation-calc-article,
body.postid-1088[data-scheme="dark"] .presentation-calc-article,
body.postid-1088[data-scheme="inverse"] .presentation-calc-article {
  color: var(--pc-article-text) !important;
  -webkit-text-fill-color: var(--pc-article-text) !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: var(--pc-article-panel) !important;
  border-color: var(--pc-article-line) !important;
}

body.postid-1088[data-scheme="dark"] .presentation-calc-article :is(h2, h3, strong, summary),
body.postid-1088[data-scheme="inverse"] .presentation-calc-article :is(h2, h3, strong, summary) {
  color: var(--pc-article-text) !important;
  -webkit-text-fill-color: var(--pc-article-text) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-1088[data-scheme="dark"] .presentation-calc-article :is(p, li, span),
body.postid-1088[data-scheme="inverse"] .presentation-calc-article :is(p, li, span) {
  color: var(--pc-article-muted) !important;
  -webkit-text-fill-color: var(--pc-article-muted) !important;
}

body.postid-1088[data-scheme="dark"] .pc-article__card,
body.postid-1088[data-scheme="dark"] .pc-article__process,
body.postid-1088[data-scheme="dark"] .pc-article__use,
body.postid-1088[data-scheme="dark"] .pc-article__notice,
body.postid-1088[data-scheme="dark"] .presentation-calc-article details,
body.postid-1088[data-scheme="dark"] .pc-article__nav a,
body.postid-1088[data-scheme="inverse"] .pc-article__card,
body.postid-1088[data-scheme="inverse"] .pc-article__process,
body.postid-1088[data-scheme="inverse"] .pc-article__use,
body.postid-1088[data-scheme="inverse"] .pc-article__notice,
body.postid-1088[data-scheme="inverse"] .presentation-calc-article details,
body.postid-1088[data-scheme="inverse"] .pc-article__nav a {
  background-color: var(--pc-article-card) !important;
  border-color: rgba(169, 139, 107, .72) !important;
  box-shadow: 3px 3px 0 rgba(32, 24, 17, .52) !important;
}

body.postid-1088[data-scheme="dark"] .pc-article__notice,
body.postid-1088[data-scheme="dark"] .pc-article__process,
body.postid-1088[data-scheme="inverse"] .pc-article__notice,
body.postid-1088[data-scheme="inverse"] .pc-article__process {
  background-color: var(--pc-article-notice) !important;
}

body.postid-1088[data-scheme="dark"] .presentation-calc-article code,
body.postid-1088[data-scheme="inverse"] .presentation-calc-article code {
  color: var(--pc-article-text) !important;
  -webkit-text-fill-color: var(--pc-article-text) !important;
  background: #241c15 !important;
  border-color: rgba(169, 139, 107, .56) !important;
}

body.postid-1088[data-scheme="dark"] .presentation-calc-article :is(ul, ol) > li::before,
body.postid-1088[data-scheme="inverse"] .presentation-calc-article :is(ul, ol) > li::before {
  border-color: var(--pc-article-line) !important;
}

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

@media (max-width: 640px) {
  body.postid-1088 .entry-content article.roberin-article-body.presentation-calc-article,
  body.postid-1088 .presentation-calc-article {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 12px !important;
    transform: none !important;
    box-shadow: 4px 4px 0 var(--pc-article-shadow) !important;
  }

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

  body.postid-1088 .presentation-calc-article h3 {
    font-size: 18px !important;
  }

  body.postid-1088 .presentation-calc-wrapper + .roberin-qa-ad-placeholder + article.roberin-article-body.presentation-calc-article,
  body.postid-1088 .presentation-calc-wrapper + .aicp.roberin-aicp-ad-guard + article.roberin-article-body.presentation-calc-article,
  body.postid-1088 .presentation-calc-wrapper + .roberin-ad-wrap + article.roberin-article-body.presentation-calc-article {
    margin-top: 0 !important;
  }

  body.postid-1088 .presentation-calc-article + .roberin-qa-ad-placeholder,
  body.postid-1088 .presentation-calc-article + .aicp.roberin-aicp-ad-guard,
  body.postid-1088 .presentation-calc-article + .roberin-ad-wrap,
  body.postid-1088 .entry-content > .aicp.roberin-aicp-ad-guard[data-roberin-aicp-slot="1316434178"] {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
}

@media (max-width: 370px) {
  body.postid-1088 .presentation-calc-article h2 {
    font-size: 25.2px !important;
  }
}
