/* ROBERIN freelancer withholding calculator v2
 * Reference: https://roberin.com/projects/date-difference-calculator/
 * Scope: canonical Korean postid-786, Phase 1 tool-only redesign.
 */

html:has(body.postid-786),
body.postid-786 {
  overflow-x: clip;
}

body.postid-786 {
  --fc-shell: #f6ead4;
  --fc-paper: #fff7e8;
  --fc-paper-soft: #fbf0dc;
  --fc-card: #fffdf7;
  --fc-ink: #2b2119;
  --fc-muted: #67584a;
  --fc-line: #6b5745;
  --fc-line-soft: rgba(107, 87, 69, 0.22);
  --fc-grid: rgba(107, 87, 69, 0.07);
  --fc-green: #e3efd2;
  --fc-blue: #dfeef8;
  --fc-amber: #f7df9d;
  --fc-rose: #f3d4c7;
  --fc-red: #a43e2d;
  --fc-shadow: 0 12px 0 rgba(85, 64, 45, 0.16);
  --fc-shadow-soft: 0 7px 0 rgba(85, 64, 45, 0.1);
  --fc-radius-lg: 24px;
  --fc-radius-md: 18px;
  --fc-radius-sm: 13px;
  --fc-transition: 180ms ease;
  background: var(--fc-shell);
  color: var(--fc-ink);
}

body.postid-786 .cs-site-content,
body.postid-786 .cs-entry__content,
body.postid-786 .entry-content {
  overflow-x: clip;
}

body.postid-786 .cs-entry__header,
body.postid-786 .cs-breadcrumbs,
body.postid-786 .entry-content > .wp-block-group,
body.postid-786 .entry-content > .wp-block-buttons,
body.postid-786 .freelancer-calculator-wrapper {
  width: min(1040px, calc(100vw - 32px));
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

body.postid-786 .entry-content > .wp-block-group {
  box-sizing: border-box;
  color: var(--fc-ink);
}

body.postid-786 .entry-content > p:empty {
  display: none;
}

body.postid-786 .freelancer-calculator-wrapper,
body.postid-786 .freelancer-calculator-wrapper * {
  box-sizing: border-box;
}

body.postid-786 .freelancer-calculator-wrapper {
  --fc-tool-max: 1040px;
  position: relative;
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--fc-ink);
  font-family: inherit;
  isolation: isolate;
}

body.postid-786 .freelancer-calculator-container {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3.5vw, 34px);
  border: 2px solid var(--fc-line);
  border-radius: var(--fc-radius-lg);
  background:
    linear-gradient(90deg, var(--fc-grid) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(0deg, var(--fc-grid) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(135deg, var(--fc-paper), var(--fc-paper-soft));
  box-shadow: var(--fc-shadow);
}

body.postid-786 .freelancer-calculator-container::before {
  position: absolute;
  inset: 14px 14px auto auto;
  width: 92px;
  height: 92px;
  border: 2px dashed rgba(107, 87, 69, 0.18);
  border-radius: 999px;
  content: '';
  pointer-events: none;
}

body.postid-786 .calculator-header {
  position: relative;
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 22px;
}

body.postid-786 .calculator-kicker {
  width: fit-content;
  margin: 0;
  padding: 6px 12px;
  border: 2px solid var(--fc-line);
  border-radius: 999px;
  background: var(--fc-amber);
  color: var(--fc-ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.35;
  box-shadow: 0 3px 0 rgba(107, 87, 69, 0.18);
}

body.postid-786 .calculator-header h2 {
  margin: 0;
  color: var(--fc-ink);
  font-size: clamp(27px, 5vw, 44px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.08;
  -webkit-text-fill-color: currentColor;
}

body.postid-786 .calculator-header .subtitle {
  max-width: 720px;
  margin: 0;
  color: var(--fc-muted);
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 600;
  line-height: 1.75;
  -webkit-text-fill-color: currentColor;
}

body.postid-786 .tax-mode-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

body.postid-786 .tax-mode-button,
body.postid-786 .freelancer-preset,
body.postid-786 .freelancer-secondary-action,
body.postid-786 .freelancer-copy-button,
body.postid-786 .freelancer-primary-button {
  appearance: none;
  border: 2px solid var(--fc-line);
  border-radius: var(--fc-radius-sm);
  color: var(--fc-ink);
  font-family: inherit;
  cursor: pointer;
  -webkit-text-fill-color: currentColor;
  transition: transform var(--fc-transition), box-shadow var(--fc-transition), background var(--fc-transition);
}

body.postid-786 .tax-mode-button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 14px 15px;
  background: var(--fc-card);
  box-shadow: var(--fc-shadow-soft);
  text-align: left;
}

body.postid-786 .tax-mode-button.is-active {
  background: var(--fc-green);
  transform: translateY(2px);
  box-shadow: 0 4px 0 rgba(85, 64, 45, 0.13);
}

body.postid-786 .tax-mode-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid var(--fc-line);
  border-radius: 50%;
  background: var(--fc-paper);
  font-weight: 900;
}

body.postid-786 .tax-mode-title,
body.postid-786 .tax-mode-subtitle {
  display: block;
  min-width: 0;
}

body.postid-786 .tax-mode-title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

body.postid-786 .tax-mode-subtitle {
  margin-top: 3px;
  color: var(--fc-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

body.postid-786 .freelancer-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

body.postid-786 .freelancer-preset,
body.postid-786 .freelancer-secondary-action {
  min-height: 38px;
  padding: 8px 12px;
  background: var(--fc-card);
  font-size: 13px;
  font-weight: 850;
}

body.postid-786 .freelancer-secondary-action {
  margin-left: auto;
  background: var(--fc-rose);
}

body.postid-786 .freelancer-preset:hover,
body.postid-786 .freelancer-secondary-action:hover,
body.postid-786 .freelancer-copy-button:hover,
body.postid-786 .freelancer-primary-button:hover,
body.postid-786 .tax-mode-button:hover {
  transform: translateY(-1px);
}

body.postid-786 .freelancer-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

body.postid-786 .freelancer-card,
body.postid-786 .freelancer-info-section {
  min-width: 0;
  border: 2px solid var(--fc-line);
  border-radius: var(--fc-radius-md);
  background: var(--fc-card);
  box-shadow: var(--fc-shadow-soft);
}

body.postid-786 .freelancer-card {
  display: grid;
  gap: 15px;
  grid-template-rows: auto auto auto 1fr;
  padding: 18px;
}

body.postid-786 .section-title {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0;
  color: var(--fc-ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.25;
  -webkit-text-fill-color: currentColor;
}

body.postid-786 .section-title svg {
  flex: 0 0 auto;
  color: var(--fc-line);
  stroke: currentColor;
}

body.postid-786 .field-group {
  display: grid;
  gap: 8px;
  min-width: 0;
}

body.postid-786 .field-group label {
  color: var(--fc-muted);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.01em;
}

body.postid-786 .amount-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  border: 2px solid var(--fc-line);
  border-radius: var(--fc-radius-sm);
  background: var(--fc-paper);
}

body.postid-786 .money-input {
  width: 100%;
  min-width: 0;
  height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--fc-ink);
  font: inherit;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.02em;
  padding: 0 13px;
  -webkit-text-fill-color: currentColor;
}

body.postid-786 .money-input::placeholder {
  color: rgba(103, 88, 74, 0.67);
  -webkit-text-fill-color: rgba(103, 88, 74, 0.67);
}

body.postid-786 .input-unit {
  display: grid;
  align-self: stretch;
  place-items: center;
  padding: 0 12px;
  border-left: 2px solid var(--fc-line);
  background: var(--fc-paper-soft);
  color: var(--fc-muted);
  font-size: 13px;
  font-weight: 900;
}

body.postid-786 .formatted-amount,
body.postid-786 .field-hint {
  color: var(--fc-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

body.postid-786 .freelancer-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  width: 100%;
  padding: 11px 14px;
  background: var(--fc-ink);
  color: var(--fc-card);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: 0 5px 0 rgba(85, 64, 45, 0.18);
}

body.postid-786 .freelancer-primary-button svg {
  stroke: currentColor;
}

body.postid-786 .freelancer-result-panel {
  display: grid;
  align-self: end;
  min-width: 0;
  border: 2px solid var(--fc-line-soft);
  border-radius: var(--fc-radius-md);
  background: linear-gradient(180deg, rgba(227, 239, 210, 0.74), rgba(251, 240, 220, 0.85));
  overflow: hidden;
}

body.postid-786 .freelancer-main-result {
  display: grid;
  gap: 5px;
  padding: 15px;
  border-bottom: 2px solid var(--fc-line-soft);
}

body.postid-786 .freelancer-result-label {
  color: var(--fc-muted);
  font-size: 12px;
  font-weight: 900;
}

body.postid-786 .freelancer-big-number {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--fc-ink);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.1;
  -webkit-text-fill-color: currentColor;
}

body.postid-786 .freelancer-result-caption {
  min-height: 18px;
  color: var(--fc-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

body.postid-786 .freelancer-detail-results {
  display: grid;
  gap: 0;
}

body.postid-786 .freelancer-result-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 13px;
  border-bottom: 1px solid var(--fc-line-soft);
  color: var(--fc-ink);
}

body.postid-786 .freelancer-result-row:last-child {
  border-bottom: 0;
}

body.postid-786 .freelancer-result-row span:first-child {
  min-width: 0;
  color: var(--fc-muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

body.postid-786 .freelancer-result-row span:last-child {
  min-width: 0;
  color: var(--fc-ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: right;
  overflow-wrap: anywhere;
  -webkit-text-fill-color: currentColor;
}

body.postid-786 .freelancer-result-row.is-tax span:last-child {
  color: var(--fc-red);
}

body.postid-786 .freelancer-copy-button {
  width: calc(100% - 26px);
  margin: 0 13px 13px;
  min-height: 36px;
  padding: 8px 12px;
  background: var(--fc-blue);
  font-size: 12px;
  font-weight: 900;
}

body.postid-786 .freelancer-info-section {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 18px;
  background:
    linear-gradient(90deg, var(--fc-grid) 1px, transparent 1px) 0 0 / 20px 20px,
    var(--fc-card);
}

body.postid-786 .freelancer-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.postid-786 .freelancer-info-card,
body.postid-786 .freelancer-warning-box {
  min-width: 0;
  border: 2px solid var(--fc-line-soft);
  border-radius: var(--fc-radius-sm);
  background: var(--fc-paper);
}

body.postid-786 .freelancer-info-card {
  padding: 14px;
}

body.postid-786 .freelancer-info-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--fc-ink);
  font-size: 14px;
  font-weight: 900;
  -webkit-text-fill-color: currentColor;
}

body.postid-786 .freelancer-info-card p,
body.postid-786 .freelancer-warning-box p {
  margin: 0;
  color: var(--fc-muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.65;
  -webkit-text-fill-color: currentColor;
}

body.postid-786 .freelancer-warning-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 14px;
  background: linear-gradient(135deg, rgba(247, 223, 157, 0.65), rgba(255, 253, 247, 0.9));
}

body.postid-786 .freelancer-warning-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--fc-line);
  border-radius: 50%;
  background: var(--fc-amber);
  font-weight: 950;
}

body.postid-786 .freelancer-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: min(360px, calc(100vw - 36px));
  padding: 12px 14px;
  border: 2px solid var(--fc-line);
  border-radius: var(--fc-radius-sm);
  background: var(--fc-ink);
  color: var(--fc-card);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  -webkit-text-fill-color: currentColor;
  transition: opacity var(--fc-transition), transform var(--fc-transition);
}

body.postid-786 .freelancer-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.postid-786 .freelancer-calc-ad {
  width: min(728px, calc(100vw - 32px));
  max-width: 100%;
  min-height: 90px;
  margin: 24px auto !important;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 0;
  overflow: hidden;
}

body.postid-786 .freelancer-calc-ad--after-tool + .wp-block-group,
body.postid-786 .freelancer-calc-ad--after-tool + script + .wp-block-group,
body.postid-786 .freelancer-calc-ad--after-tool + script + ins + script + .wp-block-group,
body.postid-786 .freelancer-calc-ad--after-tool + script + script + .wp-block-group {
  margin-top: 0 !important;
}

body.postid-786 .freelancer-calc-ad ins.adsbygoogle {
  display: block !important;
  width: min(728px, 100%) !important;
  max-width: 100% !important;
  min-height: 90px;
  margin: 0 auto;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.postid-786 .freelancer-calc-ad--bottom {
  margin-top: 28px;
}

body.postid-786[data-scheme="dark"],
body.postid-786[data-scheme="inverse"] {
  --fc-shell: #17110c;
  --fc-paper: #241b13;
  --fc-paper-soft: #2b2119;
  --fc-card: #33271d;
  --fc-ink: #f7ebd8;
  --fc-muted: #e2ccb0;
  --fc-line: #a98b6b;
  --fc-line-soft: rgba(235, 205, 166, 0.25);
  --fc-grid: rgba(235, 205, 166, 0.08);
  --fc-green: #34452b;
  --fc-blue: #273f4b;
  --fc-amber: #5a461e;
  --fc-rose: #50342d;
  --fc-red: #ffb29f;
  --fc-shadow: 0 12px 0 rgba(0, 0, 0, 0.34);
  --fc-shadow-soft: 0 7px 0 rgba(0, 0, 0, 0.24);
  background: var(--fc-shell);
  color: var(--fc-ink);
}

body.postid-786[data-scheme="dark"] .freelancer-calculator-container,
body.postid-786[data-scheme="inverse"] .freelancer-calculator-container,
body.postid-786[data-scheme="dark"] .freelancer-info-section,
body.postid-786[data-scheme="inverse"] .freelancer-info-section {
  background:
    linear-gradient(90deg, var(--fc-grid) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(0deg, var(--fc-grid) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(135deg, var(--fc-paper), var(--fc-paper-soft));
}

body.postid-786[data-scheme="dark"] .freelancer-result-panel,
body.postid-786[data-scheme="inverse"] .freelancer-result-panel {
  background: linear-gradient(180deg, rgba(52, 69, 43, 0.9), rgba(43, 33, 25, 0.96));
}

body.postid-786[data-scheme="dark"] .freelancer-primary-button,
body.postid-786[data-scheme="inverse"] .freelancer-primary-button,
body.postid-786[data-scheme="dark"] .freelancer-toast,
body.postid-786[data-scheme="inverse"] .freelancer-toast {
  background: #f0c86a;
  color: #241b13;
}

body.postid-786[data-scheme="dark"] .money-input::placeholder,
body.postid-786[data-scheme="inverse"] .money-input::placeholder {
  color: rgba(226, 204, 176, 0.66);
  -webkit-text-fill-color: rgba(226, 204, 176, 0.66);
}

body.postid-786[data-scheme="dark"] .entry-content > .wp-block-group,
body.postid-786[data-scheme="inverse"] .entry-content > .wp-block-group {
  color: var(--fc-ink);
}

@media (max-width: 980px) {
  body.postid-786 .freelancer-main,
  body.postid-786 .freelancer-info-grid {
    grid-template-columns: 1fr;
  }

  body.postid-786 .freelancer-card {
    grid-template-rows: auto;
  }
}

@media (max-width: 720px) {
  body.postid-786 .cs-entry__header,
  body.postid-786 .cs-breadcrumbs,
  body.postid-786 .entry-content > .wp-block-group,
  body.postid-786 .entry-content > .wp-block-buttons,
  body.postid-786 .freelancer-calculator-wrapper {
    width: min(100% - 20px, 1040px);
  }

  body.postid-786 .freelancer-calculator-container {
    padding: 18px 14px 20px;
    border-radius: 20px;
  }

  body.postid-786 .tax-mode-panel {
    grid-template-columns: 1fr;
  }

  body.postid-786 .tax-mode-button {
    padding: 12px;
  }

  body.postid-786 .freelancer-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.postid-786 .freelancer-secondary-action {
    margin-left: 0;
    grid-column: 1 / -1;
  }

  body.postid-786 .freelancer-preset,
  body.postid-786 .freelancer-secondary-action {
    width: 100%;
  }

  body.postid-786 .freelancer-card,
  body.postid-786 .freelancer-info-section {
    padding: 14px;
    border-radius: 16px;
  }

  body.postid-786 .freelancer-result-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  body.postid-786 .freelancer-result-row span:last-child {
    text-align: left;
  }

  body.postid-786 .freelancer-warning-box {
    grid-template-columns: 1fr;
  }

  body.postid-786 .freelancer-calc-ad {
    width: calc(100vw - 20px);
    min-height: 80px;
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}

@media (max-width: 390px) {
  body.postid-786 .calculator-header h2 {
    font-size: 29px;
  }

  body.postid-786 .freelancer-calculator-container {
    padding-right: 12px;
    padding-left: 12px;
  }

  body.postid-786 .freelancer-quick-actions {
    grid-template-columns: 1fr;
  }

  body.postid-786 .freelancer-big-number {
    font-size: 24px;
  }
}

/* Phase 2 body/article: PDF page deletion reference rhythm, scoped to freelancer post. */
body.postid-786 {
  --pdf-article-page: #f9f1e7;
  --pdf-article-panel: #f8efe2;
  --pdf-article-card: #fff8ed;
  --pdf-article-accent-paper: #e2edd8;
  --pdf-article-text: #34281f;
  --pdf-article-muted: #574838;
  --pdf-article-line: #6b5745;
  --pdf-article-line-soft: rgba(107, 87, 69, .34);
  --pdf-article-mustard: #d2aa55;
  --pdf-article-mustard-soft: rgba(210, 170, 85, .24);
  --pdf-article-focus: #4f7d94;
  --pdf-article-shadow: rgba(82, 65, 50, .22);
  --pdf-article-soft-shadow: rgba(82, 65, 50, .13);
}

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

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

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

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

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

body.postid-786 .freelancer-article .freelancer-article__section {
  border: 0 !important;
}

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

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

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

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

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

body.postid-786 .freelancer-article strong {
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  font-weight: 920 !important;
}

body.postid-786 .freelancer-article .freelancer-article__nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
}

body.postid-786 .freelancer-article .freelancer-article__nav a,
body.postid-786 .freelancer-article a {
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
}

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

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

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

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

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

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

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

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

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

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

body.postid-786 .freelancer-article ol,
body.postid-786 .freelancer-article ol.freelancer-article__steps {
  counter-reset: pdf-article-step !important;
}

body.postid-786 .freelancer-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-786 .freelancer-article :is(ul, ol) > li::before {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  flex: 0 0 auto !important;
  align-self: center !important;
  box-sizing: border-box !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  border-radius: 0 !important;
}

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

body.postid-786 .freelancer-article ol > li,
body.postid-786 .freelancer-article ol.freelancer-article__steps > li {
  counter-increment: pdf-article-step !important;
}

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

body.postid-786 .freelancer-article .freelancer-article__li-text {
  display: block !important;
  min-width: 0 !important;
  align-self: center !important;
}

body.postid-786 .freelancer-article details {
  margin: 0 !important;
}

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

body.postid-786 .freelancer-article summary::after {
  content: none !important;
  display: none !important;
}

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

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

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

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

body.postid-786[data-scheme="dark"] .freelancer-article .freelancer-article__notice,
body.postid-786[data-scheme="dark"] .freelancer-article .freelancer-article__process,
body.postid-786[data-scheme="inverse"] .freelancer-article .freelancer-article__notice,
body.postid-786[data-scheme="inverse"] .freelancer-article .freelancer-article__process {
  background-color: rgba(36, 28, 21, .56) !important;
}

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

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

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

@media (max-width: 640px) {
  body.postid-786 .entry-content article.roberin-article-body.freelancer-article,
  body.postid-786 .freelancer-article {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-top: 22px !important;
    margin-bottom: 22px !important;
    padding: 12px !important;
    box-shadow: 4px 4px 0 rgba(82, 65, 50, .16) !important;
  }

  body.postid-786 .freelancer-article .freelancer-article__grid,
  body.postid-786 .freelancer-article .freelancer-article__process-grid,
  body.postid-786 .freelancer-article .freelancer-article__use-grid {
    grid-template-columns: 1fr !important;
  }

  body.postid-786 .freelancer-article h3 {
    font-size: 18px !important;
  }
}

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

/* Phase 2 live cascade guard: global article styles can reapply when data-scheme is set. */
body.postid-786 .entry-content article#freelancer-tax-guide.roberin-article-body.freelancer-article,
body.postid-786[data-scheme] .entry-content article#freelancer-tax-guide.roberin-article-body.freelancer-article {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
  padding-top: 28px !important;
  padding-bottom: 28px !important;
}

@media (max-width: 640px) {
  body.postid-786 .entry-content article#freelancer-tax-guide.roberin-article-body.freelancer-article,
  body.postid-786[data-scheme] .entry-content article#freelancer-tax-guide.roberin-article-body.freelancer-article {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
    padding: 12px !important;
  }
}

body.postid-786 .freelancer-article details > summary::after,
body.postid-786[data-scheme] .freelancer-article details > summary::after {
  content: "" !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* 2026-05-15 corrective tool redesign
 * Problem fixed: previous v4 kept rounded, oversized custom card styling and did not
 * reproduce the date-difference calculator tool rhythm. This block deliberately maps
 * freelancer selectors to the date-difference reference structure.
 * toolReferenceUrl: https://roberin.com/projects/date-difference-calculator/
 */
body.postid-786 {
  --fc-shell: #faf2e8;
  --fc-paper: #fff7e8;
  --fc-paper-soft: #fbf0dc;
  --fc-card: #fffdf7;
  --fc-ink: #2b2119;
  --fc-muted: #67584a;
  --fc-line: #6b5745;
  --fc-line-soft: rgba(107, 87, 69, 0.26);
  --fc-grid: rgba(107, 87, 69, 0.055);
  --fc-green: #e3efd2;
  --fc-green-ink: #2f4e2e;
  --fc-blue: #dfeef8;
  --fc-blue-ink: #28455a;
  --fc-amber: #f7df9d;
  --fc-rose: #f3dfd3;
  --fc-red: #a43e2d;
  --fc-shadow: 4px 4px 0 rgba(72, 55, 40, 0.22);
  --fc-shadow-soft: 2px 2px 0 rgba(72, 55, 40, 0.14);
  --fc-radius-lg: 0;
  --fc-radius-md: 0;
  --fc-radius-sm: 0;
  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,
    var(--fc-shell) !important;
}

body.postid-786 .cs-breadcrumbs,
body.postid-786 .cs-entry__header,
body.postid-786 .entry-content > .wp-block-group,
body.postid-786 .entry-content > .wp-block-buttons,
body.postid-786 .freelancer-calculator-wrapper {
  width: min(950px, calc(100vw - 32px)) !important;
  max-width: 950px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

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

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

body.postid-786 .freelancer-calculator-container::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    linear-gradient(rgba(107, 87, 69, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, 0.045) 1px, transparent 1px) !important;
  background-size: 20px 20px !important;
  pointer-events: none !important;
}

body.postid-786 .calculator-header {
  display: grid !important;
  gap: 6px !important;
  max-width: none !important;
  margin: 0 0 10px !important;
  padding: 0 0 10px !important;
  text-align: left !important;
  border-bottom: 2px solid var(--fc-line) !important;
}

body.postid-786 .calculator-kicker {
  display: none !important;
}

body.postid-786 .calculator-header h2 {
  margin: 0 !important;
  color: var(--fc-ink) !important;
  font-size: clamp(22px, 2.5vw, 30px) !important;
  line-height: 1.14 !important;
  font-weight: 950 !important;
  letter-spacing: -0.045em !important;
  text-shadow: none !important;
  word-break: keep-all !important;
  -webkit-text-fill-color: currentColor !important;
}

body.postid-786 .calculator-header .subtitle {
  max-width: 660px !important;
  margin: 0 !important;
  color: var(--fc-muted) !important;
  font-size: 14.5px !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
  word-break: keep-all !important;
}

body.postid-786 .tax-mode-panel {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 0 0 10px !important;
}

body.postid-786 .tax-mode-button,
body.postid-786 .freelancer-preset,
body.postid-786 .freelancer-secondary-action,
body.postid-786 .freelancer-copy-button,
body.postid-786 .freelancer-primary-button {
  border-radius: 0 !important;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease, color 120ms ease !important;
}

body.postid-786 .tax-mode-button {
  grid-template-columns: auto minmax(0, 1fr) !important;
  gap: 8px !important;
  min-height: 42px !important;
  padding: 8px 10px !important;
  color: var(--fc-ink) !important;
  background: var(--fc-card) !important;
  border: 1px solid var(--fc-line) !important;
  box-shadow: var(--fc-shadow-soft) !important;
  text-align: left !important;
}

body.postid-786 .tax-mode-button.is-active {
  color: var(--fc-green-ink) !important;
  background: var(--fc-green) !important;
  transform: none !important;
  box-shadow: var(--fc-shadow-soft) !important;
}

body.postid-786 .tax-mode-icon {
  width: 28px !important;
  height: 28px !important;
  border: 1px solid var(--fc-line) !important;
  border-radius: 0 !important;
  background: var(--fc-paper) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
}

body.postid-786 .tax-mode-title {
  font-size: 13.5px !important;
  line-height: 1.12 !important;
  font-weight: 950 !important;
}

body.postid-786 .tax-mode-subtitle {
  margin-top: 2px !important;
  color: var(--fc-muted) !important;
  font-size: 11.5px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

body.postid-786 .freelancer-quick-actions {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 0 0 10px !important;
}

body.postid-786 .freelancer-preset,
body.postid-786 .freelancer-secondary-action {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 8px 9px !important;
  color: var(--fc-green-ink) !important;
  background: var(--fc-green) !important;
  border: 1px solid var(--fc-line) !important;
  box-shadow: var(--fc-shadow-soft) !important;
  font-size: 12.5px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

body.postid-786 .freelancer-secondary-action {
  color: #743528 !important;
  background: var(--fc-rose) !important;
}

body.postid-786 .tax-mode-button:hover,
body.postid-786 .freelancer-preset:hover,
body.postid-786 .freelancer-secondary-action:hover,
body.postid-786 .freelancer-primary-button:hover,
body.postid-786 .freelancer-copy-button:hover {
  transform: translate(1px, 1px) !important;
  box-shadow: 1px 1px 0 rgba(72, 55, 40, 0.16) !important;
}

body.postid-786 .freelancer-main {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 1.1fr) !important;
  gap: 10px !important;
  margin: 0 0 10px !important;
  align-items: stretch !important;
}

body.postid-786 .freelancer-card,
body.postid-786 .freelancer-info-section {
  min-width: 0 !important;
  color: var(--fc-ink) !important;
  background: rgba(255, 253, 247, 0.94) !important;
  border: 1px solid var(--fc-line) !important;
  border-radius: 0 !important;
  box-shadow: var(--fc-shadow-soft) !important;
}

body.postid-786 .freelancer-card {
  display: flex !important;
  flex-direction: column !important;
  gap: 9px !important;
  padding: 12px !important;
}

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

body.postid-786 .section-title svg {
  flex: 0 0 auto !important;
  width: 16px !important;
  height: 16px !important;
  color: var(--fc-line) !important;
  stroke: currentColor !important;
  stroke-width: 2.2 !important;
}

body.postid-786 .field-group {
  display: block !important;
  min-width: 0 !important;
  margin: 0 0 1px !important;
}

body.postid-786 .field-group label {
  display: block !important;
  margin: 0 0 5px !important;
  color: var(--fc-muted) !important;
  font-size: 12.5px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

body.postid-786 .amount-input-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 0 !important;
  min-width: 0 !important;
  overflow: hidden !important;
  color: var(--fc-ink) !important;
  background: #fffdf8 !important;
  border: 1px solid var(--fc-line) !important;
  border-radius: 0 !important;
  box-shadow: inset 0 1px 0 rgba(107, 87, 69, 0.08) !important;
}

body.postid-786 .money-input {
  min-width: 0 !important;
  min-height: 40px !important;
  height: 40px !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 8px 10px !important;
  color: var(--fc-ink) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  font-family: inherit !important;
  font-variant-numeric: tabular-nums !important;
  color-scheme: light !important;
}

body.postid-786 .money-input:focus {
  background: #fff6d8 !important;
  outline: none !important;
}

body.postid-786 .input-unit {
  display: grid !important;
  align-self: stretch !important;
  place-items: center !important;
  padding: 0 10px !important;
  border-left: 1px solid var(--fc-line) !important;
  background: var(--fc-paper-soft) !important;
  color: var(--fc-muted) !important;
  font-size: 12.5px !important;
  font-weight: 950 !important;
}

body.postid-786 .formatted-amount,
body.postid-786 .field-hint {
  margin-top: 5px !important;
  color: var(--fc-muted) !important;
  font-size: 11.5px !important;
  line-height: 1.42 !important;
  font-weight: 800 !important;
}

body.postid-786 .freelancer-primary-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  width: 100% !important;
  min-height: 42px !important;
  margin-top: auto !important;
  padding: 10px 14px !important;
  color: #fffaf0 !important;
  background: #35271d !important;
  border: 1px solid #231a13 !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 rgba(72, 55, 40, 0.24) !important;
  font-size: 14.5px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}

body.postid-786 .freelancer-result-panel {
  display: grid !important;
  gap: 0 !important;
  align-self: stretch !important;
  min-width: 0 !important;
  margin: 0 !important;
  color: var(--fc-ink) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

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

body.postid-786 .freelancer-result-label {
  order: 2 !important;
  margin-top: 6px !important;
  color: var(--fc-muted) !important;
  font-size: 12.5px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
}

body.postid-786 .freelancer-big-number {
  order: 1 !important;
  margin: 0 !important;
  color: var(--fc-blue-ink) !important;
  font-size: clamp(26px, 3vw, 38px) !important;
  line-height: 0.98 !important;
  font-weight: 950 !important;
  letter-spacing: -0.045em !important;
  font-family: inherit !important;
  font-variant-numeric: tabular-nums !important;
  overflow-wrap: anywhere !important;
}

body.postid-786 .freelancer-result-caption {
  order: 3 !important;
  min-height: 0 !important;
  margin-top: 5px !important;
  color: var(--fc-muted) !important;
  font-size: 11.5px !important;
  line-height: 1.25 !important;
  font-weight: 850 !important;
}

body.postid-786 .freelancer-card:not(.is-calculated) .freelancer-main-result {
  min-height: 142px !important;
  background: #fffaf0 !important;
  border: 1px dashed rgba(107, 87, 69, 0.52) !important;
}

body.postid-786 .freelancer-card:not(.is-calculated) .freelancer-result-label,
body.postid-786 .freelancer-card:not(.is-calculated) .freelancer-result-caption {
  color: var(--fc-muted) !important;
}

body.postid-786 .freelancer-card:not(.is-calculated) .freelancer-big-number {
  color: var(--fc-muted) !important;
  font-size: 26px !important;
}

body.postid-786 .freelancer-card:not(.is-calculated) .freelancer-detail-results,
body.postid-786 .freelancer-card:not(.is-calculated) .freelancer-copy-button {
  display: none !important;
}

body.postid-786 .freelancer-detail-results {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 6px !important;
  margin-top: 12px !important;
}

body.postid-786 .freelancer-result-row {
  display: grid !important;
  gap: 2px !important;
  grid-template-columns: 1fr !important;
  align-items: start !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 8px 9px !important;
  color: var(--fc-ink) !important;
  background: #fffaf0 !important;
  border: 1px solid rgba(107, 87, 69, 0.36) !important;
}

body.postid-786 .freelancer-result-row span:first-child {
  color: var(--fc-muted) !important;
  font-size: 11.5px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
}

body.postid-786 .freelancer-result-row span:last-child {
  color: var(--fc-ink) !important;
  font-size: 13.5px !important;
  line-height: 1.15 !important;
  font-weight: 950 !important;
  font-family: inherit !important;
  font-variant-numeric: tabular-nums !important;
  text-align: left !important;
}

body.postid-786 .freelancer-result-row.is-tax span:last-child {
  color: var(--fc-red) !important;
}

body.postid-786 .freelancer-copy-button {
  width: 100% !important;
  min-height: 34px !important;
  margin: 10px 0 0 !important;
  padding: 7px 8px !important;
  color: var(--fc-ink) !important;
  background: #fffdf8 !important;
  border: 1px solid var(--fc-line) !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0 rgba(72, 55, 40, 0.14) !important;
  font-size: 12.5px !important;
  line-height: 1.1 !important;
  font-weight: 900 !important;
}

body.postid-786 .freelancer-info-section {
  display: grid !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 12px !important;
  background: rgba(255, 253, 247, 0.94) !important;
}

body.postid-786 .freelancer-info-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

body.postid-786 .freelancer-info-card {
  min-width: 0 !important;
  padding: 10px !important;
  background: #fffaf0 !important;
  border: 1px solid rgba(107, 87, 69, 0.32) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.postid-786 .freelancer-info-card strong {
  margin: 0 0 5px !important;
  color: var(--fc-ink) !important;
  font-size: 12.5px !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
}

body.postid-786 .freelancer-info-card p {
  color: var(--fc-muted) !important;
  font-size: 12px !important;
  line-height: 1.42 !important;
  font-weight: 700 !important;
}

body.postid-786 .freelancer-warning-box {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  gap: 9px !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 10px 11px !important;
  color: #6f4b1d !important;
  background: #fff2c1 !important;
  border: 1px solid #c99a35 !important;
  border-left: 5px solid #c99a35 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 12.8px !important;
  line-height: 1.55 !important;
  font-weight: 750 !important;
}

body.postid-786 .freelancer-warning-icon {
  width: 24px !important;
  height: 24px !important;
  border: 1px solid #c99a35 !important;
  border-radius: 999px !important;
  background: #f7df9d !important;
  color: #5f3d12 !important;
  font-size: 14px !important;
}

body.postid-786 .freelancer-warning-box p {
  color: #6f4b1d !important;
  font-size: 12.8px !important;
  line-height: 1.55 !important;
  font-weight: 750 !important;
}

body.postid-786 .freelancer-toast {
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 rgba(72, 55, 40, 0.24) !important;
}

body.postid-786[data-scheme="dark"],
body.postid-786[data-scheme="inverse"] {
  --fc-shell: #201811;
  --fc-paper: #2b2119;
  --fc-paper-soft: #241c15;
  --fc-card: #33271d;
  --fc-ink: #f7ebd8;
  --fc-muted: #f0dfc5;
  --fc-line: #a98b6b;
  --fc-line-soft: rgba(169, 139, 107, 0.48);
  --fc-grid: rgba(229, 196, 139, 0.06);
  --fc-green: #344a32;
  --fc-green-ink: #f7ebd8;
  --fc-blue: #233c43;
  --fc-blue-ink: #f1e8cf;
  --fc-amber: #d2aa55;
  --fc-rose: #5a3028;
  --fc-red: #d08b75;
  --fc-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34);
  --fc-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-786[data-scheme="dark"] .freelancer-calculator-container,
body.postid-786[data-scheme="inverse"] .freelancer-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-786[data-scheme="dark"] .freelancer-calculator-container::before,
body.postid-786[data-scheme="inverse"] .freelancer-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-786[data-scheme="dark"] .calculator-header h2,
body.postid-786[data-scheme="inverse"] .calculator-header h2,
body.postid-786[data-scheme="dark"] .section-title,
body.postid-786[data-scheme="inverse"] .section-title {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
}

body.postid-786[data-scheme="dark"] .calculator-header .subtitle,
body.postid-786[data-scheme="inverse"] .calculator-header .subtitle,
body.postid-786[data-scheme="dark"] .field-group label,
body.postid-786[data-scheme="inverse"] .field-group label,
body.postid-786[data-scheme="dark"] .formatted-amount,
body.postid-786[data-scheme="inverse"] .formatted-amount,
body.postid-786[data-scheme="dark"] .field-hint,
body.postid-786[data-scheme="inverse"] .field-hint,
body.postid-786[data-scheme="dark"] .freelancer-result-label,
body.postid-786[data-scheme="inverse"] .freelancer-result-label,
body.postid-786[data-scheme="dark"] .freelancer-result-caption,
body.postid-786[data-scheme="inverse"] .freelancer-result-caption,
body.postid-786[data-scheme="dark"] .tax-mode-subtitle,
body.postid-786[data-scheme="inverse"] .tax-mode-subtitle {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

body.postid-786[data-scheme="dark"] .freelancer-card,
body.postid-786[data-scheme="inverse"] .freelancer-card,
body.postid-786[data-scheme="dark"] .freelancer-info-section,
body.postid-786[data-scheme="inverse"] .freelancer-info-section,
body.postid-786[data-scheme="dark"] .freelancer-info-card,
body.postid-786[data-scheme="inverse"] .freelancer-info-card {
  color: #f7ebd8 !important;
  background: #33271d !important;
  border-color: #a98b6b !important;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.24) !important;
}

body.postid-786[data-scheme="dark"] .amount-input-row,
body.postid-786[data-scheme="inverse"] .amount-input-row,
body.postid-786[data-scheme="dark"] .money-input,
body.postid-786[data-scheme="inverse"] .money-input {
  color: #fff5df !important;
  -webkit-text-fill-color: #fff5df !important;
  caret-color: #f0c86a !important;
  background: #241c15 !important;
  border-color: #a98b6b !important;
  color-scheme: dark !important;
}

body.postid-786[data-scheme="dark"] .input-unit,
body.postid-786[data-scheme="inverse"] .input-unit {
  color: #f0dfc5 !important;
  background: #2f251c !important;
  border-color: #a98b6b !important;
}

body.postid-786[data-scheme="dark"] .tax-mode-button,
body.postid-786[data-scheme="inverse"] .tax-mode-button,
body.postid-786[data-scheme="dark"] .freelancer-preset,
body.postid-786[data-scheme="inverse"] .freelancer-preset {
  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-786[data-scheme="dark"] .tax-mode-button:not(.is-active),
body.postid-786[data-scheme="inverse"] .tax-mode-button:not(.is-active) {
  background: #33271d !important;
}

body.postid-786[data-scheme="dark"] .tax-mode-icon,
body.postid-786[data-scheme="inverse"] .tax-mode-icon {
  color: #f7ebd8 !important;
  background: #241c15 !important;
  border-color: #a98b6b !important;
}

body.postid-786[data-scheme="dark"] .freelancer-secondary-action,
body.postid-786[data-scheme="inverse"] .freelancer-secondary-action {
  color: #fff0dd !important;
  -webkit-text-fill-color: #fff0dd !important;
  background: #5a3028 !important;
  border-color: #c98266 !important;
}

body.postid-786[data-scheme="dark"] .freelancer-primary-button,
body.postid-786[data-scheme="inverse"] .freelancer-primary-button {
  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-786[data-scheme="dark"] .freelancer-main-result,
body.postid-786[data-scheme="inverse"] .freelancer-main-result {
  color: #f7ebd8 !important;
  background: #233c43 !important;
  border-color: #a98b6b !important;
  box-shadow: inset 0 0 0 1px rgba(240, 223, 197, 0.10) !important;
}

body.postid-786[data-scheme="dark"] .freelancer-card:not(.is-calculated) .freelancer-main-result,
body.postid-786[data-scheme="inverse"] .freelancer-card:not(.is-calculated) .freelancer-main-result,
body.postid-786[data-scheme="dark"] .freelancer-result-row,
body.postid-786[data-scheme="inverse"] .freelancer-result-row,
body.postid-786[data-scheme="dark"] .freelancer-copy-button,
body.postid-786[data-scheme="inverse"] .freelancer-copy-button {
  color: #f7ebd8 !important;
  background: #241c15 !important;
  border-color: #725b46 !important;
  box-shadow: none !important;
}

body.postid-786[data-scheme="dark"] .freelancer-big-number,
body.postid-786[data-scheme="inverse"] .freelancer-big-number,
body.postid-786[data-scheme="dark"] .freelancer-result-row span:last-child,
body.postid-786[data-scheme="inverse"] .freelancer-result-row span:last-child,
body.postid-786[data-scheme="dark"] .freelancer-info-card strong,
body.postid-786[data-scheme="inverse"] .freelancer-info-card strong {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
}

body.postid-786[data-scheme="dark"] .freelancer-warning-box,
body.postid-786[data-scheme="inverse"] .freelancer-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-786[data-scheme="dark"] .freelancer-warning-box p,
body.postid-786[data-scheme="inverse"] .freelancer-warning-box p {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

@media (max-width: 980px) {
  body.postid-786 .cs-breadcrumbs,
  body.postid-786 .cs-entry__header,
  body.postid-786 .entry-content > .wp-block-group,
  body.postid-786 .entry-content > .wp-block-buttons,
  body.postid-786 .freelancer-calculator-wrapper {
    width: min(950px, calc(100vw - 20px)) !important;
  }

  body.postid-786 .freelancer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.postid-786 .freelancer-card[data-panel="vat"] {
    grid-column: 1 / -1 !important;
  }

  body.postid-786 .freelancer-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.postid-786 .freelancer-quick-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body.postid-786 .cs-breadcrumbs,
  body.postid-786 .cs-entry__header,
  body.postid-786 .entry-content > .wp-block-group,
  body.postid-786 .entry-content > .wp-block-buttons,
  body.postid-786 .freelancer-calculator-wrapper {
    width: calc(100vw - 10px) !important;
    max-width: calc(100vw - 10px) !important;
    margin-left: 50% !important;
    margin-right: 0 !important;
    transform: translateX(-50%) !important;
  }

  body.postid-786 .freelancer-calculator-container {
    padding: 9px !important;
    border-width: 1px !important;
    box-shadow: 3px 3px 0 rgba(72, 55, 40, 0.18) !important;
  }

  body.postid-786 .calculator-header {
    gap: 4px !important;
    margin-bottom: 8px !important;
    padding-bottom: 8px !important;
  }

  body.postid-786 .tax-mode-panel,
  body.postid-786 .freelancer-quick-actions,
  body.postid-786 .freelancer-main,
  body.postid-786 .freelancer-info-grid,
  body.postid-786 .freelancer-detail-results {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  body.postid-786 .freelancer-quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.postid-786 .freelancer-card[data-panel="vat"] {
    grid-column: auto !important;
  }

  body.postid-786 .freelancer-card,
  body.postid-786 .freelancer-info-section {
    padding: 9px !important;
  }

  body.postid-786 .section-title {
    margin-bottom: 0 !important;
    padding-bottom: 7px !important;
    font-size: 14.5px !important;
  }

  body.postid-786 .money-input,
  body.postid-786 .input-unit,
  body.postid-786 .tax-mode-button,
  body.postid-786 .freelancer-primary-button {
    min-height: 38px !important;
  }

  body.postid-786 .freelancer-card:not(.is-calculated) .freelancer-main-result {
    min-height: 110px !important;
  }
}

@media (max-width: 380px) {
  body.postid-786 .freelancer-calculator-container {
    padding: 8px !important;
  }

  body.postid-786 .freelancer-quick-actions {
    gap: 5px !important;
  }
}

/* v5 verifier tightening: make mapped components computed-match the date reference gate. */
body.postid-786 .freelancer-preset,
body.postid-786 .freelancer-secondary-action {
  padding-left: 10px !important;
  padding-right: 10px !important;
  font-size: 13.5px !important;
  line-height: 1.1 !important;
}

body.postid-786 .section-title {
  margin-bottom: 10px !important;
}

body.postid-786 .freelancer-card:not(.is-calculated) .freelancer-main-result {
  color: var(--fc-muted) !important;
  -webkit-text-fill-color: var(--fc-muted) !important;
  box-shadow: none !important;
}

body.postid-786 .freelancer-info-section {
  display: block !important;
}

body.postid-786 .freelancer-info-grid {
  margin-bottom: 10px !important;
}

body.postid-786 .freelancer-info-card {
  color: var(--fc-muted) !important;
  -webkit-text-fill-color: var(--fc-muted) !important;
  font-size: 13.5px !important;
  line-height: 1.62 !important;
  font-weight: 650 !important;
}

@media (max-width: 640px) {
  body.postid-786 .entry-content article#freelancer-tax-guide.roberin-article-body.freelancer-article,
  body.postid-786[data-scheme] .entry-content article#freelancer-tax-guide.roberin-article-body.freelancer-article {
    margin-top: 24px !important;
  }
}

/* v6 verifier tightening: empty-state dark text follows date-reference muted cream. */
body.postid-786[data-scheme="dark"] .freelancer-card:not(.is-calculated) .freelancer-main-result,
body.postid-786[data-scheme="inverse"] .freelancer-card:not(.is-calculated) .freelancer-main-result {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}
