.salary-rec-tool,
.salary-rec-tool * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.salary-rec-tool {
  --salary-rec-shell: #faf2e8;
  --salary-rec-paper: #fff7e8;
  --salary-rec-panel: #fffdf7;
  --salary-rec-input: #fffaf1;
  --salary-rec-line: #604c3d;
  --salary-rec-soft-line: rgba(96, 76, 61, .25);
  --salary-rec-ink: #2b2119;
  --salary-rec-muted: #725f50;
  --salary-rec-cta: #f2e3d3;
  --salary-rec-green: #e3efd2;
  --salary-rec-amber: #f7df9d;
  --salary-rec-shadow: 4px 4px 0 var(--salary-rec-line);
  --salary-rec-shadow-soft: 3px 3px 0 rgba(96, 76, 61, .28);
  width: min(100%, 980px);
  margin: 24px auto;
  overflow: hidden;
  border: 2px solid var(--salary-rec-line);
  border-radius: 0;
  background-color: var(--salary-rec-shell);
  background-image:
    linear-gradient(rgba(96, 76, 61, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 76, 61, .06) 1px, transparent 1px);
  background-size: 16px 16px;
  box-shadow: var(--salary-rec-shadow);
  color: var(--salary-rec-ink);
  font-family: "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
}

.salary-rec-tool button,
.salary-rec-tool input,
.salary-rec-tool select {
  font: inherit;
}

.salary-rec-tool h2,
.salary-rec-tool h3,
.salary-rec-tool p {
  margin: 0;
}

.salary-rec-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px 15px;
  border-bottom: 2px solid var(--salary-rec-line);
  background:
    linear-gradient(90deg, rgba(255, 253, 247, .99), rgba(255, 249, 238, .98) 64%, rgba(247, 223, 157, .3)),
    var(--salary-rec-paper);
}

.salary-rec-kicker {
  margin: 0 0 7px;
  color: var(--salary-rec-muted);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.salary-rec-title h2 {
  color: var(--salary-rec-ink);
  font-size: 23px;
  font-weight: 950;
  line-height: 1.15;
  word-break: keep-all;
}

.salary-rec-title p:last-child {
  margin-top: 5px;
  color: var(--salary-rec-muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.42;
  word-break: keep-all;
}

.salary-rec-badge {
  display: inline-grid;
  min-height: 32px;
  place-items: center;
  padding: 6px 9px;
  border: 1px solid var(--salary-rec-line);
  background: var(--salary-rec-panel);
  color: var(--salary-rec-ink);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.salary-rec-layout {
  display: grid;
  grid-template-columns: 392px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 12px;
}

.salary-rec-form-stack,
.salary-rec-result-stack {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 10px;
}

.salary-rec-result-stack {
  grid-template-rows: auto auto minmax(0, 1fr);
}

.salary-rec-panel {
  min-width: 0;
  border: 2px solid var(--salary-rec-line);
  border-radius: 0;
  background: var(--salary-rec-panel);
  box-shadow: var(--salary-rec-shadow-soft);
}

.salary-rec-panel-head {
  display: flex;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
  padding: 9px 11px;
  border-bottom: 1px solid var(--salary-rec-line);
  background: rgba(255, 247, 232, .78);
}

.salary-rec-panel-head h3 {
  color: var(--salary-rec-ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.1;
  white-space: nowrap;
}

.salary-rec-panel-head p {
  color: var(--salary-rec-muted);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.3;
  text-align: right;
  word-break: keep-all;
}

.salary-rec-panel-body {
  padding: 11px;
}

.salary-rec-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.salary-rec-tabs + .salary-rec-tabs {
  margin-top: 8px;
}

.salary-rec-choice {
  min-width: 0;
}

.salary-rec-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.salary-rec-choice span,
.salary-rec-button,
.salary-rec-stepper-btn {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--salary-rec-line);
  border-radius: 0;
  background: var(--salary-rec-panel);
  box-shadow: 2px 2px 0 rgba(96, 76, 61, .25);
  color: var(--salary-rec-ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.salary-rec-choice.is-active span,
.salary-rec-choice input:checked + span,
.salary-rec-button--primary {
  border-width: 2px;
  background: var(--salary-rec-cta);
}

.salary-rec-choice input:focus-visible + span,
.salary-rec-button:focus-visible,
.salary-rec-stepper-btn:focus-visible,
.salary-rec-tool input:focus,
.salary-rec-tool select:focus {
  outline: 2px solid var(--salary-rec-amber);
  outline-offset: 2px;
}

.salary-rec-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 9px;
}

.salary-rec-field {
  display: grid;
  grid-template-rows: 15px 36px 15px;
  gap: 5px;
  min-width: 0;
  padding: 8px;
  border: 1px solid var(--salary-rec-line);
  border-radius: 0;
  background: var(--salary-rec-input);
}

.salary-rec-field--full {
  grid-column: 1 / -1;
}

.salary-rec-label {
  overflow: hidden;
  color: var(--salary-rec-muted);
  font-size: 11px;
  font-weight: 950;
  line-height: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.salary-rec-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  min-width: 0;
  height: 36px;
  border: 1px solid var(--salary-rec-line);
  background: #fffdf8;
}

.salary-rec-input-row input,
.salary-rec-stepper input {
  min-width: 0;
  width: 100%;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--salary-rec-ink);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  line-height: 34px;
  outline: 0;
  white-space: nowrap;
}

.salary-rec-input-row input {
  padding: 0 8px;
  text-align: right;
}

.salary-rec-input-row input::placeholder {
  color: rgba(114, 95, 80, .45);
}

.salary-rec-input-row span {
  display: grid;
  min-width: 34px;
  place-items: center;
  padding: 0 8px;
  border-left: 1px solid var(--salary-rec-line);
  color: var(--salary-rec-muted);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.salary-rec-field-meta {
  min-height: 15px;
  overflow: hidden;
  color: var(--salary-rec-muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.salary-rec-stepper {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  height: 36px;
  border: 1px solid var(--salary-rec-line);
  background: #fffdf8;
}

.salary-rec-stepper input {
  border-right: 1px solid var(--salary-rec-line);
  border-left: 1px solid var(--salary-rec-line);
  text-align: center;
}

.salary-rec-stepper-btn {
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 16px;
}

.salary-rec-button-row {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.salary-rec-main-result {
  display: grid;
  min-width: 0;
  min-height: 132px;
  align-content: center;
  justify-items: center;
  padding: 14px 12px;
  border: 2px solid var(--salary-rec-line);
  background: var(--salary-rec-green);
  text-align: center;
}

.salary-rec-main-result span {
  color: var(--salary-rec-muted);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.15;
  white-space: nowrap;
}

.salary-rec-main-value,
.salary-rec-summary strong,
.salary-rec-result-row em,
.salary-rec-result-row strong {
  font-variant-numeric: tabular-nums;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.salary-rec-main-value {
  max-width: 100%;
  margin-top: 6px;
  overflow: hidden;
  color: var(--salary-rec-ink);
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
  text-overflow: clip;
}

.salary-rec-main-result small {
  margin-top: 7px;
  color: var(--salary-rec-muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
  white-space: nowrap;
}

.salary-rec-main-result small strong {
  color: var(--salary-rec-ink);
  font-weight: 950;
}

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

.salary-rec-summary {
  display: grid;
  min-width: 0;
  min-height: 64px;
  place-items: center;
  padding: 8px 7px;
  border: 1px solid var(--salary-rec-line);
  background: var(--salary-rec-panel);
  text-align: center;
}

.salary-rec-summary span {
  color: var(--salary-rec-muted);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.15;
  white-space: nowrap;
}

.salary-rec-summary strong {
  max-width: 100%;
  margin-top: 5px;
  overflow: hidden;
  color: var(--salary-rec-ink);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.05;
  text-overflow: ellipsis;
}

.salary-rec-result-list {
  display: grid;
  border: 1px solid var(--salary-rec-line);
  background: #fffdf8;
}

.salary-rec-result-row {
  display: grid;
  grid-template-columns: minmax(78px, .75fr) 54px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 33px;
  padding: 7px 9px;
  border-bottom: 1px solid var(--salary-rec-soft-line);
  color: var(--salary-rec-muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.salary-rec-result-row em {
  min-width: 0;
  color: var(--salary-rec-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  text-align: right;
}

.salary-rec-result-row:last-child {
  border-bottom: 0;
}

.salary-rec-result-row strong {
  min-width: 0;
  overflow: hidden;
  color: var(--salary-rec-ink);
  font-size: 13px;
  font-weight: 950;
  text-align: right;
  text-overflow: ellipsis;
}

.salary-rec-tool .salary-rec-choice span,
.salary-rec-tool .salary-rec-button,
.salary-rec-tool .salary-rec-stepper-btn {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
}

.salary-rec-note-strip {
  margin: 0;
  padding: 9px 10px;
  border: 1px solid var(--salary-rec-line);
  background: rgba(247, 223, 157, .35);
  color: var(--salary-rec-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.45;
  word-break: keep-all;
}

html[data-theme="dark"] .salary-rec-tool,
body.dark-mode .salary-rec-tool,
body:is([data-scheme="dark"], [data-scheme="inverse"]) .salary-rec-tool,
html:is([data-scheme="dark"], [data-scheme="inverse"]) body .salary-rec-tool {
  --salary-rec-shell: #241b16;
  --salary-rec-paper: #2c211a;
  --salary-rec-panel: #33261d;
  --salary-rec-input: #2a211b;
  --salary-rec-line: #d9c3a5;
  --salary-rec-soft-line: rgba(217, 195, 165, .34);
  --salary-rec-ink: #f8ebd4;
  --salary-rec-muted: #d6c3aa;
  --salary-rec-cta: #8d6b4f;
  --salary-rec-green: #405233;
  --salary-rec-amber: #83632e;
  --salary-rec-shadow: 4px 4px 0 rgba(217, 195, 165, .55);
  --salary-rec-shadow-soft: 3px 3px 0 rgba(217, 195, 165, .25);
}

html[data-theme="dark"] .salary-rec-title,
body.dark-mode .salary-rec-title,
body:is([data-scheme="dark"], [data-scheme="inverse"]) .salary-rec-title,
html:is([data-scheme="dark"], [data-scheme="inverse"]) body .salary-rec-title {
  background:
    linear-gradient(90deg, rgba(48, 36, 27, .99), rgba(54, 41, 31, .98) 64%, rgba(131, 99, 46, .35)),
    var(--salary-rec-paper);
}

html[data-theme="dark"] .salary-rec-panel-head,
body.dark-mode .salary-rec-panel-head,
body:is([data-scheme="dark"], [data-scheme="inverse"]) .salary-rec-panel-head,
html:is([data-scheme="dark"], [data-scheme="inverse"]) body .salary-rec-panel-head {
  background: rgba(58, 43, 31, .95);
}

html[data-theme="dark"] .salary-rec-note-strip,
body.dark-mode .salary-rec-note-strip,
body:is([data-scheme="dark"], [data-scheme="inverse"]) .salary-rec-note-strip,
html:is([data-scheme="dark"], [data-scheme="inverse"]) body .salary-rec-note-strip {
  background: rgba(131, 99, 46, .28);
}

html[data-theme="dark"] .salary-rec-input-row,
html[data-theme="dark"] .salary-rec-stepper,
html[data-theme="dark"] .salary-rec-result-list,
body.dark-mode .salary-rec-input-row,
body.dark-mode .salary-rec-stepper,
body.dark-mode .salary-rec-result-list,
body:is([data-scheme="dark"], [data-scheme="inverse"]) .salary-rec-input-row,
body:is([data-scheme="dark"], [data-scheme="inverse"]) .salary-rec-stepper,
body:is([data-scheme="dark"], [data-scheme="inverse"]) .salary-rec-result-list,
html:is([data-scheme="dark"], [data-scheme="inverse"]) body .salary-rec-input-row,
html:is([data-scheme="dark"], [data-scheme="inverse"]) body .salary-rec-stepper,
html:is([data-scheme="dark"], [data-scheme="inverse"]) body .salary-rec-result-list {
  background: #2b2119;
}
html[data-theme="dark"] .salary-rec-choice.is-active span,
html[data-theme="dark"] .salary-rec-choice input:checked + span,
html[data-theme="dark"] .salary-rec-button--primary,
body.dark-mode .salary-rec-choice.is-active span,
body.dark-mode .salary-rec-choice input:checked + span,
body.dark-mode .salary-rec-button--primary,
body:is([data-scheme="dark"], [data-scheme="inverse"]) .salary-rec-choice.is-active span,
body:is([data-scheme="dark"], [data-scheme="inverse"]) .salary-rec-choice input:checked + span,
body:is([data-scheme="dark"], [data-scheme="inverse"]) .salary-rec-button--primary,
html:is([data-scheme="dark"], [data-scheme="inverse"]) body .salary-rec-choice.is-active span,
html:is([data-scheme="dark"], [data-scheme="inverse"]) body .salary-rec-choice input:checked + span,
html:is([data-scheme="dark"], [data-scheme="inverse"]) body .salary-rec-button--primary {
  background: #e4c492;
  color: #241b16;
  -webkit-text-fill-color: #241b16;
}

@media (max-width: 920px) {
  .salary-rec-title,
  .salary-rec-layout {
    grid-template-columns: 1fr;
  }

  .salary-rec-tool {
    width: min(100%, 820px);
  }
}

@media (max-width: 640px) {
  .salary-rec-tool {
    width: calc(100% - 20px);
    margin: 18px auto;
  }

  .salary-rec-layout {
    padding: 10px;
  }

  .salary-rec-field-grid,
  .salary-rec-tabs,
  .salary-rec-button-row,
  .salary-rec-summary-grid {
    grid-template-columns: 1fr;
  }

  .salary-rec-title {
    align-items: start;
  }

  .salary-rec-title h2 {
    font-size: 21px;
  }

  .salary-rec-main-value {
    font-size: 31px;
  }

  .salary-rec-main-result small,
  .salary-rec-main-result span {
    white-space: normal;
  }

  .salary-rec-panel-head {
    display: grid;
  }

  .salary-rec-panel-head p {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .salary-rec-tool {
    width: calc(100% - 16px);
  }

  .salary-rec-main-value {
    font-size: 28px;
  }

  .salary-rec-result-row {
    grid-template-columns: minmax(68px, .74fr) 48px minmax(0, 1fr);
    gap: 7px;
    padding-right: 8px;
    padding-left: 8px;
  }
}

body.postid-1007 .entry-content > article.roberin-article-body.salary-body-article,
body.postid-1007 .entry-content article.roberin-article-body.salary-body-article {
  --salary-body-paper: #f8efe2;
  --salary-body-card: #fffaf1;
  --salary-body-card-strong: #fffdf7;
  --salary-body-ink: #34281f;
  --salary-body-muted: #6b5745;
  --salary-body-line: #6b5745;
  --salary-body-line-soft: rgba(107, 87, 69, .28);
  --salary-body-grid: rgba(107, 87, 69, .052);
  --salary-body-green: #e3efd2;
  --salary-body-blue: #dfeef8;
  --salary-body-amber: #f7df9d;
  --salary-body-shadow: 5px 5px 0 rgba(82, 65, 50, .2);
  --salary-body-shadow-tight: 3px 3px 0 rgba(82, 65, 50, .16);

  box-sizing: border-box !important;
  width: min(100% - 32px, 980px) !important;
  max-width: 980px !important;
  margin: 30px auto 42px !important;
  padding: 28px !important;
  overflow-wrap: break-word !important;
  color: var(--salary-body-ink) !important;
  background:
    linear-gradient(var(--salary-body-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--salary-body-grid) 1px, transparent 1px),
    var(--salary-body-paper) !important;
  background-size: 18px 18px, 18px 18px, auto !important;
  border: 2px solid var(--salary-body-line) !important;
  border-radius: 0 !important;
  box-shadow: var(--salary-body-shadow) !important;
  font-family: "Noto Sans KR", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
  letter-spacing: 0 !important;
  word-break: keep-all !important;
}

body.postid-1007 .salary-body-article,
body.postid-1007 .salary-body-article *,
body.postid-1007 .salary-body-article *::before,
body.postid-1007 .salary-body-article *::after {
  box-sizing: border-box !important;
  letter-spacing: 0 !important;
}

body.postid-1007 .salary-body-article :where(h2, h3, h4, p, ul, ol, li) {
  margin: 0 !important;
}

body.postid-1007 .salary-body-article__hero {
  padding: 0 0 20px !important;
  border-bottom: 1px dashed var(--salary-body-line-soft) !important;
}

body.postid-1007 .salary-body-article__section {
  padding: 22px 0 0 !important;
}

body.postid-1007 .salary-body-article__section + .salary-body-article__section {
  margin-top: 22px !important;
  border-top: 1px dashed var(--salary-body-line-soft) !important;
}

body.postid-1007 .salary-body-article__kicker {
  display: inline-block !important;
  margin: 0 0 9px !important;
  padding: 5px 8px !important;
  color: var(--salary-body-muted) !important;
  background: var(--salary-body-amber) !important;
  border: 1px solid var(--salary-body-line) !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
}

body.postid-1007 .salary-body-article h2 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--salary-body-ink) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 28px !important;
  font-weight: 950 !important;
  line-height: 1.24 !important;
  word-break: keep-all !important;
}

body.postid-1007 .salary-body-article h3 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--salary-body-ink) !important;
  border: 0 !important;
  font-size: 18px !important;
  font-weight: 950 !important;
  line-height: 1.34 !important;
}

body.postid-1007 .salary-body-article p,
body.postid-1007 .salary-body-article li,
body.postid-1007 .salary-body-article summary {
  color: var(--salary-body-muted) !important;
  font-size: 15px !important;
  font-weight: 720 !important;
  line-height: 1.72 !important;
  word-break: keep-all !important;
}

body.postid-1007 .salary-body-article strong {
  color: var(--salary-body-ink) !important;
  font-weight: 950 !important;
}

body.postid-1007 .salary-body-article__hero > p:not(.salary-body-article__kicker),
body.postid-1007 .salary-body-article__section > p {
  max-width: 860px !important;
  margin-top: 10px !important;
}

body.postid-1007 .salary-body-article__nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 16px !important;
  position: static !important;
}

body.postid-1007 .salary-body-article__nav a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  padding: 7px 10px !important;
  color: var(--salary-body-ink) !important;
  background: var(--salary-body-card) !important;
  border: 1px solid var(--salary-body-line) !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0 rgba(82, 65, 50, .14) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1.15 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

body.postid-1007 .salary-body-article__grid,
body.postid-1007 .salary-body-article__formula-grid,
body.postid-1007 .salary-body-article__walkthrough,
body.postid-1007 .salary-body-article__source-list,
body.postid-1007 .salary-body-article__faq-list {
  display: grid !important;
  gap: 10px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin-top: 16px !important;
}

body.postid-1007 .salary-body-article__grid,
body.postid-1007 .salary-body-article__formula-grid,
body.postid-1007 .salary-body-article__walkthrough {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

body.postid-1007 .salary-body-article__card,
body.postid-1007 .salary-body-article__formula,
body.postid-1007 .salary-body-article__walk-step,
body.postid-1007 .salary-body-article__source-list a,
body.postid-1007 .salary-body-article__notice,
body.postid-1007 .salary-body-article details {
  min-width: 0 !important;
  color: var(--salary-body-muted) !important;
  background: var(--salary-body-card) !important;
  border: 1px solid var(--salary-body-line) !important;
  border-radius: 0 !important;
  box-shadow: var(--salary-body-shadow-tight) !important;
}

body.postid-1007 .salary-body-article__card,
body.postid-1007 .salary-body-article__notice {
  padding: 15px !important;
}

body.postid-1007 .salary-body-article__card p,
body.postid-1007 .salary-body-article__notice p {
  margin-top: 8px !important;
  font-size: 14px !important;
  line-height: 1.66 !important;
}

body.postid-1007 .salary-body-article__formula,
body.postid-1007 .salary-body-article__walk-step {
  padding: 13px 10px !important;
  text-align: center !important;
}

body.postid-1007 .salary-body-article__formula span,
body.postid-1007 .salary-body-article__walk-step span {
  display: block !important;
  color: var(--salary-body-muted) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
}

body.postid-1007 .salary-body-article__formula strong,
body.postid-1007 .salary-body-article__walk-step strong {
  display: block !important;
  min-width: 0 !important;
  margin-top: 7px !important;
  overflow-wrap: anywhere !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
}

body.postid-1007 .salary-body-article__walk-step.is-result {
  background: var(--salary-body-green) !important;
}

body.postid-1007 .salary-body-article__notice {
  margin-top: 16px !important;
  background: var(--salary-body-blue) !important;
}

body.postid-1007 .salary-body-article__source-list {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

body.postid-1007 .salary-body-article__source-list a {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 5px 12px !important;
  align-items: center !important;
  padding: 13px 13px 13px 14px !important;
  background: var(--salary-body-card-strong) !important;
  border-width: 2px !important;
  box-shadow: 3px 3px 0 rgba(82, 65, 50, .18) !important;
  text-decoration: none !important;
}

body.postid-1007 .salary-body-article__source-list a::after {
  content: "열기" !important;
  grid-column: 2 !important;
  grid-row: 1 / span 2 !important;
  align-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 30px !important;
  padding: 6px 10px !important;
  color: var(--salary-body-ink) !important;
  background: var(--salary-body-amber) !important;
  border: 1px solid var(--salary-body-line) !important;
  box-shadow: 2px 2px 0 rgba(82, 65, 50, .16) !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

body.postid-1007 .salary-body-article__source-list a:hover,
body.postid-1007 .salary-body-article__source-list a:focus-visible {
  color: var(--salary-body-ink) !important;
  background: var(--salary-body-card) !important;
  box-shadow: 4px 4px 0 rgba(82, 65, 50, .22) !important;
  transform: translate(-1px, -1px) !important;
}

body.postid-1007 .salary-body-article__source-list a strong {
  min-width: 0 !important;
  font-size: 14px !important;
  line-height: 1.28 !important;
}

body.postid-1007 .salary-body-article__source-list a span {
  min-width: 0 !important;
  color: var(--salary-body-muted) !important;
  font-size: 12px !important;
  font-weight: 760 !important;
  line-height: 1.48 !important;
}

body.postid-1007 .salary-body-article :where(ul, ol) {
  padding: 0 !important;
  list-style: none !important;
}

body.postid-1007 .salary-body-article li {
  position: relative !important;
  padding-left: 34px !important;
}

body.postid-1007 .salary-body-article li::before {
  content: none !important;
}

body.postid-1007 .salary-body-article__steps,
body.postid-1007 .salary-body-article__checklist {
  display: grid !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 16px 0 0 !important;
}

body.postid-1007 .salary-body-article__steps {
  counter-reset: salary-body-step !important;
}

body.postid-1007 .salary-body-article__steps > li,
body.postid-1007 .salary-body-article__checklist > li {
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: center !important;
  min-height: 0 !important;
  padding: 12px 14px !important;
  background: var(--salary-body-card) !important;
  border: 1px solid var(--salary-body-line) !important;
  box-shadow: 2px 2px 0 rgba(82, 65, 50, .12) !important;
}

body.postid-1007 .salary-body-article__steps > li {
  counter-increment: salary-body-step !important;
}

body.postid-1007 .salary-body-article__steps > li::before,
body.postid-1007 .salary-body-article__checklist > li::before {
  position: static !important;
  display: inline-grid !important;
  place-items: center !important;
  align-self: center !important;
  width: 22px !important;
  height: 22px !important;
  margin-top: 0 !important;
  color: var(--salary-body-ink) !important;
  background: var(--salary-body-amber) !important;
  border: 1px solid var(--salary-body-line) !important;
  box-shadow: 1px 1px 0 rgba(82, 65, 50, .22) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

body.postid-1007 .salary-body-article__steps > li::before {
  content: counter(salary-body-step) !important;
}

body.postid-1007 .salary-body-article__checklist > li::before {
  content: "" !important;
}

body.postid-1007 .salary-body-article__li-text {
  display: block !important;
  min-width: 0 !important;
  grid-column: 2 !important;
  align-self: center !important;
}

body.postid-1007 .salary-body-article details {
  box-shadow: none !important;
}

body.postid-1007 .salary-body-article summary {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  gap: 9px !important;
  align-items: center !important;
  padding: 12px !important;
  color: var(--salary-body-ink) !important;
  cursor: pointer !important;
  font-weight: 950 !important;
  list-style: none !important;
}

body.postid-1007 .salary-body-article summary::-webkit-details-marker {
  display: none !important;
}

body.postid-1007 .salary-body-article summary::before {
  content: "+" !important;
  display: inline-grid !important;
  place-items: center !important;
  align-self: center !important;
  width: 20px !important;
  height: 20px !important;
  margin-top: 0 !important;
  color: var(--salary-body-ink) !important;
  background: var(--salary-body-amber) !important;
  border: 1px solid var(--salary-body-line) !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

body.postid-1007 .salary-body-article details[open] summary {
  border-bottom: 1px dashed var(--salary-body-line-soft) !important;
}

body.postid-1007 .salary-body-article details[open] summary::before {
  content: "-" !important;
}

body.postid-1007 .salary-body-article details p {
  padding: 12px !important;
  font-size: 14px !important;
  line-height: 1.68 !important;
}

body.postid-1007[data-scheme="dark"] .entry-content article.roberin-article-body.salary-body-article,
body.postid-1007[data-scheme="inverse"] .entry-content article.roberin-article-body.salary-body-article,
html[data-scheme="dark"] body.postid-1007 .entry-content article.roberin-article-body.salary-body-article,
html[data-scheme="inverse"] body.postid-1007 .entry-content article.roberin-article-body.salary-body-article,
html[data-theme="dark"] body.postid-1007 .entry-content article.roberin-article-body.salary-body-article,
body.dark-mode.postid-1007 .entry-content article.roberin-article-body.salary-body-article {
  --salary-body-paper: #2b2119;
  --salary-body-card: #33271d;
  --salary-body-card-strong: #241c15;
  --salary-body-ink: #f7ebd8;
  --salary-body-muted: #ead8bd;
  --salary-body-line: #a98b6b;
  --salary-body-line-soft: rgba(169, 139, 107, .42);
  --salary-body-grid: rgba(229, 196, 139, .055);
  --salary-body-green: #344a32;
  --salary-body-blue: #233c43;
  --salary-body-amber: #5a461e;
  --salary-body-shadow: 5px 5px 0 rgba(0, 0, 0, .34);
  --salary-body-shadow-tight: 3px 3px 0 rgba(0, 0, 0, .24);
}

@media (max-width: 760px) {
  body.postid-1007 .entry-content > article.roberin-article-body.salary-body-article,
  body.postid-1007 .entry-content article.roberin-article-body.salary-body-article {
    width: min(100% - 20px, 980px) !important;
    margin: 24px auto 34px !important;
    padding: 18px !important;
  }

  body.postid-1007 .salary-body-article h2 {
    font-size: 24px !important;
  }

  body.postid-1007 .salary-body-article__grid,
  body.postid-1007 .salary-body-article__formula-grid,
  body.postid-1007 .salary-body-article__walkthrough,
  body.postid-1007 .salary-body-article__source-list {
    grid-template-columns: 1fr !important;
  }

  body.postid-1007 .salary-body-article__nav a {
    white-space: normal !important;
  }
}

@media (max-width: 390px) {
  body.postid-1007 .entry-content > article.roberin-article-body.salary-body-article,
  body.postid-1007 .entry-content article.roberin-article-body.salary-body-article {
    width: min(100% - 16px, 980px) !important;
    padding: 16px !important;
  }

  body.postid-1007 .salary-body-article p,
  body.postid-1007 .salary-body-article li,
  body.postid-1007 .salary-body-article summary {
    font-size: 14px !important;
  }

  body.postid-1007 .salary-body-article__formula strong,
  body.postid-1007 .salary-body-article__walk-step strong {
    font-size: 15px !important;
  }
}
