/* ROBERIN opportunity cost time value calculator - tool width +200px v7 - 2026-05-21 */
body.postid-4502,
.opportunity-cost-time-value-calculator-container {
  --octv-paper: #fff7e8;
  --octv-paper-soft: #fbf0dc;
  --octv-ink: #2b2119;
  --octv-muted: #67584a;
  --octv-line: #6b5745;
  --octv-line-soft: rgba(107, 87, 69, 0.26);
  --octv-green: #e3efd2;
  --octv-green-ink: #2f4e2e;
  --octv-blue: #dfeef8;
  --octv-blue-ink: #28455a;
  --octv-amber: #f7df9d;
  --octv-amber-ink: #5f3d12;
  --octv-red: #a43e2d;
  --octv-red-soft: #f3dfd3;
  --octv-white: #fffdf7;
  --octv-shadow: 4px 4px 0 rgba(72, 55, 40, 0.22);
  --octv-shadow-soft: 2px 2px 0 rgba(72, 55, 40, 0.14);
}

body.postid-4502 {
  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-4502 .cs-site-content > .cs-container,
body.postid-4502 .cs-main-content,
body.postid-4502 .cs-content-area,
body.postid-4502 .cs-entry__container,
body.postid-4502 .cs-entry__content-wrap {
  width: 100%;
  max-width: none;
}

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

body.postid-4502 .opportunity-cost-wrapper {
  width: min(1150px, calc(100vw - 32px));
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

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

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

.opportunity-cost-wrapper,
.opportunity-cost-wrapper *,
.opportunity-cost-wrapper *::before,
.opportunity-cost-wrapper *::after {
  box-sizing: border-box;
}

.opportunity-cost-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(--octv-ink);
}

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

.opportunity-cost-time-value-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;
}

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

.opportunity-cost-time-value-calculator-container .calculator-header h2 {
  margin: 0;
  color: var(--octv-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;
}

.opportunity-cost-time-value-calculator-container .subtitle {
  max-width: 700px;
  margin: 0;
  color: var(--octv-muted);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 700;
  word-break: keep-all;
}

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

.opportunity-cost-time-value-calculator-container .btn-quick,
.opportunity-cost-time-value-calculator-container .btn-reset,
.opportunity-cost-time-value-calculator-container .btn-calculate,
.opportunity-cost-time-value-calculator-container .income-type-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, border-color 120ms ease;
}

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

.opportunity-cost-time-value-calculator-container .preset-btn:nth-child(2) {
  background: var(--octv-blue);
  color: var(--octv-blue-ink);
}

.opportunity-cost-time-value-calculator-container .preset-btn:nth-child(3) {
  background: #fff2c1;
  color: var(--octv-amber-ink);
}

.opportunity-cost-time-value-calculator-container .btn-reset {
  background: var(--octv-red-soft);
  color: #743528;
}

.opportunity-cost-time-value-calculator-container .btn-quick:hover,
.opportunity-cost-time-value-calculator-container .btn-reset:hover,
.opportunity-cost-time-value-calculator-container .btn-calculate:hover,
.opportunity-cost-time-value-calculator-container .income-type-btn:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 rgba(72, 55, 40, 0.16);
}

.opportunity-cost-time-value-calculator-container .btn-quick:active,
.opportunity-cost-time-value-calculator-container .btn-reset:active,
.opportunity-cost-time-value-calculator-container .btn-calculate:active,
.opportunity-cost-time-value-calculator-container .income-type-btn:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.opportunity-cost-time-value-calculator-container .btn-quick:focus-visible,
.opportunity-cost-time-value-calculator-container .btn-reset:focus-visible,
.opportunity-cost-time-value-calculator-container .btn-calculate:focus-visible,
.opportunity-cost-time-value-calculator-container .income-type-btn:focus-visible,
.opportunity-cost-time-value-calculator-container .text-input:focus-visible,
.opportunity-cost-time-value-calculator-container .number-input:focus-visible {
  outline: 3px solid #d6a62b;
  outline-offset: 2px;
}

.opportunity-cost-time-value-calculator-container .calculator-main {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.98fr) minmax(0, 1.06fr);
  gap: 10px;
  margin: 0 0 10px;
  align-items: stretch;
}

.opportunity-cost-time-value-calculator-container .input-section,
.opportunity-cost-time-value-calculator-container .special-section,
.opportunity-cost-time-value-calculator-container .result-section,
.opportunity-cost-time-value-calculator-container .analysis-section,
.opportunity-cost-time-value-calculator-container .info-section {
  min-width: 0;
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid var(--octv-line);
  border-radius: 0;
  box-shadow: var(--octv-shadow-soft);
  padding: 12px;
}

.opportunity-cost-time-value-calculator-container .input-section,
.opportunity-cost-time-value-calculator-container .special-section,
.opportunity-cost-time-value-calculator-container .result-section {
  display: flex;
  flex-direction: column;
}

.opportunity-cost-time-value-calculator-container .analysis-section[hidden] {
  display: none !important;
}

.opportunity-cost-time-value-calculator-container .analysis-section,
.opportunity-cost-time-value-calculator-container .info-section {
  margin: 0 0 10px;
}

.opportunity-cost-time-value-calculator-container .info-section {
  margin-bottom: 0;
}

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

.opportunity-cost-time-value-calculator-container .section-title svg,
.opportunity-cost-time-value-calculator-container .btn-calculate svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--octv-line);
  stroke: currentColor;
  stroke-width: 2.2;
}

.opportunity-cost-time-value-calculator-container .input-group {
  min-width: 0;
  margin: 0 0 9px;
}

.opportunity-cost-time-value-calculator-container .input-group label {
  display: block;
  margin: 0 0 5px;
  color: var(--octv-muted);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.opportunity-cost-time-value-calculator-container .field-pair,
.opportunity-cost-time-value-calculator-container .time-input-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.opportunity-cost-time-value-calculator-container .time-input-row {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto;
  align-items: center;
}

.opportunity-cost-time-value-calculator-container .time-input-row span {
  color: var(--octv-muted);
  font-size: 12.5px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.opportunity-cost-time-value-calculator-container .text-input,
.opportunity-cost-time-value-calculator-container .number-input {
  min-width: 0;
  min-height: 40px;
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  color: var(--octv-ink) !important;
  -webkit-text-fill-color: var(--octv-ink) !important;
  background: #fffdf8;
  border: 1px solid var(--octv-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: 900;
  font-family: inherit;
  color-scheme: light;
  font-variant-numeric: tabular-nums;
}

.opportunity-cost-time-value-calculator-container .number-input {
  text-align: right;
}

.opportunity-cost-time-value-calculator-container .compact-input {
  text-align: center;
}

.opportunity-cost-time-value-calculator-container .text-input::placeholder,
.opportunity-cost-time-value-calculator-container .number-input::placeholder {
  color: rgba(103, 88, 74, 0.66) !important;
  -webkit-text-fill-color: rgba(103, 88, 74, 0.66) !important;
  opacity: 1;
  font-weight: 650;
}

.opportunity-cost-time-value-calculator-container .text-input:focus,
.opportunity-cost-time-value-calculator-container .number-input:focus {
  color: var(--octv-ink) !important;
  -webkit-text-fill-color: var(--octv-ink) !important;
  background: #fff6d8;
  border-color: #5f4834;
  outline: none;
}

.opportunity-cost-time-value-calculator-container .income-type-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.opportunity-cost-time-value-calculator-container .income-type-btn {
  min-width: 0;
  min-height: 36px;
  padding: 7px 8px;
  color: var(--octv-ink);
  background: #fffdf8;
  border: 1px solid var(--octv-line);
  box-shadow: var(--octv-shadow-soft);
  font-size: 12.8px;
  line-height: 1.1;
  font-weight: 900;
}

.opportunity-cost-time-value-calculator-container .income-type-btn.active,
.opportunity-cost-time-value-calculator-container .income-type-btn[aria-pressed="true"] {
  color: var(--octv-green-ink);
  background: var(--octv-green);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}

.opportunity-cost-time-value-calculator-container .helper-note,
.opportunity-cost-time-value-calculator-container .input-description {
  margin: 2px 0 0;
  color: var(--octv-muted);
  font-size: 12.2px;
  line-height: 1.5;
  font-weight: 700;
}

.opportunity-cost-time-value-calculator-container .optional-tag {
  display: inline-block;
  margin-left: 3px;
  padding: 1px 5px;
  color: var(--octv-blue-ink);
  background: var(--octv-blue);
  border: 1px solid rgba(107, 87, 69, 0.28);
  font-size: 11px;
  font-weight: 950;
  vertical-align: 1px;
}

.opportunity-cost-time-value-calculator-container .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;
}

.opportunity-cost-time-value-calculator-container .btn-calculate svg {
  color: currentColor;
}

.opportunity-cost-time-value-calculator-container .result-display {
  display: grid;
  gap: 0;
  text-align: left;
}

.opportunity-cost-time-value-calculator-container .result-display > .main-result + .detail-results {
  margin-top: 12px;
}

.opportunity-cost-time-value-calculator-container .main-result {
  display: grid;
  place-items: center;
  min-height: 102px;
  margin: 0;
  padding: 12px;
  background: var(--octv-blue);
  border: 1px solid var(--octv-line);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.38);
  text-align: center;
}

.opportunity-cost-time-value-calculator-container .big-number {
  margin: 0;
  color: var(--octv-blue-ink);
  font-size: clamp(31px, 3.4vw, 44px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.045em;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
}

.opportunity-cost-time-value-calculator-container .result-label {
  margin-top: 6px;
  color: var(--octv-muted);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 900;
}

.opportunity-cost-time-value-calculator-container .verdict-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 8px auto 0;
  padding: 5px 8px;
  color: var(--octv-green-ink);
  background: var(--octv-green);
  border: 1px solid rgba(107, 87, 69, 0.34);
  font-size: 12.2px;
  line-height: 1.2;
  font-weight: 950;
}

.opportunity-cost-time-value-calculator-container .verdict-badge.outsource {
  color: #743528;
  background: var(--octv-red-soft);
}

.opportunity-cost-time-value-calculator-container .verdict-badge.neutral {
  color: var(--octv-amber-ink);
  background: #fff2c1;
}

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

.opportunity-cost-time-value-calculator-container .result-item {
  display: grid;
  gap: 2px;
  align-items: start;
  min-width: 0;
  margin: 0;
  padding: 8px 9px;
  background: #fffaf0;
  border: 1px solid rgba(107, 87, 69, 0.36);
}

.opportunity-cost-time-value-calculator-container .result-label-text {
  color: var(--octv-muted);
  font-size: 11.5px;
  line-height: 1.1;
  font-weight: 900;
}

.opportunity-cost-time-value-calculator-container .result-value {
  color: var(--octv-ink);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 950;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.opportunity-cost-time-value-calculator-container .result-value.success {
  color: var(--octv-green-ink);
}

.opportunity-cost-time-value-calculator-container .result-value.danger {
  color: var(--octv-red);
}

.opportunity-cost-time-value-calculator-container .no-result {
  display: grid;
  min-height: 186px;
  place-items: center;
  padding: 16px;
  color: var(--octv-muted);
  background: #fffaf0;
  border: 1px dashed rgba(107, 87, 69, 0.52);
  text-align: center;
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 800;
}

.opportunity-cost-time-value-calculator-container .no-result p {
  margin: 0;
}

.opportunity-cost-time-value-calculator-container .no-result strong {
  color: var(--octv-ink);
  font-weight: 950;
}

.opportunity-cost-time-value-calculator-container .analysis-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 8px;
}

.opportunity-cost-time-value-calculator-container .time-value-cards,
.opportunity-cost-time-value-calculator-container .fun-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.opportunity-cost-time-value-calculator-container .chart-container {
  grid-row: span 2;
}

.opportunity-cost-time-value-calculator-container .time-card,
.opportunity-cost-time-value-calculator-container .fun-fact-card,
.opportunity-cost-time-value-calculator-container .chart-container {
  min-width: 0;
  padding: 10px;
  background: #fffaf0;
  border: 1px solid rgba(107, 87, 69, 0.32);
  text-align: left;
}

.opportunity-cost-time-value-calculator-container .time-card-label,
.opportunity-cost-time-value-calculator-container .fun-fact-title,
.opportunity-cost-time-value-calculator-container .chart-title {
  color: var(--octv-muted);
  font-size: 11.8px;
  line-height: 1.2;
  font-weight: 900;
}

.opportunity-cost-time-value-calculator-container .time-card-value,
.opportunity-cost-time-value-calculator-container .fun-fact-highlight {
  color: var(--octv-ink);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.opportunity-cost-time-value-calculator-container .fun-fact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
}

.opportunity-cost-time-value-calculator-container .fun-fact-icon {
  font-size: 18px;
  line-height: 1;
}

.opportunity-cost-time-value-calculator-container .fun-fact-text {
  margin-top: 2px;
  color: var(--octv-muted);
  font-size: 12px;
  line-height: 1.42;
  font-weight: 700;
}

.opportunity-cost-time-value-calculator-container .bar-chart {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.opportunity-cost-time-value-calculator-container .bar-item {
  display: grid;
  gap: 4px;
}

.opportunity-cost-time-value-calculator-container .bar-label {
  color: var(--octv-muted);
  font-size: 11.8px;
  font-weight: 900;
}

.opportunity-cost-time-value-calculator-container .bar-wrapper {
  min-height: 30px;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(107, 87, 69, 0.32);
}

.opportunity-cost-time-value-calculator-container .bar-fill {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 28%;
  min-height: 30px;
  padding: 0 7px;
  color: var(--octv-ink);
  background: var(--octv-blue);
  font-size: 11.8px;
  font-weight: 950;
  white-space: nowrap;
}

.opportunity-cost-time-value-calculator-container .bar-fill.alternative {
  background: var(--octv-green);
  color: var(--octv-green-ink);
}

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

.opportunity-cost-time-value-calculator-container .info-card {
  min-width: 0;
  padding: 10px;
  background: #fffaf0;
  border: 1px solid rgba(107, 87, 69, 0.32);
  text-align: left;
}

.opportunity-cost-time-value-calculator-container .info-icon {
  margin: 0 0 5px;
  color: var(--octv-line);
  font-size: 19px;
  line-height: 1;
  font-weight: 950;
}

.opportunity-cost-time-value-calculator-container .info-title {
  margin: 0 0 4px;
  color: var(--octv-ink);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 950;
}

.opportunity-cost-time-value-calculator-container .info-desc {
  color: var(--octv-muted);
  font-size: 12px;
  line-height: 1.42;
  font-weight: 700;
}

.opportunity-cost-time-value-calculator-container .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;
}

.opportunity-cost-time-value-calculator-container .warning-box strong {
  color: var(--octv-amber-ink);
  font-weight: 950;
}

.opportunity-cost-time-value-calculator-container .toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 240px;
  max-width: min(360px, calc(100vw - 28px));
  padding: 11px 12px;
  color: var(--octv-ink);
  background: var(--octv-white);
  border: 1px solid var(--octv-line);
  box-shadow: var(--octv-shadow);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.opportunity-cost-time-value-calculator-container .toast.show {
  transform: translateY(0);
  opacity: 1;
}

.opportunity-cost-time-value-calculator-container .toast svg {
  flex: 0 0 auto;
  color: var(--octv-green-ink);
}

.opportunity-cost-time-value-calculator-container .toast-content {
  display: grid;
  gap: 2px;
}

.opportunity-cost-time-value-calculator-container .toast-title {
  color: var(--octv-ink);
  font-size: 13px;
  font-weight: 950;
}

.opportunity-cost-time-value-calculator-container .toast-value {
  color: var(--octv-muted);
  font-size: 12.2px;
  font-weight: 750;
}

body.postid-4502 .opportunity-cost-ad {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-4502 .opportunity-cost-wrapper + .opportunity-cost-ad,
body.postid-4502 .opportunity-cost-ad + article {
  margin-top: 24px;
}

@media (max-width: 980px) {
  body.postid-4502 .cs-breadcrumbs,
  body.postid-4502 .cs-entry__header,
  body.postid-4502 .entry-content > article,
  body.postid-4502 .opportunity-cost-ad {
    width: min(950px, calc(100vw - 20px));
  }

  body.postid-4502 .opportunity-cost-wrapper {
    width: min(1150px, calc(100vw - 20px));
  }

  .opportunity-cost-time-value-calculator-container .calculator-main,
  .opportunity-cost-time-value-calculator-container .analysis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .opportunity-cost-time-value-calculator-container .result-section,
  .opportunity-cost-time-value-calculator-container .chart-container {
    grid-column: 1 / -1;
  }

  .opportunity-cost-time-value-calculator-container .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.postid-4502 .cs-breadcrumbs,
  body.postid-4502 .cs-entry__header,
  body.postid-4502 .entry-content > article,
  body.postid-4502 .opportunity-cost-ad {
    width: calc(100vw - 10px);
    max-width: calc(100vw - 10px);
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
  }

  body.postid-4502 .opportunity-cost-wrapper {
    width: calc(100vw - 10px);
    max-width: calc(100vw - 10px);
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
  }

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

  .opportunity-cost-time-value-calculator-container {
    padding: 9px;
    border-width: 1px;
    box-shadow: 3px 3px 0 rgba(72, 55, 40, 0.18);
  }

  .opportunity-cost-time-value-calculator-container .calculator-header {
    gap: 4px;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }

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

  .opportunity-cost-time-value-calculator-container .btn-quick,
  .opportunity-cost-time-value-calculator-container .btn-reset {
    min-height: 36px;
    padding: 7px 8px;
    font-size: 12.5px;
  }

  .opportunity-cost-time-value-calculator-container .calculator-main,
  .opportunity-cost-time-value-calculator-container .analysis-grid,
  .opportunity-cost-time-value-calculator-container .time-value-cards,
  .opportunity-cost-time-value-calculator-container .fun-facts {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 8px;
  }

  .opportunity-cost-time-value-calculator-container .input-section,
  .opportunity-cost-time-value-calculator-container .special-section,
  .opportunity-cost-time-value-calculator-container .result-section,
  .opportunity-cost-time-value-calculator-container .analysis-section,
  .opportunity-cost-time-value-calculator-container .info-section {
    padding: 9px;
  }

  .opportunity-cost-time-value-calculator-container .section-title {
    margin-bottom: 8px;
    padding-bottom: 7px;
    font-size: 14.5px;
  }

  .opportunity-cost-time-value-calculator-container .text-input,
  .opportunity-cost-time-value-calculator-container .number-input,
  .opportunity-cost-time-value-calculator-container .btn-calculate {
    min-height: 38px;
    font-size: 13.5px;
  }

  .opportunity-cost-time-value-calculator-container .no-result {
    min-height: 110px;
  }

  .opportunity-cost-time-value-calculator-container .detail-results,
  .opportunity-cost-time-value-calculator-container .info-grid {
    grid-template-columns: 1fr;
  }

  body.postid-4502 .entry-content > article {
    margin-top: 20px;
  }
}

@media (max-width: 380px) {
  .opportunity-cost-time-value-calculator-container {
    padding: 8px;
  }

  .opportunity-cost-time-value-calculator-container .time-input-row {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto;
    gap: 5px;
  }

  .opportunity-cost-time-value-calculator-container .big-number {
    font-size: 30px;
  }
}

/* Scoped site dark mode: follows ROBERIN shell toggle; no local tool-only dark toggle. */
body.postid-4502[data-scheme="dark"],
body.postid-4502[data-scheme="inverse"] {
  --octv-paper: #2b2119;
  --octv-paper-soft: #241c15;
  --octv-ink: #f7ebd8;
  --octv-muted: #f0dfc5;
  --octv-line: #a98b6b;
  --octv-line-soft: rgba(169, 139, 107, 0.48);
  --octv-green: #344a32;
  --octv-green-ink: #f7ebd8;
  --octv-blue: #233c43;
  --octv-blue-ink: #f1e8cf;
  --octv-amber: #d2aa55;
  --octv-amber-ink: #f0c86a;
  --octv-red: #d08b75;
  --octv-red-soft: #5a3028;
  --octv-white: #241c15;
  --octv-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34);
  --octv-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-4502[data-scheme="dark"] .cs-wrapper,
body.postid-4502[data-scheme="inverse"] .cs-wrapper,
body.postid-4502[data-scheme="dark"] .cs-site,
body.postid-4502[data-scheme="inverse"] .cs-site,
body.postid-4502[data-scheme="dark"] .cs-site-inner,
body.postid-4502[data-scheme="inverse"] .cs-site-inner,
body.postid-4502[data-scheme="dark"] .cs-site-primary,
body.postid-4502[data-scheme="inverse"] .cs-site-primary,
body.postid-4502[data-scheme="dark"] .cs-site-content,
body.postid-4502[data-scheme="inverse"] .cs-site-content,
body.postid-4502[data-scheme="dark"] footer.cs-footer,
body.postid-4502[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-4502[data-scheme="dark"] .cs-main-content,
body.postid-4502[data-scheme="inverse"] .cs-main-content,
body.postid-4502[data-scheme="dark"] .cs-entry__wrap,
body.postid-4502[data-scheme="inverse"] .cs-entry__wrap,
body.postid-4502[data-scheme="dark"] .entry-content,
body.postid-4502[data-scheme="inverse"] .entry-content {
  color: #f2e4cf !important;
}

body.postid-4502[data-scheme="dark"] .cs-entry__title,
body.postid-4502[data-scheme="inverse"] .cs-entry__title,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .calculator-header h2,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .calculator-header h2,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .section-title,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .section-title {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
}

body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .subtitle,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .subtitle,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .input-group label,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .input-group label,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .helper-note,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .helper-note,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .result-label,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .result-label,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .result-label-text,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .result-label-text,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .info-desc,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .info-desc,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .fun-fact-text,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .fun-fact-text,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .no-result,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .no-result {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-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-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container::before,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-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-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .input-section,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .input-section,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .special-section,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .special-section,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .result-section,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .result-section,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .analysis-section,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .analysis-section,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .info-section,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .info-section,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .info-card,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .info-card,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .time-card,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .time-card,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .fun-fact-card,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .fun-fact-card,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .chart-container,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .chart-container {
  color: #f7ebd8 !important;
  background: #33271d !important;
  border-color: #a98b6b !important;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.24) !important;
}

body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .text-input,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .text-input,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .number-input,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .number-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-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .text-input::placeholder,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .text-input::placeholder,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .number-input::placeholder,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .number-input::placeholder {
  color: rgba(240, 223, 197, 0.64) !important;
  -webkit-text-fill-color: rgba(240, 223, 197, 0.64) !important;
  opacity: 1;
  font-weight: 650;
}

body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .text-input:focus,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .text-input:focus,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .number-input:focus,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .number-input:focus {
  color: #fff7e8 !important;
  -webkit-text-fill-color: #fff7e8 !important;
  background: #2f251c !important;
  border-color: #f0c86a !important;
  outline-color: rgba(240, 200, 106, 0.46) !important;
}

body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .btn-quick,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .btn-quick,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .income-type-btn.active,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .income-type-btn.active,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .verdict-badge.do-it,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .verdict-badge.do-it {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
  background: #344a32 !important;
  border-color: #a98b6b !important;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.24) !important;
}

body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .btn-reset,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .btn-reset,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .verdict-badge.outsource,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .verdict-badge.outsource {
  color: #fff0dd !important;
  -webkit-text-fill-color: #fff0dd !important;
  background: #5a3028 !important;
  border-color: #c98266 !important;
}

body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .income-type-btn,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .income-type-btn,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .result-item,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .result-item,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .no-result,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .no-result,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .bar-wrapper,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .bar-wrapper {
  color: #f7ebd8 !important;
  background: #241c15 !important;
  border-color: #725b46 !important;
  box-shadow: none !important;
}

body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .btn-calculate,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .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-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .main-result,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .main-result,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .bar-fill,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .bar-fill {
  color: #f7ebd8 !important;
  background: #233c43 !important;
  border-color: #a98b6b !important;
  box-shadow: inset 0 0 0 1px rgba(240, 223, 197, 0.10) !important;
}

body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .big-number,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .big-number,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .result-value,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .result-value,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .info-title,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .info-title,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .time-card-value,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .time-card-value,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .no-result strong,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .no-result strong {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
}

body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .warning-box,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .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-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .warning-box strong,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .warning-box strong,
body.postid-4502[data-scheme="dark"] .opportunity-cost-time-value-calculator-container .fun-fact-highlight,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-time-value-calculator-container .fun-fact-highlight {
  color: #f0c86a !important;
  -webkit-text-fill-color: #f0c86a !important;
}

/* v3: equalize mandatory after-tool ad gap by neutralizing legacy article top margin. */
body.postid-4502 .entry-content > .opportunity-cost-ad--after-tool + article,
body.postid-4502 .entry-content > .opportunity-cost-ad--after-tool + .roberin-article-body {
  margin-top: 0 !important;
}

/* v4: Phase-1 ad-flow gate. Remove legacy content1 double top spacing only immediately after this tool's after-ad. */
body.postid-4502 .entry-content > .opportunity-cost-ad--after-tool {
  margin-bottom: 24px !important;
}
body.postid-4502 .entry-content > .opportunity-cost-ad--after-tool + article .content1 {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* v5: Phase 2 article, caution, and ad-flow cleanup. Target namespace mirrors the approved article rhythm without public reference classes. */
body.postid-4502 {
  --octv-article-page: #f9f1e7;
  --octv-article-panel: #f8efe2;
  --octv-article-card: #fff8ed;
  --octv-article-accent-paper: #e2edd8;
  --octv-article-text: #34281f;
  --octv-article-muted: #574838;
  --octv-article-line: #6b5745;
  --octv-article-line-soft: rgba(107, 87, 69, 0.34);
  --octv-article-mustard: #d2aa55;
  --octv-article-mustard-soft: rgba(210, 170, 85, 0.24);
  --octv-article-focus: #4f7d94;
  --octv-article-shadow: rgba(82, 65, 50, 0.22);
  --octv-article-soft-shadow: rgba(82, 65, 50, 0.13);
}

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

body.postid-4502 .entry-content > article.roberin-article-body.opportunity-cost-article,
body.postid-4502 .opportunity-cost-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(--octv-article-text) !important;
  -webkit-text-fill-color: var(--octv-article-text) !important;
  background:
    linear-gradient(rgba(107, 87, 69, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, 0.04) 1px, transparent 1px),
    var(--octv-article-panel) !important;
  background-size: 28px 28px, 28px 28px, auto !important;
  border: 2px solid var(--octv-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 var(--octv-article-shadow) !important;
  overflow: hidden !important;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif !important;
  line-height: 1.72 !important;
  word-break: keep-all !important;
}

body.postid-4502 .opportunity-cost-article,
body.postid-4502 .opportunity-cost-article *,
body.postid-4502 .opportunity-cost-article *::before,
body.postid-4502 .opportunity-cost-article *::after {
  box-sizing: border-box !important;
  min-width: 0 !important;
}

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

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

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

body.postid-4502 .opportunity-cost-article__section {
  padding: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

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

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

body.postid-4502 .opportunity-cost-article h2,
body.postid-4502 .opportunity-cost-article h3 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--octv-article-text) !important;
  -webkit-text-fill-color: var(--octv-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: -0.02em !important;
  word-break: keep-all !important;
}

body.postid-4502 .opportunity-cost-article h2 {
  font-size: clamp(25px, 3vw, 30px) !important;
  font-weight: 950 !important;
  line-height: 1.18 !important;
}

body.postid-4502 .opportunity-cost-article h3 {
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
}

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

body.postid-4502 .opportunity-cost-article strong {
  color: var(--octv-article-text) !important;
  -webkit-text-fill-color: var(--octv-article-text) !important;
  font-weight: 920 !important;
}

body.postid-4502 .opportunity-cost-article__nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
}

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

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

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

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

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

body.postid-4502 .opportunity-cost-article__notice {
  background: rgba(239, 225, 188, 0.64) !important;
  border-style: dashed !important;
}

body.postid-4502 .opportunity-cost-article__process {
  background: rgba(226, 237, 216, 0.70) !important;
}

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

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

body.postid-4502 .opportunity-cost-article :is(ul, ol) {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

body.postid-4502 .opportunity-cost-article ol,
body.postid-4502 .opportunity-cost-article ol.opportunity-cost-article__steps {
  counter-reset: opportunity-cost-step !important;
}

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

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

body.postid-4502 .opportunity-cost-article ul > li::before {
  content: "" !important;
  display: inline-block !important;
  width: 9px !important;
  height: 9px !important;
  background: var(--octv-article-mustard) !important;
  border: 1px solid var(--octv-article-line) !important;
  box-shadow: 1px 1px 0 rgba(82, 65, 50, 0.22) !important;
  line-height: 1 !important;
}

body.postid-4502 .opportunity-cost-article ol > li,
body.postid-4502 .opportunity-cost-article ol.opportunity-cost-article__steps > li {
  counter-increment: opportunity-cost-step !important;
}

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

body.postid-4502 .opportunity-cost-article__li-text {
  display: block !important;
  min-width: 0 !important;
  align-self: center !important;
}

body.postid-4502 .opportunity-cost-article details {
  margin: 0 !important;
}

body.postid-4502 .opportunity-cost-article summary {
  display: list-item !important;
  list-style-position: inside !important;
  cursor: pointer !important;
  color: var(--octv-article-text) !important;
  -webkit-text-fill-color: var(--octv-article-text) !important;
  font-weight: 950 !important;
  line-height: 1.45 !important;
}

body.postid-4502 .opportunity-cost-article details[open] summary {
  margin-bottom: 8px !important;
}

body.postid-4502[data-scheme="dark"] .entry-content > article.roberin-article-body.opportunity-cost-article,
body.postid-4502[data-scheme="inverse"] .entry-content > article.roberin-article-body.opportunity-cost-article,
body.postid-4502[data-scheme="dark"] .opportunity-cost-article,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-article {
  color: #f2e4cf !important;
  -webkit-text-fill-color: #f2e4cf !important;
  background-image:
    linear-gradient(rgba(169, 139, 107, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 139, 107, 0.06) 1px, transparent 1px) !important;
  background-color: #33271d !important;
  border-color: #a98b6b !important;
}

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

body.postid-4502[data-scheme="dark"] .opportunity-cost-article :is(p, li, span),
body.postid-4502[data-scheme="inverse"] .opportunity-cost-article :is(p, li, span) {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

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

body.postid-4502[data-scheme="dark"] .opportunity-cost-article__notice,
body.postid-4502[data-scheme="dark"] .opportunity-cost-article__process,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-article__notice,
body.postid-4502[data-scheme="inverse"] .opportunity-cost-article__process {
  background-color: rgba(36, 28, 21, 0.56) !important;
}

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

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

body.postid-4502 .entry-content > .opportunity-cost-ad--after-tool {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

body.postid-4502 .entry-content > .opportunity-cost-ad--after-tool + article.roberin-article-body.opportunity-cost-article {
  margin-top: 0 !important;
}


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

@media (max-width: 640px) {
  body.postid-4502 .opportunity-cost-ad {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
  }

  body.postid-4502 .entry-content > article.roberin-article-body.opportunity-cost-article,
  body.postid-4502 .opportunity-cost-article {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 12px !important;
    box-shadow: 4px 4px 0 rgba(82, 65, 50, 0.16) !important;
    transform: none !important;
  }

  body.postid-4502 .opportunity-cost-article__grid,
  body.postid-4502 .opportunity-cost-article__process-grid,
  body.postid-4502 .opportunity-cost-article__use-grid {
    grid-template-columns: 1fr !important;
  }

  body.postid-4502 .opportunity-cost-article h3 {
    font-size: 18px !important;
  }
}

@media (max-width: 370px) {
  body.postid-4502 .opportunity-cost-article h2 {
    font-size: 25.2px !important;
  }
}
