/* ROBERIN daily compound interest calculator redesign v2 - 2026-05-18 */
body.postid-4210 {
  --dc-paper: #fff7e8;
  --dc-paper-soft: #fbf0dc;
  --dc-surface: rgba(255, 253, 247, 0.94);
  --dc-input: #fffdf8;
  --dc-ink: #2b2119;
  --dc-muted: #67584a;
  --dc-line: #6b5745;
  --dc-line-soft: rgba(107, 87, 69, 0.26);
  --dc-green: #e3efd2;
  --dc-green-ink: #2f4e2e;
  --dc-blue: #dfeef8;
  --dc-blue-ink: #28455a;
  --dc-amber: #f7df9d;
  --dc-warning: #fff2c1;
  --dc-warning-line: #c99a35;
  --dc-profit: #426f52;
  --dc-shadow: 4px 4px 0 rgba(72, 55, 40, 0.22);
  --dc-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-4210 .cs-site-content > .cs-container,
body.postid-4210 .cs-main-content,
body.postid-4210 .cs-content-area,
body.postid-4210 .cs-entry__container,
body.postid-4210 .cs-entry__content-wrap {
  width: 100%;
  max-width: none;
}

body.postid-4210 .cs-breadcrumbs,
body.postid-4210 .cs-entry__header,
body.postid-4210 .daily-compound-wrapper {
  width: min(980px, calc(100vw - 32px));
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

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

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

.daily-compound-wrapper,
.daily-compound-wrapper *,
.daily-compound-wrapper *::before,
.daily-compound-wrapper *::after {
  box-sizing: border-box;
}

.daily-compound-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(--dc-ink);
}

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

.daily-compound-interest-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;
}

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

.dc-kicker {
  width: fit-content;
  margin: 0;
  padding: 5px 8px;
  color: var(--dc-green-ink);
  background: var(--dc-green);
  border: 1px solid var(--dc-line);
  box-shadow: var(--dc-shadow-soft);
  font-size: 12.5px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.dc-header h2 {
  margin: 0;
  color: var(--dc-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;
}

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

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

.dc-secondary-btn,
.dc-calculate-btn,
.dc-apply-btn {
  appearance: none;
  border-radius: 0;
  font-family: inherit;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease, color 120ms ease;
}

.dc-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--dc-ink);
  background: var(--dc-input);
  border: 1px solid var(--dc-line);
  box-shadow: var(--dc-shadow-soft);
  font-size: 13.5px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.dc-secondary-btn--sample {
  color: var(--dc-green-ink);
  background: var(--dc-green);
}

.dc-secondary-btn--reset {
  color: #743528;
  background: #f3dfd3;
}

.dc-secondary-btn:hover,
.dc-calculate-btn:hover,
.dc-apply-btn:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 rgba(72, 55, 40, 0.16);
}

.dc-secondary-btn:active,
.dc-calculate-btn:active,
.dc-apply-btn:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

.dc-secondary-btn:focus-visible,
.dc-calculate-btn:focus-visible,
.dc-apply-btn:focus-visible,
.daily-compound-interest-calculator-container input:focus-visible,
.daily-compound-interest-calculator-container select:focus-visible,
.dc-table-wrapper:focus-visible {
  outline: 3px solid #d6a62b;
  outline-offset: 2px;
}

.dc-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr) minmax(230px, 0.76fr);
  gap: 10px;
  margin: 0 0 10px;
  align-items: stretch;
}

.dc-panel,
.dc-table-panel,
.dc-info-panel {
  min-width: 0;
  background: var(--dc-surface);
  border: 1px solid var(--dc-line);
  border-radius: 0;
  box-shadow: var(--dc-shadow-soft);
  padding: 12px;
}

.dc-panel {
  display: flex;
  flex-direction: column;
}

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

.dc-section-title svg,
.dc-calculate-btn svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.2;
}

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

.dc-input-group {
  min-width: 0;
}

.dc-input-group label,
.dc-mini-field span {
  display: block;
  margin: 0 0 5px;
  color: var(--dc-muted);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.dc-input-with-unit {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.dc-input-with-unit input,
.dc-mini-field input,
.dc-table-filter select {
  min-width: 0;
  min-height: 40px;
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  color: var(--dc-ink);
  -webkit-text-fill-color: var(--dc-ink);
  background: var(--dc-input);
  border: 1px solid var(--dc-line);
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(107, 87, 69, 0.08);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  color-scheme: light;
}

.dc-input-with-unit input:focus,
.dc-mini-field input:focus,
.dc-table-filter select:focus {
  background: #fff6d8;
  border-color: #5f4834;
  outline: none;
}

.dc-unit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 38px;
  padding: 0 8px;
  color: var(--dc-muted);
  background: #f5ead2;
  border: 1px solid var(--dc-line);
  border-left: 0;
  font-size: 12.5px;
  font-weight: 950;
}

.dc-input-with-unit--date input {
  border-right: 1px solid var(--dc-line);
}

.dc-field-help,
.dc-panel-copy,
.dc-result-note {
  margin: 5px 0 0;
  color: var(--dc-muted);
  font-size: 12px;
  line-height: 1.42;
  font-weight: 700;
}

.dc-note {
  margin: 0 0 10px;
  padding: 9px 10px;
  color: #6f4b1d;
  background: var(--dc-warning);
  border: 1px solid var(--dc-warning-line);
  border-left: 5px solid var(--dc-warning-line);
  font-size: 12.8px;
  line-height: 1.5;
  font-weight: 750;
}

.dc-note sup {
  font-size: 9px;
  line-height: 0;
}

.dc-calculate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 14px;
  color: #fffaf0;
  -webkit-text-fill-color: #fffaf0;
  background: #35271d;
  border: 1px solid #231a13;
  box-shadow: 3px 3px 0 rgba(72, 55, 40, 0.24);
  font-size: 14.5px;
  line-height: 1;
  font-weight: 950;
}

.dc-result-content {
  display: grid;
  min-height: 228px;
}

.dc-empty-result {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: 16px;
  color: var(--dc-muted);
  background: #fffaf0;
  border: 1px dashed rgba(107, 87, 69, 0.52);
  text-align: center;
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 800;
}

.dc-empty-result p {
  margin: 0;
}

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

.dc-main-result {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 13px;
  color: var(--dc-blue-ink);
  background: var(--dc-blue);
  border: 1px solid var(--dc-line);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
  text-align: center;
}

.dc-result-label,
.dc-result-item span {
  color: var(--dc-muted);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 900;
}

.dc-big-number {
  max-width: 100%;
  margin: 4px 0;
  color: var(--dc-blue-ink);
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.045em;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.dc-result-sub {
  color: var(--dc-muted);
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: 850;
}

.dc-detail-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.dc-result-item {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 8px 9px;
  background: #fffaf0;
  border: 1px solid rgba(107, 87, 69, 0.36);
}

.dc-result-item strong {
  color: var(--dc-ink);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.dc-profit {
  color: var(--dc-profit) !important;
  -webkit-text-fill-color: var(--dc-profit) !important;
}

.dc-milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.dc-milestone {
  padding: 5px 7px;
  color: var(--dc-ink);
  background: var(--dc-input);
  border: 1px solid rgba(107, 87, 69, 0.34);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 800;
}

.dc-milestone strong {
  color: var(--dc-blue-ink);
  font-weight: 950;
}

.dc-duration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 8px;
}

.dc-mini-field input {
  text-align: center;
}

.dc-helper-result {
  margin: 0 0 8px;
  padding: 8px 9px;
  color: var(--dc-blue-ink);
  background: var(--dc-blue);
  border: 1px solid rgba(107, 87, 69, 0.34);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.dc-apply-btn {
  width: 100%;
  min-height: 38px;
  margin-top: auto;
  padding: 8px 10px;
  color: var(--dc-green-ink);
  -webkit-text-fill-color: var(--dc-green-ink);
  background: var(--dc-green);
  border: 1px solid var(--dc-line);
  box-shadow: var(--dc-shadow-soft);
  font-size: 13.5px;
  line-height: 1.1;
  font-weight: 950;
}

.dc-table-panel[hidden] {
  display: none !important;
}

.dc-table-panel,
.dc-info-panel {
  margin-top: 10px;
}

.dc-table-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 8px;
}

.dc-table-heading .dc-section-title {
  margin: 0;
  flex: 1 1 auto;
}

.dc-table-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--dc-muted);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 900;
  white-space: nowrap;
}

.dc-table-filter select {
  width: auto;
  min-height: 36px;
  padding: 7px 28px 7px 9px;
  cursor: pointer;
}

.dc-table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dc-growth-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 13px;
}

.dc-growth-table th,
.dc-growth-table td {
  padding: 7px 8px;
  text-align: right;
  border: 1px solid rgba(107, 87, 69, 0.42);
  white-space: nowrap;
}

.dc-growth-table th {
  color: var(--dc-ink);
  background: #efe2cf;
  font-weight: 950;
}

.dc-growth-table th:first-child,
.dc-growth-table td:first-child,
.dc-growth-table th:nth-child(2),
.dc-growth-table td:nth-child(2) {
  text-align: center;
}

.dc-growth-table tbody tr:nth-child(even) {
  background: rgba(255, 250, 240, 0.72);
}

.dc-growth-table .dc-amount {
  color: var(--dc-blue-ink);
  font-weight: 950;
}

.dc-growth-table .dc-rate {
  color: #5c3827;
  font-weight: 900;
}

.dc-growth-table .dc-milestone-row {
  background: linear-gradient(90deg, rgba(223, 238, 248, 0.72), rgba(255, 250, 240, 0.4));
}

.dc-info-panel {
  padding: 12px;
}

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

.dc-info-card {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px;
  background: #fffaf0;
  border: 1px solid rgba(107, 87, 69, 0.32);
}

.dc-info-card strong {
  color: var(--dc-ink);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 950;
}

.dc-info-card span {
  color: var(--dc-muted);
  font-size: 12.5px;
  line-height: 1.42;
  font-weight: 700;
}

.dc-warning-box {
  margin: 0;
  padding: 10px 11px;
  color: #6f4b1d;
  background: var(--dc-warning);
  border: 1px solid var(--dc-warning-line);
  border-left: 5px solid var(--dc-warning-line);
  font-size: 12.8px;
  line-height: 1.55;
  font-weight: 750;
}

.dc-warning-box strong {
  color: #5f3d12;
  font-weight: 950;
}

.dc-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: grid;
  gap: 2px;
  max-width: min(320px, calc(100vw - 24px));
  padding: 11px 13px;
  color: var(--dc-ink);
  background: var(--dc-input);
  border: 1px solid var(--dc-line);
  box-shadow: var(--dc-shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.dc-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dc-toast-title {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

.dc-toast-value {
  color: var(--dc-muted);
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 750;
  overflow-wrap: anywhere;
}

body.postid-4210 .daily-compound-ad,
body.postid-4210 .roberin-ad[data-roberin-ad-position="after-tool"],
body.postid-4210 .roberin-ad[data-roberin-ad-position="bottom"],
body.postid-4210 .roberin-qa-ad-placeholder[data-roberin-qa-ad-position="after-tool"],
body.postid-4210 .roberin-qa-ad-placeholder[data-roberin-qa-ad-position="bottom"] {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(728px, 100%);
  min-height: 90px;
  margin: 24px auto !important;
  padding: 0 !important;
  color: rgba(87, 72, 56, 0.72);
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

body.postid-4210 .daily-compound-ad--after-tool + article,
body.postid-4210 .roberin-ad--after-tool + article,
body.postid-4210 .roberin-qa-ad-placeholder[data-roberin-qa-ad-position="after-tool"] + article {
  margin-top: 0 !important;
}

body.postid-4210[data-scheme="dark"],
body.postid-4210[data-scheme="inverse"] {
  --dc-paper: #2b2119;
  --dc-paper-soft: #241c15;
  --dc-surface: #33271d;
  --dc-input: #241c15;
  --dc-ink: #f7ebd8;
  --dc-muted: #f0dfc5;
  --dc-line: #a98b6b;
  --dc-line-soft: rgba(169, 139, 107, 0.48);
  --dc-green: #344a32;
  --dc-green-ink: #f7ebd8;
  --dc-blue: #233c43;
  --dc-blue-ink: #f1e8cf;
  --dc-amber: #d2aa55;
  --dc-warning: #3b2d21;
  --dc-warning-line: #d2aa55;
  --dc-profit: #b9d5aa;
  --dc-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34);
  --dc-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-4210[data-scheme="dark"] .cs-wrapper,
body.postid-4210[data-scheme="inverse"] .cs-wrapper,
body.postid-4210[data-scheme="dark"] .cs-site,
body.postid-4210[data-scheme="inverse"] .cs-site,
body.postid-4210[data-scheme="dark"] .cs-site-inner,
body.postid-4210[data-scheme="inverse"] .cs-site-inner,
body.postid-4210[data-scheme="dark"] .cs-site-primary,
body.postid-4210[data-scheme="inverse"] .cs-site-primary,
body.postid-4210[data-scheme="dark"] .cs-site-content,
body.postid-4210[data-scheme="inverse"] .cs-site-content,
body.postid-4210[data-scheme="dark"] footer.cs-footer,
body.postid-4210[data-scheme="inverse"] footer.cs-footer {
  color: #f2e4cf !important;
  background-color: #201811 !important;
  background-image:
    linear-gradient(90deg, rgba(229, 196, 139, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(229, 196, 139, 0.045) 1px, transparent 1px) !important;
  background-size: 18px 18px !important;
}

body.postid-4210[data-scheme="dark"] .cs-entry__title,
body.postid-4210[data-scheme="inverse"] .cs-entry__title,
body.postid-4210[data-scheme="dark"] .dc-header h2,
body.postid-4210[data-scheme="inverse"] .dc-header h2,
body.postid-4210[data-scheme="dark"] .dc-section-title,
body.postid-4210[data-scheme="inverse"] .dc-section-title {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
}

body.postid-4210[data-scheme="dark"] .dc-subtitle,
body.postid-4210[data-scheme="inverse"] .dc-subtitle,
body.postid-4210[data-scheme="dark"] .dc-input-group label,
body.postid-4210[data-scheme="inverse"] .dc-input-group label,
body.postid-4210[data-scheme="dark"] .dc-mini-field span,
body.postid-4210[data-scheme="inverse"] .dc-mini-field span,
body.postid-4210[data-scheme="dark"] .dc-result-label,
body.postid-4210[data-scheme="inverse"] .dc-result-label,
body.postid-4210[data-scheme="dark"] .dc-result-item span,
body.postid-4210[data-scheme="inverse"] .dc-result-item span,
body.postid-4210[data-scheme="dark"] .dc-field-help,
body.postid-4210[data-scheme="inverse"] .dc-field-help,
body.postid-4210[data-scheme="dark"] .dc-panel-copy,
body.postid-4210[data-scheme="inverse"] .dc-panel-copy,
body.postid-4210[data-scheme="dark"] .dc-result-note,
body.postid-4210[data-scheme="inverse"] .dc-result-note,
body.postid-4210[data-scheme="dark"] .dc-info-card span,
body.postid-4210[data-scheme="inverse"] .dc-info-card span,
body.postid-4210[data-scheme="dark"] .dc-toast-value,
body.postid-4210[data-scheme="inverse"] .dc-toast-value {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

body.postid-4210[data-scheme="dark"] .daily-compound-interest-calculator-container,
body.postid-4210[data-scheme="inverse"] .daily-compound-interest-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-4210[data-scheme="dark"] .daily-compound-interest-calculator-container::before,
body.postid-4210[data-scheme="inverse"] .daily-compound-interest-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-4210[data-scheme="dark"] .dc-panel,
body.postid-4210[data-scheme="inverse"] .dc-panel,
body.postid-4210[data-scheme="dark"] .dc-table-panel,
body.postid-4210[data-scheme="inverse"] .dc-table-panel,
body.postid-4210[data-scheme="dark"] .dc-info-panel,
body.postid-4210[data-scheme="inverse"] .dc-info-panel,
body.postid-4210[data-scheme="dark"] .dc-info-card,
body.postid-4210[data-scheme="inverse"] .dc-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-4210[data-scheme="dark"] .dc-input-with-unit input,
body.postid-4210[data-scheme="inverse"] .dc-input-with-unit input,
body.postid-4210[data-scheme="dark"] .dc-mini-field input,
body.postid-4210[data-scheme="inverse"] .dc-mini-field input,
body.postid-4210[data-scheme="dark"] .dc-table-filter select,
body.postid-4210[data-scheme="inverse"] .dc-table-filter select {
  color: #fff5df !important;
  -webkit-text-fill-color: #fff5df !important;
  caret-color: #f0c86a !important;
  background: #241c15 !important;
  border-color: #a98b6b !important;
  box-shadow: inset 0 1px 0 rgba(240, 200, 106, 0.10) !important;
  color-scheme: dark;
}

body.postid-4210[data-scheme="dark"] .dc-input-with-unit input:focus,
body.postid-4210[data-scheme="inverse"] .dc-input-with-unit input:focus,
body.postid-4210[data-scheme="dark"] .dc-mini-field input:focus,
body.postid-4210[data-scheme="inverse"] .dc-mini-field input:focus,
body.postid-4210[data-scheme="dark"] .dc-table-filter select:focus,
body.postid-4210[data-scheme="inverse"] .dc-table-filter select:focus {
  color: #fff7e8 !important;
  -webkit-text-fill-color: #fff7e8 !important;
  background: #2f251c !important;
  border-color: #f0c86a !important;
}

body.postid-4210[data-scheme="dark"] .dc-input-with-unit input::-webkit-calendar-picker-indicator,
body.postid-4210[data-scheme="inverse"] .dc-input-with-unit input::-webkit-calendar-picker-indicator {
  opacity: 0.95;
  filter: invert(94%) sepia(16%) saturate(520%) hue-rotate(345deg) brightness(106%) contrast(94%);
}

body.postid-4210[data-scheme="dark"] .dc-unit,
body.postid-4210[data-scheme="inverse"] .dc-unit,
body.postid-4210[data-scheme="dark"] .dc-empty-result,
body.postid-4210[data-scheme="inverse"] .dc-empty-result,
body.postid-4210[data-scheme="dark"] .dc-result-item,
body.postid-4210[data-scheme="inverse"] .dc-result-item,
body.postid-4210[data-scheme="dark"] .dc-milestone,
body.postid-4210[data-scheme="inverse"] .dc-milestone,
body.postid-4210[data-scheme="dark"] .dc-toast,
body.postid-4210[data-scheme="inverse"] .dc-toast {
  color: #f7ebd8 !important;
  background: #241c15 !important;
  border-color: #725b46 !important;
  box-shadow: none !important;
}

body.postid-4210[data-scheme="dark"] .dc-main-result,
body.postid-4210[data-scheme="inverse"] .dc-main-result,
body.postid-4210[data-scheme="dark"] .dc-helper-result,
body.postid-4210[data-scheme="inverse"] .dc-helper-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-4210[data-scheme="dark"] .dc-big-number,
body.postid-4210[data-scheme="inverse"] .dc-big-number,
body.postid-4210[data-scheme="dark"] .dc-result-item strong,
body.postid-4210[data-scheme="inverse"] .dc-result-item strong,
body.postid-4210[data-scheme="dark"] .dc-info-card strong,
body.postid-4210[data-scheme="inverse"] .dc-info-card strong,
body.postid-4210[data-scheme="dark"] .dc-toast-title,
body.postid-4210[data-scheme="inverse"] .dc-toast-title {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
}

body.postid-4210[data-scheme="dark"] .dc-secondary-btn--sample,
body.postid-4210[data-scheme="inverse"] .dc-secondary-btn--sample,
body.postid-4210[data-scheme="dark"] .dc-apply-btn,
body.postid-4210[data-scheme="inverse"] .dc-apply-btn,
body.postid-4210[data-scheme="dark"] .dc-kicker,
body.postid-4210[data-scheme="inverse"] .dc-kicker {
  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-4210[data-scheme="dark"] .dc-secondary-btn--reset,
body.postid-4210[data-scheme="inverse"] .dc-secondary-btn--reset {
  color: #fff0dd !important;
  -webkit-text-fill-color: #fff0dd !important;
  background: #5a3028 !important;
  border-color: #c98266 !important;
}

body.postid-4210[data-scheme="dark"] .dc-calculate-btn,
body.postid-4210[data-scheme="inverse"] .dc-calculate-btn {
  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-4210[data-scheme="dark"] .dc-note,
body.postid-4210[data-scheme="inverse"] .dc-note,
body.postid-4210[data-scheme="dark"] .dc-warning-box,
body.postid-4210[data-scheme="inverse"] .dc-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-4210[data-scheme="dark"] .dc-warning-box strong,
body.postid-4210[data-scheme="inverse"] .dc-warning-box strong {
  color: #f0c86a !important;
  -webkit-text-fill-color: #f0c86a !important;
}

body.postid-4210[data-scheme="dark"] .dc-growth-table th,
body.postid-4210[data-scheme="inverse"] .dc-growth-table th {
  color: #f7ebd8 !important;
  background: #3b2d21 !important;
  border-color: #725b46 !important;
}

body.postid-4210[data-scheme="dark"] .dc-growth-table td,
body.postid-4210[data-scheme="inverse"] .dc-growth-table td {
  color: #f0dfc5 !important;
  border-color: #725b46 !important;
}

body.postid-4210[data-scheme="dark"] .dc-growth-table tbody tr:nth-child(even),
body.postid-4210[data-scheme="inverse"] .dc-growth-table tbody tr:nth-child(even) {
  background: rgba(36, 28, 21, 0.72) !important;
}

body.postid-4210[data-scheme="dark"] .dc-growth-table .dc-amount,
body.postid-4210[data-scheme="inverse"] .dc-growth-table .dc-amount,
body.postid-4210[data-scheme="dark"] .dc-growth-table .dc-rate,
body.postid-4210[data-scheme="inverse"] .dc-growth-table .dc-rate,
body.postid-4210[data-scheme="dark"] .dc-milestone strong,
body.postid-4210[data-scheme="inverse"] .dc-milestone strong {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
}

body.postid-4210[data-scheme="dark"] .daily-compound-ad,
body.postid-4210[data-scheme="inverse"] .daily-compound-ad,
body.postid-4210[data-scheme="dark"] .roberin-qa-ad-placeholder,
body.postid-4210[data-scheme="inverse"] .roberin-qa-ad-placeholder {
  color: rgba(242, 228, 207, 0.72) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-4210[data-scheme="dark"] .cs-header,
body.postid-4210[data-scheme="inverse"] .cs-header,
body.postid-4210[data-scheme="dark"] .cs-header__inner,
body.postid-4210[data-scheme="inverse"] .cs-header__inner,
body.postid-4210[data-scheme="dark"] .cs-lang-dropdown,
body.postid-4210[data-scheme="inverse"] .cs-lang-dropdown,
body.postid-4210[data-scheme="dark"] .cs-mobile-menu-dropdown,
body.postid-4210[data-scheme="inverse"] .cs-mobile-menu-dropdown {
  color: #f2e4cf !important;
  background-color: #2b2119 !important;
  border-color: #a98b6b !important;
}

body.postid-4210[data-scheme="dark"] .cs-header__menu a,
body.postid-4210[data-scheme="inverse"] .cs-header__menu a,
body.postid-4210[data-scheme="dark"] .cs-mobile-menu-dropdown a,
body.postid-4210[data-scheme="inverse"] .cs-mobile-menu-dropdown a,
body.postid-4210[data-scheme="dark"] .cs-lang-dropdown a,
body.postid-4210[data-scheme="inverse"] .cs-lang-dropdown a,
body.postid-4210[data-scheme="dark"] .cs-footer a,
body.postid-4210[data-scheme="inverse"] .cs-footer a {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

body.postid-4210[data-scheme="dark"] .cs-header__toggle,
body.postid-4210[data-scheme="inverse"] .cs-header__toggle,
body.postid-4210[data-scheme="dark"] .cs-lang-current,
body.postid-4210[data-scheme="inverse"] .cs-lang-current,
body.postid-4210[data-scheme="dark"] .roberin-tool-search-toggle__button,
body.postid-4210[data-scheme="inverse"] .roberin-tool-search-toggle__button,
body.postid-4210[data-scheme="dark"] .cs-mobile-menu-button,
body.postid-4210[data-scheme="inverse"] .cs-mobile-menu-button {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
  background: #33271d !important;
  border-color: #a98b6b !important;
}

body.postid-4210[data-scheme="dark"] .roberin-tool-search-toggle__icon,
body.postid-4210[data-scheme="inverse"] .roberin-tool-search-toggle__icon,
body.postid-4210[data-scheme="dark"] .cs-lang-current svg,
body.postid-4210[data-scheme="inverse"] .cs-lang-current svg {
  color: #f7ebd8 !important;
  stroke: currentColor !important;
  fill: none !important;
}

body.postid-4210[data-scheme="dark"] .cs-contact-form__content,
body.postid-4210[data-scheme="inverse"] .cs-contact-form__content,
body.postid-4210[data-scheme="dark"] form.wpcf7-form,
body.postid-4210[data-scheme="inverse"] form.wpcf7-form {
  color: #f2e4cf !important;
  -webkit-text-fill-color: #f2e4cf !important;
  background: #2b2119 !important;
  border-color: #a98b6b !important;
}

body.postid-4210[data-scheme="dark"] .roberin-contact-consent,
body.postid-4210[data-scheme="inverse"] .roberin-contact-consent {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
  background: #33271d !important;
  border-color: #a98b6b !important;
}

body.postid-4210[data-scheme="dark"] .roberin-contact-consent .wpcf7-acceptance,
body.postid-4210[data-scheme="inverse"] .roberin-contact-consent .wpcf7-acceptance,
body.postid-4210[data-scheme="dark"] .roberin-contact-consent .wpcf7-list-item,
body.postid-4210[data-scheme="inverse"] .roberin-contact-consent .wpcf7-list-item,
body.postid-4210[data-scheme="dark"] .roberin-contact-consent label,
body.postid-4210[data-scheme="inverse"] .roberin-contact-consent label {
  color: inherit !important;
  -webkit-text-fill-color: inherit !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 980px) {
  body.postid-4210 .cs-breadcrumbs,
  body.postid-4210 .cs-entry__header,
  body.postid-4210 .daily-compound-wrapper {
    width: min(980px, calc(100vw - 20px));
  }

  .dc-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dc-duration-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body.postid-4210 .cs-breadcrumbs,
  body.postid-4210 .cs-entry__header,
  body.postid-4210 .daily-compound-wrapper {
    width: calc(100vw - 10px);
    max-width: calc(100vw - 10px);
    margin-left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
  }

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

  .daily-compound-interest-calculator-container {
    padding: 9px;
    border-width: 1px;
    box-shadow: 3px 3px 0 rgba(72, 55, 40, 0.18);
  }

  .dc-header {
    gap: 4px;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }

  .dc-quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    gap: 6px;
    margin-bottom: 8px;
  }

  .dc-main,
  .dc-input-grid,
  .dc-info-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .dc-panel,
  .dc-table-panel,
  .dc-info-panel {
    padding: 9px;
  }

  .dc-duration-panel {
    grid-column: auto;
  }

  .dc-section-title {
    margin-bottom: 8px;
    padding-bottom: 7px;
    font-size: 14.5px;
  }

  .dc-input-with-unit input,
  .dc-mini-field input,
  .dc-table-filter select,
  .dc-calculate-btn,
  .dc-apply-btn {
    min-height: 38px;
    font-size: 13.5px;
  }

  .dc-result-content,
  .dc-empty-result {
    min-height: 120px;
  }

  .dc-detail-results,
  .dc-duration-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dc-table-heading {
    display: grid;
    gap: 8px;
    align-items: start;
  }

  .dc-table-heading .dc-section-title {
    width: 100%;
  }

  .dc-table-filter {
    justify-content: space-between;
    width: 100%;
  }

  .dc-toast {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }
}

@media (max-width: 380px) {
  .daily-compound-interest-calculator-container {
    padding: 8px;
  }

  .dc-detail-results,
  .dc-duration-grid {
    grid-template-columns: 1fr;
  }

  .dc-big-number {
    font-size: 26px;
  }

  .dc-secondary-btn {
    padding-left: 8px;
    padding-right: 8px;
    font-size: 12.5px;
  }
}

/* v3 gap correction: desktop theme flow adds an extra 16px after HTML blocks. Keep final visible gap 24px. */
@media (min-width: 641px) {
  body.postid-4210 .daily-compound-ad--after-tool,
  body.postid-4210 .roberin-ad--after-tool {
    margin-bottom: 8px !important;
  }
}

/* v4 gap correction: override shorthand margin on the rendered after-tool wrapper. */
@media (min-width: 641px) {
  html body.postid-4210 .entry-content > .daily-compound-ad.daily-compound-ad--after-tool,
  html body.postid-4210 .entry-content > .roberin-ad.roberin-ad--after-tool {
    margin: 24px auto 8px !important;
  }
}

/* v5 QA placeholder containment: the ad wrapper owns spacing; the placeholder must not add inner margins. */
body.postid-4210 .daily-compound-ad > .roberin-qa-ad-placeholder {
  width: 100% !important;
  margin: 0 auto !important;
}


/* v6 desktop after-tool rhythm: cap the existing article first-block margin so ad→article equals tool→ad. */
@media (min-width: 641px) {
  html body.postid-4210 .entry-content > .daily-compound-ad.daily-compound-ad--after-tool + article > :first-child,
  html body.postid-4210 .entry-content > .roberin-ad.roberin-ad--after-tool + article > :first-child {
    margin-top: 24px !important;
  }
}

/* v7 Phase 2 body/article: PDF page deletion body rhythm mapped with target-specific compound article namespace. */
body.postid-4210 {
  --compound-article-page: #f9f1e7;
  --compound-article-panel: #f8efe2;
  --compound-article-card: #fff8ed;
  --compound-article-accent-paper: #e2edd8;
  --compound-article-text: #34281f;
  --compound-article-muted: #574838;
  --compound-article-line: #6b5745;
  --compound-article-line-soft: rgba(107, 87, 69, .34);
  --compound-article-mustard: #d2aa55;
  --compound-article-mustard-soft: rgba(210, 170, 85, .24);
  --compound-article-focus: #4f7d94;
  --compound-article-shadow: rgba(82, 65, 50, .22);
  --compound-article-soft-shadow: rgba(82, 65, 50, .13);
}

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

body.postid-4210 .entry-content article.roberin-article-body.compound-article,
body.postid-4210 .compound-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: clamp(24px, 4vw, 42px) auto !important;
  padding: clamp(16px, 3vw, 28px) !important;
  color: var(--compound-article-text) !important;
  -webkit-text-fill-color: var(--compound-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(--compound-article-panel) !important;
  background-size: 28px 28px, 28px 28px, auto !important;
  border: 2px solid var(--compound-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 var(--compound-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-4210 .daily-compound-ad--after-tool + article.roberin-article-body.compound-article,
body.postid-4210 .daily-compound-ad--after-tool + .compound-article,
body.postid-4210 .roberin-ad--after-tool + article.roberin-article-body.compound-article,
body.postid-4210 .roberin-ad--after-tool + .compound-article {
  margin-top: 0 !important;
}

@media (min-width: 641px) {
  html body.postid-4210 .entry-content > .daily-compound-ad.daily-compound-ad--after-tool,
  html body.postid-4210 .entry-content > .roberin-ad.roberin-ad--after-tool {
    margin: 24px auto 24px !important;
  }

  html body.postid-4210 .entry-content > .daily-compound-ad.daily-compound-ad--after-tool + article.compound-article > :first-child,
  html body.postid-4210 .entry-content > .roberin-ad.roberin-ad--after-tool + article.compound-article > :first-child {
    margin-top: 0 !important;
  }
}

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

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

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

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

body.postid-4210 .compound-article .compound-article__section {
  border: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.postid-4210 .compound-article ol,
body.postid-4210 .compound-article ol.compound-article__steps {
  counter-reset: compound-article-step !important;
}

body.postid-4210 .compound-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-4210 .compound-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(--compound-article-text) !important;
  -webkit-text-fill-color: var(--compound-article-text) !important;
  border-radius: 0 !important;
}

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

body.postid-4210 .compound-article ol > li,
body.postid-4210 .compound-article ol.compound-article__steps > li {
  counter-increment: compound-article-step !important;
}

body.postid-4210 .compound-article ol > li::before,
body.postid-4210 .compound-article ol.compound-article__steps > li::before {
  content: counter(compound-article-step) !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 20px !important;
  height: 20px !important;
  background: var(--compound-article-mustard-soft) !important;
  border: 1px solid var(--compound-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-4210 .compound-article .compound-article__li-text {
  display: block !important;
  min-width: 0 !important;
  align-self: center !important;
}

body.postid-4210 .compound-article details {
  margin: 0 !important;
}

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

body.postid-4210 .compound-article summary::after {
  content: none !important;
  display: inline !important;
}

body.postid-4210 .compound-article details[open] summary {
  margin-bottom: 8px !important;
  list-style-type: disclosure-open !important;
}

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

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

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

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

@media (max-width: 640px) {
  body.postid-4210 .entry-content article.roberin-article-body.compound-article,
  body.postid-4210 .compound-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-4210 .compound-article .compound-article__grid,
  body.postid-4210 .compound-article .compound-article__process-grid,
  body.postid-4210 .compound-article .compound-article__use-grid {
    grid-template-columns: 1fr !important;
  }

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

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

/* v9 placeholder distinction: example placeholders must stay visually lighter than actual values in light/dark. */
.daily-compound-interest-calculator-container input::placeholder,
.daily-compound-interest-calculator-container textarea::placeholder {
  color: rgba(87, 72, 56, 0.48) !important;
  -webkit-text-fill-color: rgba(87, 72, 56, 0.48) !important;
  font-weight: 650 !important;
  opacity: 1 !important;
}

body.postid-4210[data-scheme="dark"] .daily-compound-interest-calculator-container input::placeholder,
body.postid-4210[data-scheme="inverse"] .daily-compound-interest-calculator-container input::placeholder,
body.postid-4210[data-scheme="dark"] .daily-compound-interest-calculator-container textarea::placeholder,
body.postid-4210[data-scheme="inverse"] .daily-compound-interest-calculator-container textarea::placeholder {
  color: rgba(240, 223, 197, 0.48) !important;
  -webkit-text-fill-color: rgba(240, 223, 197, 0.48) !important;
  font-weight: 650 !important;
  opacity: 1 !important;
}
