/* ROBERIN date-time calculator redesign v10 - Phase 2 article ad-gap correction */
body.single-sight-projects:has(.date-time-wrapper) {
  --dt-paper: #fff7e8;
  --dt-paper-soft: #fbf0dc;
  --dt-ink: #2b2119;
  --dt-muted: #67584a;
  --dt-line: #6b5745;
  --dt-line-soft: rgba(107, 87, 69, 0.26);
  --dt-green: #e3efd2;
  --dt-green-ink: #2f4e2e;
  --dt-blue: #dfeef8;
  --dt-blue-ink: #28455a;
  --dt-amber: #f7df9d;
  --dt-white: #fffdf7;
  --dt-shadow: 4px 4px 0 rgba(72, 55, 40, 0.22);
  --dt-shadow-soft: 2px 2px 0 rgba(72, 55, 40, 0.14);
  --dt-main-grid-columns: minmax(0, 1fr) minmax(0, 1.25fr) minmax(0, 0.95fr);
  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.single-sight-projects:has(.date-time-wrapper) .cs-site-content > .cs-container,
body.single-sight-projects:has(.date-time-wrapper) .cs-main-content,
body.single-sight-projects:has(.date-time-wrapper) .cs-content-area,
body.single-sight-projects:has(.date-time-wrapper) .cs-entry__container,
body.single-sight-projects:has(.date-time-wrapper) .cs-entry__content-wrap {
  width: 100%;
  max-width: none;
}

body.single-sight-projects:has(.date-time-wrapper) .cs-breadcrumbs,
body.single-sight-projects:has(.date-time-wrapper) .cs-entry__header,
.date-time-wrapper {
  width: min(1100px, calc(100vw - 32px));
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

body.single-sight-projects:has(.date-time-wrapper) .cs-entry__header {
  margin-top: 18px;
  margin-bottom: 14px;
  text-align: left;
}

body.single-sight-projects:has(.date-time-wrapper) .cs-entry__title {
  color: var(--dt-ink);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.date-time-wrapper,
.date-time-wrapper *,
.date-time-wrapper *::before,
.date-time-wrapper *::after {
  box-sizing: border-box;
}

.date-time-wrapper {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: var(--dt-ink);
}

.date-time-wrapper br {
  display: none !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-wrapper + .roberin-qa-ad-placeholder + article,
body.single-sight-projects:has(.date-time-wrapper) .date-time-wrapper + .aicp + article,
body.single-sight-projects:has(.date-time-wrapper) .date-time-wrapper + .roberin-aicp-ad-guard + article {
  position: relative;
  top: -16px;
  margin-top: 24px !important;
  margin-bottom: -16px !important;
}

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

.date-time-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;
}

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

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

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

.quick-actions {
  display: grid;
  grid-template-columns: var(--dt-main-grid-columns);
  gap: 10px;
  margin: 0 0 10px;
}

.quick-action-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.btn-quick,
.btn-reset,
.btn-calculate,
.copy-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;
}

.btn-quick,
.btn-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  min-width: 0;
  padding: 8px 10px;
  color: var(--dt-green-ink);
  background: var(--dt-green);
  border: 1px solid var(--dt-line);
  box-shadow: var(--dt-shadow-soft);
  font-size: 13.5px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

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

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

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

.btn-quick:focus-visible,
.btn-reset:focus-visible,
.btn-calculate:focus-visible,
.copy-btn:focus-visible,
.date-input:focus-visible,
.time-input:focus-visible,
.number-input:focus-visible,
.radio-label input:focus-visible {
  outline: 3px solid #d6a62b;
  outline-offset: 2px;
}

.calculator-main {
  display: grid;
  grid-template-columns: var(--dt-main-grid-columns);
  gap: 10px;
  margin: 0 0 10px;
  align-items: stretch;
}

.input-section,
.result-section,
.special-section,
.info-section {
  min-width: 0;
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid var(--dt-line);
  border-radius: 0;
  box-shadow: var(--dt-shadow-soft);
  padding: 12px;
}

.input-section,
.result-section,
.special-section {
  display: flex;
  flex-direction: column;
}

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

.input-group {
  margin: 0 0 9px;
}

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

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

.radio-label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  min-height: 40px;
  margin: 0;
  padding: 8px 9px;
  color: var(--dt-ink);
  background: #fffdf8;
  border: 1px solid var(--dt-line);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 900;
  cursor: pointer;
}

.radio-label input {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: #6b5745;
}

.date-time-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 6px;
}

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

.duration-item {
  position: relative;
  display: block;
  min-width: 0;
  margin: 0;
}

.date-input,
.time-input,
.number-input {
  min-width: 0;
  min-height: 40px;
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  color: var(--dt-ink);
  -webkit-text-fill-color: var(--dt-ink);
  caret-color: #5f4834;
  background: #fffdf8;
  border: 1px solid var(--dt-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;
}

.number-input {
  padding-right: 34px;
  text-align: right;
}

.duration-item span {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dt-muted);
  font-size: 11.5px;
  line-height: 1;
  font-weight: 950;
  pointer-events: none;
}

.date-input:focus,
.time-input:focus,
.number-input:focus {
  background: #fff6d8;
  border-color: #5f4834;
  outline: none;
}

.input-description {
  margin: 5px 0 0;
  color: var(--dt-muted);
  font-size: 12px;
  line-height: 1.42;
  font-weight: 700;
  word-break: keep-all;
}

.btn-calculate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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;
}

.result-display {
  display: grid;
  gap: 12px;
  text-align: left;
}

.result-display[hidden] {
  display: none !important;
}

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

.big-number {
  margin: 5px 0 0;
  color: var(--dt-blue-ink);
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.045em;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

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

.result-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 8px;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 8px 9px;
  background: #fffaf0;
  border: 1px solid rgba(107, 87, 69, 0.36);
}

.result-item--full {
  grid-column: 1 / -1;
}

.result-label-text {
  color: var(--dt-muted);
  font-size: 11.5px;
  line-height: 1.1;
  font-weight: 900;
}

.result-value {
  grid-column: 1 / 2;
  color: var(--dt-ink);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 950;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.copy-btn {
  grid-row: 1 / span 2;
  grid-column: 2 / 3;
  align-self: center;
  min-height: 30px;
  padding: 6px 8px;
  color: var(--dt-ink);
  background: #fffdf8;
  border: 1px solid var(--dt-line);
  box-shadow: 1px 1px 0 rgba(72, 55, 40, 0.14);
  font-size: 12px;
  font-weight: 900;
}

.no-result {
  display: grid;
  min-height: 222px;
  place-items: center;
  padding: 16px;
  color: var(--dt-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;
}

.no-result[hidden] {
  display: none !important;
}

.no-result p {
  margin: 0;
}

.basis-list {
  display: grid;
  gap: 6px;
  margin: 0;
}

.basis-list > div {
  display: grid;
  grid-template-columns: minmax(80px, 0.72fr) minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-width: 0;
  padding: 8px 9px;
  background: #fffaf0;
  border: 1px solid rgba(107, 87, 69, 0.36);
}

.basis-list dt,
.basis-list dd {
  min-width: 0;
  margin: 0;
}

.basis-list dt {
  color: var(--dt-muted);
  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 950;
}

.basis-list dd {
  color: var(--dt-ink);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.special-tip {
  display: grid;
  gap: 4px;
  margin: 10px 0 0;
  padding: 10px;
  color: var(--dt-muted);
  background: #f5ead2;
  border: 1px solid var(--dt-line);
  font-size: 12.5px;
  line-height: 1.48;
  font-weight: 750;
}

.special-tip strong {
  color: #5c3827;
  font-weight: 950;
}

.special-tip p {
  margin: 0;
}

.info-section {
  margin: 0;
  padding: 12px;
}

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

.info-card {
  min-width: 0;
  padding: 10px;
  background: #fffaf0;
  border: 1px solid rgba(107, 87, 69, 0.32);
  text-align: left;
}

.info-card strong {
  display: block;
  margin: 0 0 4px;
  color: var(--dt-ink);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 950;
}

.info-card p {
  margin: 0;
  color: var(--dt-muted);
  font-size: 12px;
  line-height: 1.42;
  font-weight: 700;
  word-break: keep-all;
}

.warning-box {
  margin: 0;
  padding: 10px 11px;
  color: #6f4b1d;
  background: #fff2c1;
  border: 1px solid #c99a35;
  border-left: 5px solid #c99a35;
  font-size: 12.8px;
  line-height: 1.55;
  font-weight: 750;
  word-break: keep-all;
}

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

.toast {
  display: none;
  margin-top: 10px;
  padding: 9px 11px;
  color: var(--dt-ink);
  background: #fffdf8;
  border: 1px solid var(--dt-line);
  box-shadow: var(--dt-shadow-soft);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 850;
}

.toast.show {
  display: block;
}

.toast.success { background: var(--dt-green); color: var(--dt-green-ink); }
.toast.error { background: #f3dfd3; color: #743528; }
.toast.info { background: #dfeef8; color: #28455a; }

@media (max-width: 980px) {
  body.single-sight-projects:has(.date-time-wrapper) .cs-breadcrumbs,
  body.single-sight-projects:has(.date-time-wrapper) .cs-entry__header,
  .date-time-wrapper {
    width: min(1100px, calc(100vw - 20px));
  }

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

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

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

  .special-section {
    grid-column: 1 / -1;
  }

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

@media (max-width: 640px) {
  body.single-sight-projects:has(.date-time-wrapper) .cs-breadcrumbs,
  body.single-sight-projects:has(.date-time-wrapper) .cs-entry__header,
  .date-time-wrapper {
    width: calc(100vw - 10px);
    max-width: calc(100vw - 10px);
    margin-left: auto;
    margin-right: auto;
    transform: none;
  }

  body.single-sight-projects:has(.date-time-wrapper) .cs-entry__header {
    margin-top: 12px;
    margin-bottom: 10px;
  }

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

  body.single-sight-projects:has(.date-time-wrapper) .date-time-wrapper + .roberin-qa-ad-placeholder + article,
  body.single-sight-projects:has(.date-time-wrapper) .date-time-wrapper + .aicp + article,
  body.single-sight-projects:has(.date-time-wrapper) .date-time-wrapper + .roberin-aicp-ad-guard + article {
    top: -16px;
    margin-top: 8px !important;
    margin-bottom: -16px !important;
  }

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

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

  .calculator-main {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 8px;
  }

  .quick-action-duo {
    display: contents;
  }

  .btn-quick,
  .btn-reset {
    min-height: 36px;
    padding: 7px 8px;
    font-size: 12.5px;
  }

  .input-section,
  .result-section,
  .special-section,
  .info-section {
    padding: 9px;
  }

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

  .date-time-input-row,
  .radio-group,
  .detail-results,
  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .date-input,
  .time-input,
  .number-input,
  .radio-label {
    min-height: 38px;
    font-size: 13.5px;
  }

  .no-result {
    min-height: 116px;
  }

  .main-result {
    min-height: 104px;
  }

  .basis-list > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

@media (max-width: 380px) {
  .date-time-calculator-container {
    padding: 8px;
  }

  .duration-grid {
    gap: 5px;
  }

  .duration-item .number-input {
    padding-left: 6px;
    padding-right: 6px;
    font-size: 13px;
  }

  .duration-item span {
    padding-left: 4px;
    padding-right: 6px;
    font-size: 10.5px;
  }

  .number-input {
    padding-left: 7px;
    padding-right: 30px;
  }
}

body.single-sight-projects:has(.date-time-wrapper)[data-scheme="dark"],
body.single-sight-projects:has(.date-time-wrapper)[data-scheme="inverse"] {
  --dt-paper: #2b2119;
  --dt-paper-soft: #241c15;
  --dt-ink: #f7ebd8;
  --dt-muted: #f0dfc5;
  --dt-line: #a98b6b;
  --dt-line-soft: rgba(169, 139, 107, 0.48);
  --dt-green: #344a32;
  --dt-green-ink: #f7ebd8;
  --dt-blue: #233c43;
  --dt-blue-ink: #f1e8cf;
  --dt-amber: #d2aa55;
  --dt-white: #241c15;
  --dt-shadow: 4px 4px 0 rgba(0, 0, 0, 0.34);
  --dt-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.single-sight-projects:has(.date-time-wrapper)[data-scheme="dark"] .cs-wrapper,
body.single-sight-projects:has(.date-time-wrapper)[data-scheme="inverse"] .cs-wrapper,
body.single-sight-projects:has(.date-time-wrapper)[data-scheme="dark"] .cs-site,
body.single-sight-projects:has(.date-time-wrapper)[data-scheme="inverse"] .cs-site,
body.single-sight-projects:has(.date-time-wrapper)[data-scheme="dark"] .cs-site-inner,
body.single-sight-projects:has(.date-time-wrapper)[data-scheme="inverse"] .cs-site-inner,
body.single-sight-projects:has(.date-time-wrapper)[data-scheme="dark"] .cs-site-primary,
body.single-sight-projects:has(.date-time-wrapper)[data-scheme="inverse"] .cs-site-primary,
body.single-sight-projects:has(.date-time-wrapper)[data-scheme="dark"] .cs-site-content,
body.single-sight-projects:has(.date-time-wrapper)[data-scheme="inverse"] .cs-site-content,
body.single-sight-projects:has(.date-time-wrapper)[data-scheme="dark"] footer.cs-footer,
body.single-sight-projects:has(.date-time-wrapper)[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[data-scheme="dark"] .date-time-calculator-container,
body[data-scheme="inverse"] .date-time-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[data-scheme="dark"] .date-time-calculator-container::before,
body[data-scheme="inverse"] .date-time-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[data-scheme="dark"] .calculator-header h2,
body[data-scheme="inverse"] .calculator-header h2,
body[data-scheme="dark"] .section-title,
body[data-scheme="inverse"] .section-title,
body[data-scheme="dark"] .info-card strong,
body[data-scheme="inverse"] .info-card strong,
body[data-scheme="dark"] .basis-list dd,
body[data-scheme="inverse"] .basis-list dd {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
}

body[data-scheme="dark"] .calculator-header .subtitle,
body[data-scheme="inverse"] .calculator-header .subtitle,
body[data-scheme="dark"] .input-group label,
body[data-scheme="inverse"] .input-group label,
body[data-scheme="dark"] .input-label,
body[data-scheme="inverse"] .input-label,
body[data-scheme="dark"] .input-description,
body[data-scheme="inverse"] .input-description,
body[data-scheme="dark"] .result-label-text,
body[data-scheme="inverse"] .result-label-text,
body[data-scheme="dark"] .basis-list dt,
body[data-scheme="inverse"] .basis-list dt,
body[data-scheme="dark"] .info-card p,
body[data-scheme="inverse"] .info-card p,
body[data-scheme="dark"] .no-result,
body[data-scheme="inverse"] .no-result {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

body[data-scheme="dark"] .input-section,
body[data-scheme="inverse"] .input-section,
body[data-scheme="dark"] .result-section,
body[data-scheme="inverse"] .result-section,
body[data-scheme="dark"] .special-section,
body[data-scheme="inverse"] .special-section,
body[data-scheme="dark"] .info-section,
body[data-scheme="inverse"] .info-section,
body[data-scheme="dark"] .info-card,
body[data-scheme="inverse"] .info-card,
body[data-scheme="dark"] .radio-label,
body[data-scheme="inverse"] .radio-label,
body[data-scheme="dark"] .result-item,
body[data-scheme="inverse"] .result-item,
body[data-scheme="dark"] .basis-list > div,
body[data-scheme="inverse"] .basis-list > div,
body[data-scheme="dark"] .no-result,
body[data-scheme="inverse"] .no-result {
  color: #f7ebd8 !important;
  background: #33271d !important;
  border-color: #a98b6b !important;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.24) !important;
}

body[data-scheme="dark"] .date-input,
body[data-scheme="inverse"] .date-input,
body[data-scheme="dark"] .time-input,
body[data-scheme="inverse"] .time-input,
body[data-scheme="dark"] .number-input,
body[data-scheme="inverse"] .number-input {
  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[data-scheme="dark"] .date-input:focus,
body[data-scheme="inverse"] .date-input:focus,
body[data-scheme="dark"] .time-input:focus,
body[data-scheme="inverse"] .time-input:focus,
body[data-scheme="dark"] .number-input:focus,
body[data-scheme="inverse"] .number-input:focus {
  color: #fff7e8 !important;
  -webkit-text-fill-color: #fff7e8 !important;
  background: #2f251c !important;
  border-color: #f0c86a !important;
  outline-color: rgba(240, 200, 106, 0.46) !important;
}

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

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

body[data-scheme="dark"] .btn-calculate,
body[data-scheme="inverse"] .btn-calculate {
  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[data-scheme="dark"] .copy-btn,
body[data-scheme="inverse"] .copy-btn {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
  background: #241c15 !important;
  border-color: #725b46 !important;
  box-shadow: none !important;
}

body[data-scheme="dark"] .main-result,
body[data-scheme="inverse"] .main-result {
  color: #f7ebd8 !important;
  background: #233c43 !important;
  border-color: #a98b6b !important;
  box-shadow: inset 0 0 0 1px rgba(240, 223, 197, 0.10) !important;
}

body[data-scheme="dark"] .big-number,
body[data-scheme="inverse"] .big-number,
body[data-scheme="dark"] .result-value,
body[data-scheme="inverse"] .result-value,
body[data-scheme="dark"] .special-tip strong,
body[data-scheme="inverse"] .special-tip strong {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
}

body[data-scheme="dark"] .special-tip,
body[data-scheme="inverse"] .special-tip {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
  background: #241c15 !important;
  border-color: #725b46 !important;
}

body[data-scheme="dark"] .warning-box,
body[data-scheme="inverse"] .warning-box {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
  background: #3b2d21 !important;
  border-color: #d2aa55 !important;
  border-left-color: #d2aa55 !important;
}

body[data-scheme="dark"] .warning-box strong,
body[data-scheme="inverse"] .warning-box strong {
  color: #f0c86a !important;
  -webkit-text-fill-color: #f0c86a !important;
}

body[data-scheme="dark"] .toast,
body[data-scheme="inverse"] .toast {
  color: #f7ebd8 !important;
  -webkit-text-fill-color: #f7ebd8 !important;
  background: #241c15 !important;
  border-color: #a98b6b !important;
}

/* v4.1 user-reported duration numeric visibility repair: keep units in normal flow. */
.date-time-wrapper .duration-item {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center;
  gap: 6px;
  min-width: 0;
  min-height: 40px;
  margin: 0;
  padding: 0 8px 0 0;
  color: var(--dt-ink);
  background: #fffdf8;
  border: 1px solid var(--dt-line);
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(107, 87, 69, 0.08);
  overflow: hidden;
}

.date-time-wrapper .duration-item .number-input {
  display: block !important;
  min-width: 0;
  width: 100%;
  min-height: 38px;
  height: 38px;
  padding: 8px 6px 8px 10px !important;
  color: var(--dt-ink);
  -webkit-text-fill-color: var(--dt-ink);
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-align: right;
  overflow: visible;
}

.date-time-wrapper .duration-item span {
  position: static !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  display: block;
  min-width: max-content;
  padding: 0;
  color: var(--dt-muted);
  -webkit-text-fill-color: var(--dt-muted);
  font-size: 11.5px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
  pointer-events: none;
}

.date-time-wrapper .duration-item:focus-within {
  background: #fff6d8;
  border-color: #5f4834;
  outline: 2px solid rgba(95, 72, 52, 0.18);
  outline-offset: 1px;
}

body[data-scheme="dark"] .date-time-wrapper .duration-item,
body[data-scheme="inverse"] .date-time-wrapper .duration-item {
  color: #fff5df !important;
  background: #241c15 !important;
  border-color: #a98b6b !important;
  box-shadow: inset 0 1px 0 rgba(240, 200, 106, 0.10) !important;
}

body[data-scheme="dark"] .date-time-wrapper .duration-item .number-input,
body[data-scheme="inverse"] .date-time-wrapper .duration-item .number-input {
  color: #fff5df !important;
  -webkit-text-fill-color: #fff5df !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body[data-scheme="dark"] .date-time-wrapper .duration-item span,
body[data-scheme="inverse"] .date-time-wrapper .duration-item span {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

body[data-scheme="dark"] .date-time-wrapper .duration-item:focus-within,
body[data-scheme="inverse"] .date-time-wrapper .duration-item:focus-within {
  background: #2f251c !important;
  border-color: #f0c86a !important;
  outline-color: rgba(240, 200, 106, 0.46) !important;
}

@media (max-width: 640px) {
  .date-time-wrapper .duration-item {
    min-height: 38px;
    gap: 5px;
    padding-right: 7px;
  }

  .date-time-wrapper .duration-item .number-input {
    min-height: 36px;
    height: 36px;
    padding: 7px 5px 7px 7px !important;
    font-size: 13px;
  }

  .date-time-wrapper .duration-item span {
    font-size: 10.5px;
  }
}

/* v6 numeric-first duration layout: unit labels no longer consume the number track. */
.date-time-wrapper .duration-item {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: auto auto;
  align-items: stretch;
  gap: 2px;
  min-height: 52px;
  padding: 4px 6px 5px !important;
  overflow: hidden;
}

.date-time-wrapper .duration-item .number-input {
  width: 100%;
  min-height: 28px;
  height: 28px;
  padding: 4px 6px !important;
  text-align: right;
}

.date-time-wrapper .duration-item span {
  justify-self: end;
  min-width: 0;
  max-width: 100%;
  font-size: 11px;
  line-height: 1.05;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .date-time-wrapper .duration-item {
    min-height: 50px;
    padding: 4px 5px 5px !important;
  }

  .date-time-wrapper .duration-item .number-input {
    min-height: 27px;
    height: 27px;
    padding: 4px 5px !important;
    font-size: 13px;
  }

  .date-time-wrapper .duration-item span {
    font-size: 10px;
  }
}

/* v7 radio/duration/result-row alignment repair after exact input-section feedback. */
.date-time-wrapper .radio-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.date-time-wrapper .radio-label {
  display: grid !important;
  grid-template-columns: 17px minmax(0, 1fr);
  align-items: center !important;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px;
  font-size: 13.5px;
  line-height: 1.18;
}

.date-time-wrapper .radio-label input {
  width: 16px;
  height: 16px;
  margin: 0;
  align-self: center;
  justify-self: center;
}

.date-time-wrapper .radio-label span {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 18px;
  line-height: 1.18;
}

.date-time-wrapper .duration-grid {
  grid-template-columns: 1fr !important;
  gap: 5px;
}

.date-time-wrapper .duration-item {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-rows: 1fr !important;
  align-items: center !important;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px 0 0 !important;
  overflow: hidden;
}

.date-time-wrapper .duration-item .number-input {
  min-height: 36px;
  height: 36px;
  padding: 7px 8px 7px 10px !important;
  font-size: 14px;
  line-height: 1.15;
}

.date-time-wrapper .duration-item span {
  align-self: center;
  justify-self: end;
  min-width: max-content;
  max-width: 96px;
  font-size: 12px;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.date-time-wrapper .detail-results {
  grid-template-columns: 1fr !important;
  gap: 7px;
}

.date-time-wrapper .result-item,
.date-time-wrapper .result-item.result-item--full {
  width: 100%;
  grid-column: 1 / -1;
  grid-template-columns: minmax(56px, 0.18fr) minmax(0, 1fr) auto !important;
  grid-template-rows: auto !important;
  align-items: center !important;
  gap: 8px;
  min-height: 42px;
  padding: 8px 10px;
}

.date-time-wrapper .result-item .result-label-text {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  font-size: 12px;
  line-height: 1.1;
  white-space: nowrap;
}

.date-time-wrapper .result-item .result-value {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  align-self: center;
  font-size: 14.5px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.date-time-wrapper .result-item .copy-btn {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  min-width: 40px;
}

@media (max-width: 640px) {
  .date-time-wrapper .radio-group {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .date-time-wrapper .radio-label {
    min-height: 40px;
    padding: 8px 9px;
    font-size: 13px;
  }

  .date-time-wrapper .duration-item {
    min-height: 38px;
    gap: 7px;
    padding-right: 9px !important;
  }

  .date-time-wrapper .duration-item .number-input {
    min-height: 36px;
    height: 36px;
    padding: 7px 7px 7px 9px !important;
    font-size: 13.5px;
  }

  .date-time-wrapper .duration-item span {
    max-width: 82px;
    font-size: 11.5px;
  }

  .date-time-wrapper .result-item,
  .date-time-wrapper .result-item.result-item--full {
    grid-template-columns: minmax(46px, auto) minmax(0, 1fr) auto !important;
    gap: 7px;
    padding: 8px 9px;
  }

  .date-time-wrapper .result-item .result-label-text {
    font-size: 11.5px;
  }

  .date-time-wrapper .result-item .result-value {
    font-size: 13.5px;
  }
}

/* v8 duration composition/result fill repair after repeated live feedback. */
body.single-sight-projects:has(.date-time-wrapper) {
  --dt-main-grid-columns: minmax(0, 1.18fr) minmax(0, 1.22fr) minmax(0, 0.82fr);
}

.date-time-wrapper .input-section,
.date-time-wrapper .result-section,
.date-time-wrapper .special-section {
  min-height: 0;
}

.date-time-wrapper .duration-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 6px;
  align-items: stretch;
}

.date-time-wrapper .duration-item {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  grid-template-rows: 1fr !important;
  align-items: center !important;
  gap: 4px;
  min-height: 42px;
  padding: 0 7px 0 0 !important;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid var(--dt-line);
  box-shadow: inset 0 1px 0 rgba(107, 87, 69, 0.08);
}

.date-time-wrapper .duration-item:focus-within {
  background: #fff6d8;
  border-color: #5f4834;
}

.date-time-wrapper .duration-item .number-input {
  min-width: 0;
  min-height: 40px;
  height: 40px;
  padding: 8px 1px 8px 3px !important;
  color: var(--dt-ink);
  -webkit-text-fill-color: var(--dt-ink);
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 14px;
  line-height: 1.12;
  text-align: right;
}

.date-time-wrapper .duration-item .number-input:focus {
  background: transparent;
  border-color: transparent;
}

.date-time-wrapper .duration-item span {
  align-self: center;
  justify-self: end;
  min-width: max-content;
  max-width: 44px;
  color: var(--dt-muted);
  -webkit-text-fill-color: var(--dt-muted);
  font-size: 11.5px;
  line-height: 1;
  font-weight: 950;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.date-time-wrapper .result-display {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(150px, 1fr) auto;
  align-content: stretch;
  gap: 9px;
}

.date-time-wrapper .main-result {
  min-height: 0;
  height: 100%;
  align-content: center;
  justify-items: center;
  padding: 14px 12px;
}

.date-time-wrapper .detail-results {
  align-self: stretch;
}

.date-time-wrapper .result-item,
.date-time-wrapper .result-item.result-item--full {
  min-height: 44px;
}

body[data-scheme="dark"] .date-time-wrapper .duration-item,
body[data-scheme="inverse"] .date-time-wrapper .duration-item {
  color: #fff5df !important;
  background: #241c15 !important;
  border-color: #a98b6b !important;
  box-shadow: inset 0 1px 0 rgba(240, 200, 106, 0.10) !important;
}

body[data-scheme="dark"] .date-time-wrapper .duration-item:focus-within,
body[data-scheme="inverse"] .date-time-wrapper .duration-item:focus-within {
  background: #2f251c !important;
  border-color: #f0c86a !important;
}

body[data-scheme="dark"] .date-time-wrapper .duration-item .number-input,
body[data-scheme="inverse"] .date-time-wrapper .duration-item .number-input {
  color: #fff5df !important;
  -webkit-text-fill-color: #fff5df !important;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

body[data-scheme="dark"] .date-time-wrapper .duration-item span,
body[data-scheme="inverse"] .date-time-wrapper .duration-item span {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
}

@media (max-width: 980px) {
  body.single-sight-projects:has(.date-time-wrapper) {
    --dt-main-grid-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .date-time-wrapper .duration-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 5px;
  }

  .date-time-wrapper .duration-item {
    min-height: 40px;
    gap: 4px;
    padding: 0 6px 0 0 !important;
  }

  .date-time-wrapper .duration-item .number-input {
    min-height: 38px;
    height: 38px;
    padding: 7px 1px 7px 3px !important;
    font-size: 13.5px;
  }

  .date-time-wrapper .duration-item span {
    max-width: 36px;
    font-size: 10.5px;
  }

  .date-time-wrapper .result-display {
    flex: initial;
    grid-template-rows: auto auto;
    gap: 8px;
  }

  .date-time-wrapper .main-result {
    min-height: 110px;
    height: auto;
  }
}

@media (max-width: 380px) {
  .date-time-wrapper .duration-grid {
    grid-template-columns: 1fr !important;
    gap: 4px;
  }

  .date-time-wrapper .duration-item {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 6px;
    min-height: 38px;
    padding-right: 8px !important;
  }

  .date-time-wrapper .duration-item .number-input {
    min-height: 36px;
    height: 36px;
    padding-left: 8px !important;
    padding-right: 2px !important;
    font-size: 13px;
  }

  .date-time-wrapper .duration-item span {
    max-width: 84px;
    font-size: 10.5px;
  }
}


/* ROBERIN date-time calculator Phase 2 article v9 - PDF reference rhythm */
body.single-sight-projects:has(.date-time-wrapper) {
  --dt-article-page: #f9f1e7;
  --dt-article-panel: #f8efe2;
  --dt-article-card: #fff8ed;
  --dt-article-accent-paper: #e2edd8;
  --dt-article-text: #34281f;
  --dt-article-muted: #574838;
  --dt-article-line: #6b5745;
  --dt-article-line-soft: rgba(107, 87, 69, .34);
  --dt-article-mustard: #d2aa55;
  --dt-article-mustard-soft: rgba(210, 170, 85, .24);
  --dt-article-focus: #4f7d94;
  --dt-article-shadow: rgba(82, 65, 50, .22);
  --dt-article-soft-shadow: rgba(82, 65, 50, .13);
}

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

body.single-sight-projects:has(.date-time-wrapper) .entry-content article.roberin-article-body.date-time-article,
body.single-sight-projects:has(.date-time-wrapper) article.roberin-article-body.date-time-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(--dt-article-text) !important;
  -webkit-text-fill-color: var(--dt-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(--dt-article-panel) !important;
  background-size: 28px 28px, 28px 28px, auto !important;
  border: 2px solid var(--dt-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 var(--dt-article-shadow) !important;
  overflow: hidden !important;
  transform: none !important;
  left: auto !important;
  right: auto !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.single-sight-projects:has(.date-time-wrapper) .date-time-article,
body.single-sight-projects:has(.date-time-wrapper) .date-time-article *,
body.single-sight-projects:has(.date-time-wrapper) .date-time-article *::before,
body.single-sight-projects:has(.date-time-wrapper) .date-time-article *::after {
  box-sizing: border-box !important;
  min-width: 0 !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article :is(p, li, td, th, summary, span, strong, code, h2, h3) {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article__hero,
body.single-sight-projects:has(.date-time-wrapper) .date-time-article__section {
  display: grid !important;
  gap: 13px !important;
  min-width: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article__hero {
  padding: 0 0 22px !important;
  border-bottom: 1px dashed var(--dt-article-line-soft) !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article__section + .date-time-article__section {
  margin-top: 6px !important;
  padding-top: 22px !important;
  border-top: 1px dashed var(--dt-article-line-soft) !important;
}

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

body.single-sight-projects:has(.date-time-wrapper) .date-time-article h2,
body.single-sight-projects:has(.date-time-wrapper) .date-time-article h3 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--dt-article-text) !important;
  -webkit-text-fill-color: var(--dt-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.single-sight-projects:has(.date-time-wrapper) .date-time-article h2 {
  font-size: clamp(25px, 3vw, 30px) !important;
  font-weight: 950 !important;
  line-height: 1.18 !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article h3 {
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article p,
body.single-sight-projects:has(.date-time-wrapper) .date-time-article li,
body.single-sight-projects:has(.date-time-wrapper) .date-time-article summary {
  margin: 0 !important;
  color: var(--dt-article-muted) !important;
  -webkit-text-fill-color: var(--dt-article-muted) !important;
  font-size: 15px !important;
  font-weight: 680 !important;
  line-height: 1.72 !important;
  overflow-wrap: anywhere !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article strong,
body.single-sight-projects:has(.date-time-wrapper) .date-time-article summary {
  color: var(--dt-article-text) !important;
  -webkit-text-fill-color: var(--dt-article-text) !important;
  font-weight: 920 !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article__nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
}

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

body.single-sight-projects:has(.date-time-wrapper) .date-time-article__nav a:hover,
body.single-sight-projects:has(.date-time-wrapper) .date-time-article__nav a:focus-visible {
  background: var(--dt-article-mustard-soft) !important;
  outline: 2px solid var(--dt-article-focus) !important;
  outline-offset: 2px !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article__grid,
body.single-sight-projects:has(.date-time-wrapper) .date-time-article__process-grid,
body.single-sight-projects:has(.date-time-wrapper) .date-time-article__use-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px !important;
  min-width: 0 !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article__use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

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

body.single-sight-projects:has(.date-time-wrapper) .date-time-article__notice {
  background: rgba(239, 225, 188, .64) !important;
  border-style: dashed !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article__process {
  background: rgba(226, 237, 216, .70) !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article__use span,
body.single-sight-projects:has(.date-time-wrapper) .date-time-article__process span {
  color: var(--dt-article-muted) !important;
  -webkit-text-fill-color: var(--dt-article-muted) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article code {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  padding: 5px 8px !important;
  color: var(--dt-article-text) !important;
  -webkit-text-fill-color: var(--dt-article-text) !important;
  background: var(--dt-article-card) !important;
  border: 1px solid var(--dt-article-line-soft) !important;
  border-radius: 0 !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace !important;
  font-size: .92em !important;
  font-weight: 780 !important;
  line-height: 1.48 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article :is(ul, ol) {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article ol,
body.single-sight-projects:has(.date-time-wrapper) .date-time-article ol.date-time-article__steps {
  counter-reset: date-time-article-step !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article :is(ul, ol) > li {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 10px !important;
  min-width: 0 !important;
  min-height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  overflow-wrap: anywhere !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article :is(ul, ol) > li::before {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  grid-column: 1 !important;
  align-self: start !important;
  justify-self: start !important;
  box-sizing: border-box !important;
  margin-top: .25em !important;
  color: var(--dt-article-text) !important;
  -webkit-text-fill-color: var(--dt-article-text) !important;
  border-radius: 0 !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article ul > li::before {
  content: "" !important;
  display: inline-block !important;
  width: 9px !important;
  height: 9px !important;
  background: var(--dt-article-mustard) !important;
  border: 1px solid var(--dt-article-line) !important;
  box-shadow: 1px 1px 0 rgba(82, 65, 50, .22) !important;
  line-height: 1 !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article ol > li,
body.single-sight-projects:has(.date-time-wrapper) .date-time-article ol.date-time-article__steps > li {
  counter-increment: date-time-article-step !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article ol > li::before,
body.single-sight-projects:has(.date-time-wrapper) .date-time-article ol.date-time-article__steps > li::before {
  content: counter(date-time-article-step) !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 20px !important;
  height: 20px !important;
  background: var(--dt-article-mustard-soft) !important;
  border: 1px solid var(--dt-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.single-sight-projects:has(.date-time-wrapper) .date-time-article__li-text {
  display: block !important;
  min-width: 0 !important;
  grid-column: 2 !important;
  align-self: start !important;
  color: var(--dt-article-muted) !important;
  -webkit-text-fill-color: var(--dt-article-muted) !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article details {
  margin: 0 !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article summary {
  cursor: pointer !important;
  color: var(--dt-article-text) !important;
  -webkit-text-fill-color: var(--dt-article-text) !important;
  font-weight: 950 !important;
  line-height: 1.45 !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-article details[open] summary {
  margin-bottom: 8px !important;
}

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

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

body.single-sight-projects:has(.date-time-wrapper)[data-scheme="dark"] .date-time-article code,
body.single-sight-projects:has(.date-time-wrapper)[data-scheme="inverse"] .date-time-article code {
  color: #f2e4cf !important;
  -webkit-text-fill-color: #f2e4cf !important;
  background: #241c15 !important;
  border-color: rgba(169, 139, 107, .56) !important;
}

body.single-sight-projects:has(.date-time-wrapper)[data-scheme="dark"] .date-time-article :is(ul, ol) > li::before,
body.single-sight-projects:has(.date-time-wrapper)[data-scheme="inverse"] .date-time-article :is(ul, ol) > li::before {
  border-color: #a98b6b !important;
}

body.single-sight-projects:has(.date-time-wrapper) .date-time-wrapper + .roberin-qa-ad-placeholder + article.date-time-article,
body.single-sight-projects:has(.date-time-wrapper) .date-time-wrapper + .aicp + article.date-time-article,
body.single-sight-projects:has(.date-time-wrapper) .date-time-wrapper + .roberin-aicp-ad-guard + article.date-time-article {
  top: 0 !important;
  margin-top: 24px !important;
  margin-bottom: 0 !important;
}

@media (max-width: 920px) {
  body.single-sight-projects:has(.date-time-wrapper) .date-time-article__use-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  body.single-sight-projects:has(.date-time-wrapper) .entry-content article.roberin-article-body.date-time-article,
  body.single-sight-projects:has(.date-time-wrapper) article.roberin-article-body.date-time-article {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 12px !important;
    transform: none !important;
    box-shadow: 4px 4px 0 rgba(82, 65, 50, .16) !important;
  }

  body.single-sight-projects:has(.date-time-wrapper) .date-time-wrapper + .roberin-qa-ad-placeholder + article.date-time-article,
  body.single-sight-projects:has(.date-time-wrapper) .date-time-wrapper + .aicp + article.date-time-article,
  body.single-sight-projects:has(.date-time-wrapper) .date-time-wrapper + .roberin-aicp-ad-guard + article.date-time-article {
    top: 0 !important;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
  }

  body.single-sight-projects:has(.date-time-wrapper) .date-time-article__grid,
  body.single-sight-projects:has(.date-time-wrapper) .date-time-article__process-grid,
  body.single-sight-projects:has(.date-time-wrapper) .date-time-article__use-grid {
    grid-template-columns: 1fr !important;
  }

  body.single-sight-projects:has(.date-time-wrapper) .date-time-article h3 {
    font-size: 18px !important;
  }
}

@media (max-width: 370px) {
  body.single-sight-projects:has(.date-time-wrapper) .date-time-article h2 {
    font-size: 25.2px !important;
  }
}
