.date-difference-wrapper {
  --date-shell: #faf2e8;
  --date-paper: #fff7e8;
  --date-card: #fffdf7;
  --date-input: #fffaf0;
  --date-line: #6b5745;
  --date-line-soft: rgba(107, 87, 69, 0.34);
  --date-ink: #2b2119;
  --date-muted: #766756;
  --date-primary: #f2e3d3;
  --date-primary-hover: #f7eadc;
  --date-green: #e3efd2;
  --date-green-ink: #29441f;
  --date-blue: #dfeef8;
  --date-blue-ink: #233f52;
  --date-amber: #f7df9d;
  --date-danger: #8f3025;
  --date-shadow: 4px 4px 0 rgba(43, 33, 25, 0.18);
  --date-shadow-soft: 2px 2px 0 rgba(43, 33, 25, 0.14);
  width: 100%;
  color: var(--date-ink);
  font-family: "Noto Sans KR", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

.date-difference-wrapper,
.date-difference-wrapper *,
.date-difference-wrapper *::before,
.date-difference-wrapper *::after {
  box-sizing: border-box;
  border-radius: 0;
  letter-spacing: 0;
}

.date-rec-shell {
  width: min(100%, 930px);
  margin: 22px auto;
  padding: 14px;
  border: 2px solid var(--date-line);
  background:
    linear-gradient(rgba(107, 87, 69, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, 0.045) 1px, transparent 1px),
    var(--date-shell);
  background-size: 18px 18px, 18px 18px, auto;
  box-shadow: 6px 6px 0 rgba(43, 33, 25, 0.18);
}

.date-rec-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 126px;
  gap: 14px;
  align-items: stretch;
  margin: 0 0 12px;
  padding: 14px;
  border: 2px solid var(--date-line);
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.99), rgba(255, 249, 238, 0.98) 64%, rgba(247, 223, 157, 0.3)),
    var(--date-paper);
  box-shadow: var(--date-shadow-soft);
}

.date-rec-title-copy {
  display: grid;
  gap: 8px;
  align-content: center;
  min-width: 0;
}

.date-rec-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0;
  padding: 3px 7px;
  border: 1px solid var(--date-line);
  background: var(--date-card);
  color: var(--date-muted);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.date-rec-title h2 {
  margin: 0;
  color: var(--date-ink);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 950;
  line-height: 1.12;
}

.date-rec-title p:not(.date-rec-kicker) {
  max-width: 62ch;
  margin: 0;
  color: var(--date-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.48;
}

.date-rec-title-pill {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  min-height: 72px;
  border: 2px solid var(--date-line);
  background: var(--date-green);
  color: var(--date-green-ink);
  padding: 10px;
  text-align: center;
}

.date-rec-title-pill strong {
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.date-rec-title-pill span {
  color: var(--date-green-ink);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.15;
}

.date-rec-main {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 12px;
}

.date-rec-panel {
  min-width: 0;
  border: 2px solid var(--date-line);
  background: var(--date-card);
  box-shadow: var(--date-shadow);
  padding: 13px;
}

.date-rec-panel--input {
  align-self: start;
}

.date-rec-panel--result {
  display: grid;
  grid-template-rows: auto auto;
  align-self: start;
}

.date-rec-panel-head {
  display: grid;
  gap: 3px;
  margin: 0 0 10px;
  padding-bottom: 9px;
  border-bottom: 2px dashed var(--date-line-soft);
}

.date-rec-panel-head h3 {
  margin: 0;
  color: var(--date-ink);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.22;
}

.date-rec-panel-head p {
  margin: 0;
  color: var(--date-muted);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
}

.date-rec-mode-row,
.date-rec-quick-grid,
.date-rec-meta-grid,
.date-rec-metric-grid,
.date-rec-actions {
  display: grid;
  gap: 7px;
}

.date-rec-mode-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 10px;
}

.date-rec-mode-panel {
  min-width: 0;
}

.date-rec-mode-panel[hidden],
.date-rec-empty[hidden],
.date-rec-result-display[hidden] {
  display: none !important;
}

.date-rec-field-grid {
  display: grid;
  gap: 9px;
}

.date-rec-field {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.date-rec-field > span:first-child {
  color: var(--date-muted);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.2;
}

.date-rec-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
  align-items: stretch;
  min-width: 0;
}

.date-rec-input-row--days {
  grid-template-columns: minmax(0, 1fr) 72px;
}

.date-input,
.number-input,
.select-input {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 8px 10px;
  border: 2px solid var(--date-line);
  background: var(--date-input);
  color: var(--date-ink);
  font: 900 14px/1.2 "Noto Sans KR", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif;
  box-shadow: inset 2px 2px 0 rgba(107, 87, 69, 0.08);
}

.number-input {
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.select-input {
  cursor: pointer;
}

.date-input:focus,
.number-input:focus,
.select-input:focus {
  outline: 3px solid rgba(210, 170, 85, 0.42);
  outline-offset: 1px;
  background: #fffdf7;
}

.date-rec-mini-button,
.date-rec-chip,
.date-rec-button {
  min-width: 0;
  border: 2px solid var(--date-line) !important;
  background: var(--date-primary) !important;
  color: var(--date-ink) !important;
  box-shadow: var(--date-shadow-soft);
  cursor: pointer;
  font: 950 12px/1.1 "Noto Sans KR", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif !important;
  text-align: center;
  white-space: nowrap;
}

.date-rec-mini-button {
  min-height: 38px;
  padding: 8px 11px;
}

.date-rec-chip {
  min-height: 34px;
  padding: 8px 9px;
}

.date-rec-button {
  min-height: 34px;
  padding: 8px 10px;
}

.date-rec-button--primary,
.date-rec-mode-button.is-active {
  background: #f2e3d3 !important;
}

.date-rec-mode-button.is-active {
  box-shadow: inset 0 0 0 999px rgba(227, 239, 210, 0.55), var(--date-shadow-soft);
}

.date-rec-mini-button:hover,
.date-rec-chip:hover,
.date-rec-button:hover,
.date-rec-mini-button:focus-visible,
.date-rec-chip:focus-visible,
.date-rec-button:focus-visible {
  background: var(--date-primary-hover) !important;
  box-shadow: 3px 3px 0 rgba(43, 33, 25, 0.2);
  outline: none;
  transform: translate(-1px, -1px);
}

.date-rec-quick-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 10px;
}

.date-rec-meta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}

.date-rec-note {
  margin: 10px 0 0;
  padding: 9px;
  border: 1px dashed var(--date-line);
  background: rgba(247, 223, 157, 0.22);
  color: var(--date-muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.4;
}

.date-rec-meta-grid > div,
.date-rec-metric-grid > div {
  display: grid;
  place-items: center;
  min-width: 0;
  border: 1px solid var(--date-line);
  background: var(--date-paper);
  padding: 7px 8px;
  text-align: center;
}

.date-rec-meta-grid span,
.date-rec-metric-grid span {
  color: var(--date-muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
}

.date-rec-meta-grid strong,
.date-rec-metric-grid strong {
  min-width: 0;
  color: var(--date-ink);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.date-rec-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 10px;
}

.date-rec-empty {
  display: grid;
  place-items: center;
  min-height: 155px;
  padding: 18px;
  border: 2px solid var(--date-line);
  background: var(--date-green);
  color: var(--date-green-ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.35;
  text-align: center;
}

.date-rec-empty.is-error {
  background: #f3dfd3;
  color: var(--date-danger);
}

.date-rec-result-display {
  display: grid;
  gap: 9px;
}

.date-rec-hero-result {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  min-height: 155px;
  border: 2px solid var(--date-line);
  background: var(--date-green);
  color: var(--date-green-ink);
  padding: 16px;
  text-align: center;
}

.date-rec-hero-result span {
  margin: 0;
  font-size: 13px;
  font-weight: 950;
}

.date-rec-hero-result strong {
  max-width: 100%;
  color: var(--date-green-ink);
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 950;
  line-height: 0.98;
  white-space: nowrap;
}

.date-rec-hero-result strong.is-long {
  font-size: clamp(34px, 5.6vw, 58px);
}

.date-rec-hero-result strong.is-xlong {
  font-size: clamp(28px, 4.7vw, 46px);
}

.date-rec-metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.date-rec-result-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--date-line);
  background: var(--date-paper);
}

.date-rec-result-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 7px 10px;
  border-bottom: 1px solid var(--date-line-soft);
}

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

.date-rec-result-row span {
  min-width: 0;
  color: var(--date-muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}

.date-rec-result-row strong {
  min-width: 0;
  color: var(--date-ink);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
  text-align: right;
  overflow-wrap: anywhere;
}

.date-rec-shell[data-active-mode="offset"] .date-rec-result-display {
  gap: 8px;
}

.date-rec-shell[data-active-mode="offset"] .date-rec-hero-result {
  min-height: 153px;
}

.date-rec-shell[data-active-mode="offset"] .date-rec-result-row {
  padding-top: 6px;
  padding-bottom: 6px;
}

.date-rec-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .date-rec-shell {
    margin: 14px auto;
    padding: 10px;
    box-shadow: 4px 4px 0 rgba(43, 33, 25, 0.16);
  }

  .date-rec-title {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 13px;
  }

  .date-rec-title-pill {
    min-height: 58px;
  }

  .date-rec-main {
    grid-template-columns: 1fr;
  }

  .date-rec-panel {
    padding: 12px;
    box-shadow: 3px 3px 0 rgba(43, 33, 25, 0.15);
  }

  .date-rec-empty,
  .date-rec-hero-result {
    min-height: 141px;
  }
}

@media (max-width: 430px) {
  .date-rec-title h2 {
    font-size: 25px;
  }

  .date-rec-title p:not(.date-rec-kicker) {
    font-size: 13px;
  }

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

  .date-rec-meta-grid,
  .date-rec-metric-grid {
    grid-template-columns: 1fr;
  }

  .date-rec-shell[data-active-mode="offset"] .date-rec-metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .date-rec-shell[data-active-mode="offset"] .date-rec-metric-grid > div {
    padding: 6px 4px;
  }

  .date-rec-shell[data-active-mode="offset"] .date-rec-metric-grid span {
    font-size: 10px;
  }

  .date-rec-shell[data-active-mode="offset"] .date-rec-metric-grid strong {
    font-size: 12px;
  }

  .date-rec-shell[data-active-mode="offset"] .date-rec-hero-result {
    min-height: 200px;
  }

  .date-rec-hero-result strong {
    font-size: 48px;
  }

  .date-rec-hero-result strong.is-long {
    font-size: 38px;
  }

  .date-rec-hero-result strong.is-xlong {
    font-size: 30px;
  }

  .date-rec-result-row {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  }
}

:where(body.dark-mode, body[data-theme="dark"], html[data-theme="dark"]) .date-difference-wrapper {
  --date-shell: #2f261e;
  --date-paper: #3b3026;
  --date-card: #332920;
  --date-input: #2b231c;
  --date-line: #d8c4a6;
  --date-line-soft: rgba(216, 196, 166, 0.38);
  --date-ink: #fff4dc;
  --date-muted: #d8c4a6;
  --date-primary: #725b45;
  --date-primary-hover: #856a50;
  --date-green: #22351f;
  --date-green-ink: #e4f3d2;
  --date-blue: #1e3444;
  --date-blue-ink: #dfeef8;
  --date-amber: #705c35;
  --date-danger: #ffcabd;
  --date-shadow: 4px 4px 0 rgba(0, 0, 0, 0.42);
  --date-shadow-soft: 2px 2px 0 rgba(0, 0, 0, 0.36);
}

:where(body.dark-mode, body[data-theme="dark"], html[data-theme="dark"]) .date-rec-shell {
  background:
    linear-gradient(rgba(216, 196, 166, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 196, 166, 0.05) 1px, transparent 1px),
    var(--date-shell);
}

:where(body.dark-mode, body[data-theme="dark"], html[data-theme="dark"]) .date-rec-title {
  background:
    linear-gradient(90deg, rgba(43, 38, 31, 0.96), rgba(32, 29, 24, 0.96) 64%, rgba(226, 201, 141, 0.16)),
    var(--date-paper);
}

:where(body.dark-mode, body[data-theme="dark"], html[data-theme="dark"]) .date-input,
:where(body.dark-mode, body[data-theme="dark"], html[data-theme="dark"]) .number-input,
:where(body.dark-mode, body[data-theme="dark"], html[data-theme="dark"]) .select-input {
  color-scheme: dark;
  box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.18);
}

:where(body.dark-mode, body[data-theme="dark"], html[data-theme="dark"]) .date-input:focus,
:where(body.dark-mode, body[data-theme="dark"], html[data-theme="dark"]) .number-input:focus,
:where(body.dark-mode, body[data-theme="dark"], html[data-theme="dark"]) .select-input:focus {
  background: #2b231c;
  color: var(--date-ink);
}

:where(body.dark-mode, body[data-theme="dark"], html[data-theme="dark"]) .date-rec-mini-button,
:where(body.dark-mode, body[data-theme="dark"], html[data-theme="dark"]) .date-rec-chip,
:where(body.dark-mode, body[data-theme="dark"], html[data-theme="dark"]) .date-rec-button {
  background: var(--date-primary) !important;
  color: var(--date-ink) !important;
}

:where(body.dark-mode, body[data-theme="dark"], html[data-theme="dark"]) .date-rec-button--primary,
:where(body.dark-mode, body[data-theme="dark"], html[data-theme="dark"]) .date-rec-mode-button.is-active {
  background: #7d654d !important;
}

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

  box-sizing: border-box !important;
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  margin: 30px auto 42px !important;
  padding: 28px !important;
  overflow-wrap: break-word !important;
  color: var(--date-body-ink) !important;
  background:
    linear-gradient(var(--date-body-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--date-body-grid) 1px, transparent 1px),
    var(--date-body-paper) !important;
  background-size: 18px 18px, 18px 18px, auto !important;
  border: 2px solid var(--date-body-line) !important;
  border-radius: 0 !important;
  box-shadow: var(--date-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-1659 .date-body-article,
body.postid-1659 .date-body-article *,
body.postid-1659 .date-body-article *::before,
body.postid-1659 .date-body-article *::after {
  box-sizing: border-box !important;
  letter-spacing: 0 !important;
}

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

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

body.postid-1659 .date-body-article__section {
  padding: 22px 0 0 !important;
}

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

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

body.postid-1659 .date-body-article h2 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--date-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-1659 .date-body-article h3 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--date-body-ink) !important;
  border: 0 !important;
  font-size: 18px !important;
  font-weight: 950 !important;
  line-height: 1.34 !important;
}

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

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

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

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

body.postid-1659 .date-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(--date-body-ink) !important;
  background: var(--date-body-card) !important;
  border: 1px solid var(--date-body-line) !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0 rgba(82, 65, 50, 0.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-1659 .date-body-article__grid,
body.postid-1659 .date-body-article__formula-grid,
body.postid-1659 .date-body-article__walkthrough,
body.postid-1659 .date-body-article__source-list,
body.postid-1659 .date-body-article__faq-list {
  display: grid !important;
  gap: 10px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin-top: 16px !important;
}

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

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

body.postid-1659 .date-body-article__faq-list {
  grid-template-columns: 1fr !important;
}

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

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

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

body.postid-1659 .date-body-article__formula strong,
body.postid-1659 .date-body-article__walk-step strong {
  display: block !important;
  min-width: 0 !important;
  margin-top: 7px !important;
  color: var(--date-body-ink) !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  overflow-wrap: anywhere !important;
}

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

body.postid-1659 .date-body-article__card p {
  margin-top: 8px !important;
  font-size: 14px !important;
  line-height: 1.66 !important;
}

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

body.postid-1659 .date-body-article__notice p {
  margin-top: 8px !important;
  font-size: 14px !important;
  line-height: 1.66 !important;
}

body.postid-1659 .date-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(--date-body-card-strong) !important;
  border-width: 2px !important;
  box-shadow: 3px 3px 0 rgba(82, 65, 50, 0.18) !important;
  text-decoration: none !important;
}

body.postid-1659 .date-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(--date-body-ink) !important;
  background: var(--date-body-amber) !important;
  border: 1px solid var(--date-body-line) !important;
  box-shadow: 2px 2px 0 rgba(82, 65, 50, 0.16) !important;
  font-size: 11px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

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

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

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

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

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

body.postid-1659 .date-body-article li::before {
  content: none !important;
}

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

body.postid-1659 .date-body-article__steps {
  counter-reset: date-body-step !important;
}

body.postid-1659 .date-body-article__steps > li,
body.postid-1659 .date-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(--date-body-card) !important;
  border: 1px solid var(--date-body-line) !important;
  box-shadow: 2px 2px 0 rgba(82, 65, 50, 0.12) !important;
}

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

body.postid-1659 .date-body-article__steps > li::before,
body.postid-1659 .date-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(--date-body-ink) !important;
  background: var(--date-body-amber) !important;
  border: 1px solid var(--date-body-line) !important;
  box-shadow: 1px 1px 0 rgba(82, 65, 50, 0.22) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

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

body.postid-1659 .date-body-article__checklist > li::before {
  content: "✓" !important;
}

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

body.postid-1659 .date-body-article details {
  box-shadow: none !important;
}

body.postid-1659 .date-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(--date-body-ink) !important;
  cursor: pointer !important;
  font-weight: 950 !important;
  list-style: none !important;
}

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

body.postid-1659 .date-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(--date-body-ink) !important;
  background: var(--date-body-amber) !important;
  border: 1px solid var(--date-body-line) !important;
  font-size: 14px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

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

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

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

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

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

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

  body.postid-1659 .date-body-article__nav a {
    white-space: normal !important;
  }

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

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

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

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

}
