/* ROBERIN fee per character calculator redesign + Phase 2 body - 2026-05-15 */
body.postid-1703 {
  --fpc-paper: #fff7e8;
  --fpc-paper-soft: #fbf0dc;
  --fpc-panel: #fffdf7;
  --fpc-ink: #2b2119;
  --fpc-muted: #67584a;
  --fpc-line: #6b5745;
  --fpc-line-soft: rgba(107, 87, 69, 0.26);
  --fpc-green: #e3efd2;
  --fpc-green-ink: #2f4e2e;
  --fpc-amber: #f7df9d;
  --fpc-amber-strong: #d2aa55;
  --fpc-red: #a43e2d;
  --fpc-focus: #4f7d94;
  --fpc-shadow: 4px 4px 0 rgba(72, 55, 40, 0.22);
  --fpc-shadow-soft: 2px 2px 0 rgba(72, 55, 40, 0.14);
  background:
    linear-gradient(90deg, rgba(107, 87, 69, 0.025) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(0deg, rgba(107, 87, 69, 0.022) 1px, transparent 1px) 0 0 / 18px 18px,
    #faf2e8;
}

body.postid-1703 .cs-site-content > .cs-container,
body.postid-1703 .cs-main-content,
body.postid-1703 .cs-content-area,
body.postid-1703 .cs-entry__container,
body.postid-1703 .cs-entry__content-wrap {
  width: 100%;
  max-width: none;
}

body.postid-1703 .cs-breadcrumbs,
body.postid-1703 .cs-entry__header,
body.postid-1703 .fee-per-character-wrapper,
body.postid-1703 .fee-per-character-ad,
body.postid-1703 .entry-content > .wp-block-group.content1,
body.postid-1703 .entry-content article.roberin-article-body.fee-article {
  width: min(980px, calc(100vw - 32px));
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

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

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

.fee-per-character-wrapper,
.fee-per-character-wrapper *,
.fee-per-character-wrapper *::before,
.fee-per-character-wrapper *::after {
  box-sizing: border-box;
}

.fee-per-character-wrapper {
  margin-top: 0;
  margin-bottom: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: var(--fpc-ink);
}

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

.fee-per-character-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;
}

.fee-per-character-calculator-container button,
.fee-per-character-calculator-container input,
.fee-per-character-calculator-container textarea {
  font: inherit;
}

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

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

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

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

.btn-quick,
.btn-reset {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--fpc-ink);
  background: var(--fpc-panel);
  border: 1px solid var(--fpc-line);
  border-radius: 0;
  box-shadow: var(--fpc-shadow-soft);
  font-weight: 850;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease, color 120ms ease;
}

.btn-quick:hover,
.btn-reset:hover,
.btn-quick:focus-visible,
.btn-reset:focus-visible {
  color: #241c15;
  background: var(--fpc-amber);
  outline: 2px solid var(--fpc-focus);
  outline-offset: 2px;
}

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

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

.input-section,
.result-section,
.info-card {
  min-width: 0;
  color: var(--fpc-ink);
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid var(--fpc-line);
  border-radius: 0;
  box-shadow: var(--fpc-shadow-soft);
}

.input-section,
.result-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--fpc-ink);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.input-group {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.input-group label {
  color: var(--fpc-ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
}

.input-group--text textarea {
  min-height: 128px;
  width: 100%;
  resize: vertical;
}

.input-with-unit {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.fee-per-character-calculator-container input,
.fee-per-character-calculator-container textarea {
  width: 100%;
  min-width: 0;
  padding: 9px 10px;
  color: var(--fpc-ink);
  -webkit-text-fill-color: var(--fpc-ink);
  background: #fffaf0;
  border: 1px solid var(--fpc-line);
  border-radius: 0;
  box-shadow: inset 1px 1px 0 rgba(107, 87, 69, 0.12);
  font-size: 15px;
  line-height: 1.45;
}

.fee-per-character-calculator-container input {
  height: 42px;
  text-align: right;
  font-weight: 850;
  letter-spacing: .01em;
}

.fee-per-character-calculator-container input::placeholder,
.fee-per-character-calculator-container textarea::placeholder {
  color: rgba(103, 88, 74, 0.8);
  -webkit-text-fill-color: rgba(103, 88, 74, 0.8);
  font-weight: 650;
}

.fee-per-character-calculator-container input:focus,
.fee-per-character-calculator-container textarea:focus {
  outline: 2px solid var(--fpc-focus);
  outline-offset: 2px;
  background: #fff8ed;
}

.unit {
  flex: 0 0 auto;
  min-width: 34px;
  color: var(--fpc-muted);
  font-size: 13.5px;
  font-weight: 850;
  white-space: nowrap;
}

.counter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
  color: var(--fpc-muted);
  font-size: 13.5px;
  font-weight: 800;
}

.text-counter--muted {
  opacity: .8;
}

.calc-inputs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.helper-text {
  margin: 0;
  padding: 9px 10px;
  color: var(--fpc-muted);
  background: rgba(251, 240, 220, .82);
  border: 1px dashed var(--fpc-line-soft);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.5;
  word-break: keep-all;
}

.helper-text[data-type="success"] {
  color: var(--fpc-green-ink);
  background: rgba(227, 239, 210, .9);
  border-color: rgba(47, 78, 46, .35);
}

.helper-text[data-type="error"] {
  color: var(--fpc-red);
  background: rgba(255, 247, 232, .94);
  border-color: rgba(164, 62, 45, .45);
}

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

.result-display:not(.is-active) {
  display: none;
}

.main-result {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 14px 12px;
  color: var(--fpc-ink);
  background: var(--fpc-green);
  border: 2px solid var(--fpc-line);
  box-shadow: var(--fpc-shadow-soft);
  text-align: center;
}

.big-number {
  max-width: 100%;
  color: var(--fpc-ink);
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
}

.result-label,
.result-label-text {
  color: var(--fpc-muted);
  font-size: 13px;
  font-weight: 850;
}

.detail-results {
  display: grid;
  gap: 8px;
}

.result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  padding: 9px 10px;
  color: var(--fpc-ink);
  background: var(--fpc-panel);
  border: 1px solid var(--fpc-line);
}

.result-value {
  min-width: 0;
  color: var(--fpc-ink);
  font-weight: 900;
  text-align: right;
  overflow-wrap: anywhere;
}

.no-result {
  margin-top: auto;
  padding: 10px;
  color: var(--fpc-muted);
  background: rgba(251, 240, 220, .82);
  border: 1px dashed var(--fpc-line-soft);
  font-size: 14px;
  font-weight: 750;
}

.no-result p {
  margin: 0;
}

.info-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.info-card {
  display: grid;
  gap: 4px;
  padding: 10px;
  font-size: 13.5px;
  line-height: 1.45;
}

.info-card strong {
  color: var(--fpc-ink);
  font-weight: 950;
}

.info-card span {
  color: var(--fpc-muted);
  font-weight: 700;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  max-width: min(320px, calc(100vw - 32px));
  padding: 10px 12px;
  color: #241c15;
  background: var(--fpc-amber);
  border: 1px solid var(--fpc-line);
  box-shadow: var(--fpc-shadow);
  font-size: 14px;
  font-weight: 850;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast.success {
  background: var(--fpc-green);
}

.toast.error {
  color: #fff7e8;
  background: var(--fpc-red);
}

.fee-per-character-ad {
  display: block;
  box-sizing: border-box;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 0 !important;
  overflow: hidden;
  text-align: center;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.fee-per-character-ad--after-tool + .wp-block-group.content1 {
  margin-top: 0 !important;
}

.fee-per-character-ad ins.adsbygoogle,
.fee-per-character-ad iframe[id^="aswift"],
.fee-per-character-ad iframe[name^="aswift"] {
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: hidden !important;
}

body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) {
  --fpc-paper: #2b2119;
  --fpc-paper-soft: #33271d;
  --fpc-panel: #33271d;
  --fpc-ink: #f2e4cf;
  --fpc-muted: #f0dfc5;
  --fpc-line: #a98b6b;
  --fpc-line-soft: rgba(169, 139, 107, .34);
  --fpc-green: #344a32;
  --fpc-green-ink: #f2e4cf;
  --fpc-amber: #d2aa55;
  --fpc-red: #e89987;
  --fpc-focus: #d2aa55;
  --fpc-shadow: 4px 4px 0 rgba(0, 0, 0, 0.28);
  --fpc-shadow-soft: 2px 2px 0 rgba(0, 0, 0, 0.22);
  background:
    linear-gradient(rgba(229, 196, 139, 0.055) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(90deg, rgba(229, 196, 139, 0.045) 1px, transparent 1px) 0 0 / 18px 18px,
    #201811;
}

body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-per-character-calculator-container::before {
  background:
    linear-gradient(rgba(229, 196, 139, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 196, 139, 0.055) 1px, transparent 1px);
  background-size: 20px 20px;
}

body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .input-section,
body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .result-section,
body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .info-card {
  background: rgba(51, 39, 29, .9);
}

body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-per-character-calculator-container input,
body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-per-character-calculator-container textarea {
  color: #f2e4cf;
  -webkit-text-fill-color: #f2e4cf;
  background: #241c15;
  border-color: #a98b6b;
  box-shadow: inset 1px 1px 0 rgba(169, 139, 107, .16);
}

body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-per-character-calculator-container input::placeholder,
body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-per-character-calculator-container textarea::placeholder {
  color: rgba(240, 223, 197, .72);
  -webkit-text-fill-color: rgba(240, 223, 197, .72);
}

body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .main-result {
  color: #f2e4cf;
  background: #344a32;
}

body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .helper-text,
body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .no-result {
  background: rgba(36, 28, 21, .72);
}

@media (prefers-color-scheme: dark) {
  body.postid-1703[data-scheme="auto"] {
    --fpc-paper: #2b2119;
    --fpc-paper-soft: #33271d;
    --fpc-panel: #33271d;
    --fpc-ink: #f2e4cf;
    --fpc-muted: #f0dfc5;
    --fpc-line: #a98b6b;
    --fpc-line-soft: rgba(169, 139, 107, .34);
    --fpc-green: #344a32;
    --fpc-green-ink: #f2e4cf;
    --fpc-amber: #d2aa55;
    --fpc-red: #e89987;
    --fpc-focus: #d2aa55;
    --fpc-shadow: 4px 4px 0 rgba(0, 0, 0, 0.28);
    --fpc-shadow-soft: 2px 2px 0 rgba(0, 0, 0, 0.22);
    background:
      linear-gradient(rgba(229, 196, 139, 0.055) 1px, transparent 1px) 0 0 / 18px 18px,
      linear-gradient(90deg, rgba(229, 196, 139, 0.045) 1px, transparent 1px) 0 0 / 18px 18px,
      #201811;
  }
}

@media (max-width: 860px) {
  .calculator-main,
  .info-section {
    grid-template-columns: 1fr;
  }

  .calc-inputs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body.postid-1703 .cs-breadcrumbs,
  body.postid-1703 .cs-entry__header,
  body.postid-1703 .fee-per-character-wrapper,
  body.postid-1703 .fee-per-character-ad,
  body.postid-1703 .entry-content > .wp-block-group.content1,
  body.postid-1703 .entry-content article.roberin-article-body.fee-article {
    width: min(100%, calc(100vw - 20px));
  }

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

  .quick-actions {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .input-section,
  .result-section {
    padding: 10px;
  }

  .input-group--text textarea {
    min-height: 112px;
  }

  .result-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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

  .big-number {
    font-size: clamp(28px, 11vw, 38px);
  }

  .fee-per-character-ad {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* Keep the after-tool ad visually centered between the tool and the existing Phase 1 body. */
body.postid-1703 .entry-content > .fee-per-character-ad--after-tool + .wp-block-group.content1 {
  margin-top: 24px !important;
}

@media (max-width: 520px) {
  body.postid-1703 .entry-content > .fee-per-character-ad--after-tool + .wp-block-group.content1 {
    margin-top: 8px !important;
  }
}

/* ROBERIN fee per character calculator - Phase 2 body/article and ad flow */
body.postid-1703 {
  --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-1703:is([data-scheme="dark"], [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-1703 .entry-content > .fee-per-character-ad--after-tool {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

body.postid-1703 .entry-content > .fee-per-character-ad--after-tool + article.roberin-article-body.fee-article {
  margin-top: 0 !important;
}

body.postid-1703 .entry-content article.roberin-article-body.fee-article,
body.postid-1703 .fee-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 28px !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-1703 .fee-article,
body.postid-1703 .fee-article *,
body.postid-1703 .fee-article *::before,
body.postid-1703 .fee-article *::after {
  box-sizing: border-box !important;
  min-width: 0 !important;
}

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

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

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

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

body.postid-1703 .fee-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-1703 .fee-article h2,
body.postid-1703 .fee-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-1703 .fee-article h2 {
  font-size: clamp(25px, 3vw, 30px) !important;
  font-weight: 950 !important;
  line-height: 1.18 !important;
}

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

body.postid-1703 .fee-article p,
body.postid-1703 .fee-article li,
body.postid-1703 .fee-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-1703 .fee-article strong {
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  font-weight: 920 !important;
}

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

body.postid-1703 .fee-article__nav a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  padding: 6px 10px !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !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-1703 .fee-article__nav a:hover,
body.postid-1703 .fee-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-1703 .fee-article__grid,
body.postid-1703 .fee-article__process-grid,
body.postid-1703 .fee-article__use-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  min-width: 0 !important;
}

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

body.postid-1703 .fee-article__card,
body.postid-1703 .fee-article__process,
body.postid-1703 .fee-article__use,
body.postid-1703 .fee-article__notice,
body.postid-1703 .fee-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-1703 .fee-article__notice {
  background: rgba(239, 225, 188, .64) !important;
  border-style: dashed !important;
}

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

body.postid-1703 .fee-article__use span,
body.postid-1703 .fee-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-1703 .fee-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: .92em !important;
  font-weight: 780 !important;
  line-height: 1.48 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

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

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

body.postid-1703 .fee-article :is(ul, ol) > li {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  gap: 15px !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-1703 .fee-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(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  border-radius: 0 !important;
}

body.postid-1703 .fee-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-1703 .fee-article ol > li,
body.postid-1703 .fee-article ol.fee-article__steps > li {
  counter-increment: pdf-article-step !important;
}

body.postid-1703 .fee-article ol > li::before,
body.postid-1703 .fee-article ol.fee-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-1703 .fee-article__li-text {
  display: block !important;
  min-width: 0 !important;
  align-self: center !important;
}

body.postid-1703 .fee-article details {
  margin: 0 !important;
}

body.postid-1703 .fee-article summary {
  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;
}

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

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

body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .entry-content article.roberin-article-body.fee-article,
body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-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-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-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-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-article :is(p, li, span) {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-article__card,
body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-article__process,
body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-article__use,
body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-article__notice,
body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-article details,
body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-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-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-article__notice,
body.postid-1703:is([data-scheme="dark"], [data-scheme="inverse"]) .fee-article__process {
  background-color: rgba(36, 28, 21, .56) !important;
}

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

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

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

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

  body.postid-1703 .entry-content > .fee-per-character-ad--after-tool {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

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

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

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