/* ROBERIN world time zone monitor v8 - reference-first tool redesign */
body.postid-4274 {
  --wtz-paper: #fff7e8;
  --wtz-paper-soft: #fbf0dc;
  --wtz-paper-card: rgba(255, 253, 247, 0.94);
  --wtz-ink: #2b2119;
  --wtz-muted: #67584a;
  --wtz-line: #6b5745;
  --wtz-line-soft: rgba(107, 87, 69, 0.26);
  --wtz-green: #e3efd2;
  --wtz-green-ink: #2f4e2e;
  --wtz-blue: #dfeef8;
  --wtz-blue-ink: #28455a;
  --wtz-amber: #f7df9d;
  --wtz-amber-ink: #5a3d14;
  --wtz-red-soft: #f3dfd3;
  --wtz-red-ink: #743528;
  --wtz-white: #fffdf7;
  --wtz-shadow: 4px 4px 0 rgba(72, 55, 40, 0.22);
  --wtz-shadow-soft: 2px 2px 0 rgba(72, 55, 40, 0.14);
  --wtz-main-grid-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) minmax(0, 0.9fr);
  --wtz-main-grid-gap: 10px;
  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-4274 .cs-site-content > .cs-container,
body.postid-4274 .cs-main-content,
body.postid-4274 .cs-content-area,
body.postid-4274 .cs-entry__container,
body.postid-4274 .cs-entry__content-wrap {
  width: 100%;
  max-width: none;
}

body.postid-4274 .cs-breadcrumbs,
body.postid-4274 .cs-entry__header,
body.postid-4274 .world-time-zone-monitor-wrapper,
body.postid-4274 .entry-content > article {
  width: min(1050px, calc(100vw - 32px));
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

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

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

.world-time-zone-monitor-wrapper,
.world-time-zone-monitor-wrapper *,
.world-time-zone-monitor-wrapper *::before,
.world-time-zone-monitor-wrapper *::after {
  box-sizing: border-box;
}

.world-time-zone-monitor-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(--wtz-ink);
}

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

.world-time-zone-monitor-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;
}

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

.world-time-zone-monitor-wrapper .calculator-header h2 {
  margin: 0;
  color: var(--wtz-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;
}

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

.world-time-zone-monitor-wrapper .quick-actions {
  display: grid;
  grid-template-columns: var(--wtz-main-grid-columns);
  gap: var(--wtz-main-grid-gap);
  margin: 0 0 10px;
}

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

.filter-btn,
.btn-reset {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  background: var(--wtz-white);
  border: 1px solid var(--wtz-line);
  border-radius: 0;
  box-shadow: var(--wtz-shadow-soft);
  font-family: inherit;
  font-size: 13.5px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease, color 120ms ease;
}

.filter-btn.active {
  color: var(--wtz-green-ink);
  background: var(--wtz-green);
}

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

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

.filter-btn:focus-visible,
.btn-reset:focus-visible,
.city-search-input:focus-visible,
.radio-label input:focus-visible,
.city-row:focus-visible {
  outline: 3px solid #d6a62b;
  outline-offset: 2px;
}

.world-time-zone-monitor-wrapper .calculator-main {
  display: grid;
  grid-template-columns: var(--wtz-main-grid-columns);
  gap: var(--wtz-main-grid-gap);
  margin: 0 0 10px;
  align-items: stretch;
}

.input-section,
.result-section,
.special-section,
.info-section {
  min-width: 0;
  background: var(--wtz-paper-card);
  border: 1px solid var(--wtz-line);
  border-radius: 0;
  box-shadow: var(--wtz-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(--wtz-ink) !important;
  -webkit-text-fill-color: currentColor;
  border-bottom: 1px solid var(--wtz-line-soft);
  font-size: 15.5px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.time-box {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 12px;
  color: var(--wtz-ink);
  background: var(--wtz-paper-soft);
  border: 1px solid var(--wtz-line);
  border-radius: 0;
}

.time-box.my-box {
  border-left: 6px solid #4f7d94;
}

.time-box.selected-box {
  border-left: 6px solid #6c8f42;
}

.time-box.selected-box.empty {
  opacity: 0.82;
}

.box-label,
.option-label {
  color: var(--wtz-muted);
  -webkit-text-fill-color: currentColor;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.box-time {
  display: block;
  color: #6f3526;
  -webkit-text-fill-color: currentColor;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.selected-box .box-time {
  color: #2f6b43;
}

.box-date {
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.box-tz,
.tool-hint,
.city-count-meta,
.no-city-match {
  color: var(--wtz-muted);
  -webkit-text-fill-color: currentColor;
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 700;
  word-break: keep-all;
}

.option-stack {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.option-group {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(78px, auto) minmax(0, 1fr) minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  padding: 8px;
  background: rgba(255, 253, 247, 0.74);
  border: 1px dashed var(--wtz-line-soft);
}

.radio-label {
  min-width: 0;
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  min-height: 30px;
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  font-size: 12.8px;
  line-height: 1.15;
  font-weight: 850;
  cursor: pointer;
}

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

.time-compare {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  flex: 1 1 auto;
}

.compare-arrow {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  min-width: 0;
  padding: 10px;
  background: var(--wtz-white);
  border: 1px solid var(--wtz-line);
}

.arrow-icon {
  color: var(--wtz-muted);
  -webkit-text-fill-color: currentColor;
  font-size: 12px;
  font-weight: 950;
}

.arrow-diff,
.city-row .diff {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  padding: 3px 7px;
  color: var(--wtz-muted);
  -webkit-text-fill-color: currentColor;
  background: var(--wtz-paper-soft);
  border: 1px solid var(--wtz-line-soft);
  border-radius: 0;
  font-size: 12px;
  line-height: 1.05;
  font-weight: 950;
  white-space: nowrap;
}

.arrow-diff.same,
.diff.same {
  color: #294f2e;
  background: #dcebd1;
  border-color: rgba(47, 78, 46, 0.34);
}

.arrow-diff.ahead,
.diff.ahead {
  color: #28455a;
  background: #dfeef8;
  border-color: rgba(40, 69, 90, 0.34);
}

.arrow-diff.behind,
.diff.behind {
  color: #5a3d14;
  background: #f7df9d;
  border-color: rgba(90, 61, 20, 0.34);
}

.tool-hint {
  margin: 10px 0 0;
}

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

.summary-card {
  min-width: 0;
  display: grid;
  gap: 2px;
  justify-items: center;
  padding: 10px 6px;
  background: var(--wtz-green);
  border: 1px solid var(--wtz-line);
}

.summary-card strong {
  color: var(--wtz-green-ink);
  -webkit-text-fill-color: currentColor;
  font-size: 18px;
  line-height: 1;
  font-weight: 950;
}

.summary-card span {
  color: var(--wtz-muted);
  -webkit-text-fill-color: currentColor;
  font-size: 11.5px;
  line-height: 1.15;
  font-weight: 850;
  text-align: center;
  word-break: keep-all;
}

.guide-list {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.guide-list p {
  margin: 0;
  padding: 8px;
  color: var(--wtz-muted);
  -webkit-text-fill-color: currentColor;
  background: rgba(255, 253, 247, 0.74);
  border: 1px dashed var(--wtz-line-soft);
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 750;
  word-break: keep-all;
}

.guide-list strong {
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  font-weight: 950;
}

.info-section.world-clock-section {
  margin-top: 0;
}

.city-search-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin: 0 0 8px;
}

.city-search-row label {
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  font-size: 13.5px;
  font-weight: 950;
}

.city-search-input {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  background: var(--wtz-white);
  border: 1px solid var(--wtz-line);
  border-radius: 0;
  box-shadow: inset 1px 1px 0 rgba(72, 55, 40, 0.08);
  font: inherit;
  font-size: 14px;
  font-weight: 750;
}

.city-search-input::placeholder {
  color: rgba(103, 88, 74, 0.76);
  -webkit-text-fill-color: rgba(103, 88, 74, 0.76);
}

.city-count-meta {
  margin: 0 0 8px;
}

.world-clock-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.continent-block {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid var(--wtz-line);
  border-radius: 0;
  box-shadow: 1px 1px 0 rgba(72, 55, 40, 0.12);
}

.continent-block.hidden,
.city-row.search-hidden {
  display: none !important;
}

.continent-title {
  padding: 9px 10px;
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  background: var(--wtz-green);
  border-bottom: 1px solid var(--wtz-line);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 950;
}

.city-list {
  display: grid;
  gap: 0;
}

.city-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 48px 58px 52px;
  gap: 6px;
  align-items: center;
  min-height: 34px;
  padding: 6px 8px;
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  background: var(--wtz-white);
  border-bottom: 1px solid var(--wtz-line-soft);
  cursor: pointer;
}

.city-row:last-child {
  border-bottom: 0;
}

.city-row.day {
  background: #fff9d7;
}

.city-row.evening {
  background: #fff0dd;
}

.city-row.night {
  background: #ece9f3;
}

.city-row:hover,
.city-row.selected {
  background: var(--wtz-blue);
}

.city-row.selected {
  box-shadow: inset 4px 0 0 #4f7d94;
}

.city-row .flag {
  font-size: 17px;
  line-height: 1;
  text-align: center;
}

.city-row .city,
.city-row .date,
.city-row .time {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  white-space: nowrap;
}

.city-row .city {
  font-size: 13px;
  font-weight: 900;
}

.city-row .date {
  color: var(--wtz-muted);
  -webkit-text-fill-color: currentColor;
  font-size: 11.5px;
  font-weight: 800;
  text-align: right;
}

.city-row .time {
  color: #6f3526;
  -webkit-text-fill-color: currentColor;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 13px;
  font-weight: 950;
  text-align: right;
}

.toast {
  display: none;
  margin-top: 10px;
  padding: 9px 10px;
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  background: var(--wtz-amber);
  border: 1px solid var(--wtz-line);
  box-shadow: var(--wtz-shadow-soft);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 900;
}

.toast.show {
  display: block;
}

.world-time-zone-monitor-wrapper br {
  display: none !important;
}

body[data-scheme="dark"].postid-4274,
body[data-scheme="inverse"].postid-4274 {
  --wtz-paper: #2b2119;
  --wtz-paper-soft: #33271d;
  --wtz-paper-card: rgba(51, 39, 29, 0.94);
  --wtz-ink: #f2e4cf;
  --wtz-muted: #f0dfc5;
  --wtz-line: #a98b6b;
  --wtz-line-soft: rgba(169, 139, 107, 0.36);
  --wtz-green: #344a32;
  --wtz-green-ink: #f2e4cf;
  --wtz-blue: #28445a;
  --wtz-blue-ink: #f2e4cf;
  --wtz-amber: #d2aa55;
  --wtz-amber-ink: #241c15;
  --wtz-red-soft: #593026;
  --wtz-red-ink: #f2e4cf;
  --wtz-white: #241c15;
  --wtz-shadow: 4px 4px 0 rgba(0, 0, 0, 0.28);
  --wtz-shadow-soft: 2px 2px 0 rgba(0, 0, 0, 0.2);
  background:
    linear-gradient(90deg, rgba(169, 139, 107, 0.055) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(0deg, rgba(169, 139, 107, 0.05) 1px, transparent 1px) 0 0 / 18px 18px,
    #201811;
}

body[data-scheme="dark"] .world-time-zone-monitor-container,
body[data-scheme="inverse"] .world-time-zone-monitor-container {
  background: var(--wtz-paper);
  color: var(--wtz-ink);
}

body[data-scheme="dark"] .world-time-zone-monitor-container::before,
body[data-scheme="inverse"] .world-time-zone-monitor-container::before {
  background:
    linear-gradient(rgba(169, 139, 107, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 139, 107, 0.065) 1px, transparent 1px);
  background-size: 20px 20px;
}

body[data-scheme="dark"] .filter-btn.active,
body[data-scheme="inverse"] .filter-btn.active,
body[data-scheme="dark"] .summary-card,
body[data-scheme="inverse"] .summary-card,
body[data-scheme="dark"] .continent-title,
body[data-scheme="inverse"] .continent-title {
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  background: var(--wtz-green);
}

body[data-scheme="dark"] .box-time,
body[data-scheme="inverse"] .box-time,
body[data-scheme="dark"] .city-row .time,
body[data-scheme="inverse"] .city-row .time,
body[data-scheme="dark"] .selected-box .box-time,
body[data-scheme="inverse"] .selected-box .box-time {
  color: #f2e4cf;
  -webkit-text-fill-color: currentColor;
}

body[data-scheme="dark"] .city-row.day,
body[data-scheme="inverse"] .city-row.day {
  background: #3a3520;
}

body[data-scheme="dark"] .city-row.evening,
body[data-scheme="inverse"] .city-row.evening {
  background: #3a3025;
}

body[data-scheme="dark"] .city-row.night,
body[data-scheme="inverse"] .city-row.night {
  background: #252535;
}

body[data-scheme="dark"] .city-row:hover,
body[data-scheme="inverse"] .city-row:hover,
body[data-scheme="dark"] .city-row.selected,
body[data-scheme="inverse"] .city-row.selected {
  background: #28445a;
}

body[data-scheme="dark"] .arrow-diff.same,
body[data-scheme="inverse"] .arrow-diff.same,
body[data-scheme="dark"] .diff.same,
body[data-scheme="inverse"] .diff.same {
  color: #f2e4cf;
  background: #344a32;
  border-color: rgba(169, 139, 107, 0.38);
}

body[data-scheme="dark"] .arrow-diff.ahead,
body[data-scheme="inverse"] .arrow-diff.ahead,
body[data-scheme="dark"] .diff.ahead,
body[data-scheme="inverse"] .diff.ahead {
  color: #f2e4cf;
  background: #28445a;
  border-color: rgba(169, 139, 107, 0.38);
}

body[data-scheme="dark"] .arrow-diff.behind,
body[data-scheme="inverse"] .arrow-diff.behind,
body[data-scheme="dark"] .diff.behind,
body[data-scheme="inverse"] .diff.behind {
  color: #241c15;
  background: #d2aa55;
  border-color: #d2aa55;
}

body[data-scheme="dark"] .city-search-input::placeholder,
body[data-scheme="inverse"] .city-search-input::placeholder {
  color: rgba(240, 223, 197, 0.72);
  -webkit-text-fill-color: rgba(240, 223, 197, 0.72);
}

@media (max-width: 960px) {
  body.postid-4274 {
    --wtz-main-grid-columns: 1fr;
  }

  body.postid-4274 .cs-breadcrumbs,
  body.postid-4274 .cs-entry__header,
  body.postid-4274 .world-time-zone-monitor-wrapper,
  body.postid-4274 .entry-content > article {
    width: min(100%, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
  }

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

@media (max-width: 640px) {
  body.postid-4274 .cs-breadcrumbs,
  body.postid-4274 .cs-entry__header,
  body.postid-4274 .world-time-zone-monitor-wrapper,
  body.postid-4274 .entry-content > article {
    width: min(100%, calc(100vw - 20px));
    max-width: calc(100vw - 20px);
  }

  .world-time-zone-monitor-container {
    padding: 10px;
  }

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

  .quick-action-cluster:first-child {
    grid-template-columns: 1fr;
  }

  .time-compare {
    grid-template-columns: 1fr;
  }

  .compare-arrow {
    min-height: 54px;
  }

  .option-group {
    grid-template-columns: 1fr;
  }

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

  .city-search-row {
    grid-template-columns: 1fr;
  }

  .world-clock-grid {
    grid-template-columns: 1fr;
  }

  .city-row {
    grid-template-columns: 28px minmax(0, 1fr) 45px 58px;
  }

  .city-row .diff {
    grid-column: 2 / -1;
    justify-self: end;
    margin-top: 2px;
  }
}

@media (max-width: 380px) {
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .city-row {
    grid-template-columns: 24px minmax(0, 1fr) 52px;
  }

  .city-row .date {
    display: none;
  }

  .city-row .diff {
    grid-column: 2 / -1;
  }
}

/* Phase 1 v9: keep after-tool ad visually centered between tool and article. */
body.postid-4274 .world-time-zone-monitor-wrapper + .roberin-qa-ad-placeholder + article,
body.postid-4274 .world-time-zone-monitor-wrapper + .aicp.roberin-aicp-ad-guard + article {
  margin-top: -16px !important;
}

@media (max-width: 960px) {
  body.postid-4274 .world-time-zone-monitor-wrapper + .roberin-qa-ad-placeholder + article,
  body.postid-4274 .world-time-zone-monitor-wrapper + .aicp.roberin-aicp-ad-guard + article {
    margin-top: -16px !important;
  }
}

/* Phase 2 body v1: PDF-reference article rhythm with user-requested desktop +100px width. */
body.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article {
  width: min(1150px, calc(100vw - 32px));
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 42px;
  padding: 28px;
  box-sizing: border-box;
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  background: #f8efe2;
  border: 2px solid var(--wtz-line);
  border-radius: 0;
  box-shadow: 5px 5px 0 rgba(82, 65, 50, 0.22);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  transform: none;
  word-break: keep-all;
}

body.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article,
body.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article *,
body.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article *::before,
body.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article *::after {
  box-sizing: border-box;
}

body.postid-4274 .world-time-zone-article__hero {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0 0 22px;
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  background: transparent;
  border: 0;
  border-bottom: 1px dashed rgba(107, 87, 69, 0.34);
  box-shadow: none;
}

body.postid-4274 .world-time-zone-article__kicker {
  width: fit-content;
  margin: 0;
  padding: 4px 8px;
  color: var(--wtz-green-ink);
  -webkit-text-fill-color: currentColor;
  background: var(--wtz-green);
  border: 1px solid var(--wtz-line);
  box-shadow: 2px 2px 0 rgba(82, 65, 50, 0.13);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -0.01em;
}

body.postid-4274 .world-time-zone-article h2 {
  margin: 0;
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 30px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.045em;
}

body.postid-4274 .world-time-zone-article h3 {
  margin: 0;
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 950;
  letter-spacing: -0.025em;
}

body.postid-4274 .world-time-zone-article p,
body.postid-4274 .world-time-zone-article li,
body.postid-4274 .world-time-zone-article summary {
  color: var(--wtz-muted);
  -webkit-text-fill-color: currentColor;
}

body.postid-4274 .world-time-zone-article p {
  margin: 0;
}

body.postid-4274 .world-time-zone-article code {
  display: inline-block;
  max-width: 100%;
  padding: 2px 6px;
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  background: rgba(255, 248, 237, 0.68);
  border: 1px solid rgba(107, 87, 69, 0.36);
  border-radius: 0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

body.postid-4274 .world-time-zone-article__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--wtz-ink);
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.postid-4274 .world-time-zone-article__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 10px;
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  text-decoration: none;
  background: #fff8ed;
  border: 1px solid var(--wtz-line);
  border-radius: 0;
  box-shadow: 3px 3px 0 rgba(82, 65, 50, 0.13);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
}

body.postid-4274 .world-time-zone-article__nav a:focus-visible {
  outline: 3px solid #d6a62b;
  outline-offset: 2px;
}

body.postid-4274 .world-time-zone-article__section {
  margin: 6px 0 0;
  padding: 22px 0 0;
  color: var(--wtz-ink);
  background: transparent;
  border: 0;
  border-top: 1px dashed rgba(107, 87, 69, 0.34);
  box-shadow: none;
}

body.postid-4274 .world-time-zone-article__section:first-of-type {
  margin-top: 18px;
  padding-top: 0;
  border-top: 0;
}

body.postid-4274 .world-time-zone-article__grid,
body.postid-4274 .world-time-zone-article__process-grid,
body.postid-4274 .world-time-zone-article__use-grid {
  display: grid;
  min-width: 0;
  gap: 10px;
  margin-top: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.postid-4274 .world-time-zone-article__grid,
body.postid-4274 .world-time-zone-article__process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.postid-4274 .world-time-zone-article__use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.postid-4274 .world-time-zone-article__card,
body.postid-4274 .world-time-zone-article__use,
body.postid-4274 .world-time-zone-article details {
  min-width: 0;
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 12px;
  color: var(--wtz-muted);
  -webkit-text-fill-color: currentColor;
  background: #fff8ed;
  border: 1px solid var(--wtz-line);
  border-radius: 0;
  box-shadow: 3px 3px 0 rgba(82, 65, 50, 0.13);
}

body.postid-4274 .world-time-zone-article__process {
  min-width: 0;
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 12px;
  color: var(--wtz-muted);
  -webkit-text-fill-color: currentColor;
  background: rgba(226, 237, 216, 0.7);
  border: 1px solid var(--wtz-line);
  border-radius: 0;
  box-shadow: 3px 3px 0 rgba(82, 65, 50, 0.13);
}

body.postid-4274 .world-time-zone-article__process span {
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.25;
}

body.postid-4274 .world-time-zone-article__steps,
body.postid-4274 .world-time-zone-article__notice ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

body.postid-4274 .world-time-zone-article__steps li,
body.postid-4274 .world-time-zone-article__notice li {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  min-height: 28px;
  margin: 0;
  padding: 0;
  color: var(--wtz-muted);
  -webkit-text-fill-color: currentColor;
}

body.postid-4274 .world-time-zone-article__marker,
body.postid-4274 .world-time-zone-article__notice-marker {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  background: var(--wtz-green);
  border: 1px solid var(--wtz-line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
}

body.postid-4274 .world-time-zone-article__notice-marker {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  background: var(--wtz-line);
  border: 0;
}

body.postid-4274 .world-time-zone-article__li-text {
  min-width: 0;
  color: var(--wtz-muted);
  -webkit-text-fill-color: currentColor;
}

body.postid-4274 .world-time-zone-article__notice {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 12px;
  color: var(--wtz-muted);
  -webkit-text-fill-color: currentColor;
  background: rgba(239, 225, 188, 0.64);
  border: 1px dashed var(--wtz-line);
  border-radius: 0;
  box-shadow: 3px 3px 0 rgba(82, 65, 50, 0.13);
}

body.postid-4274 .world-time-zone-article details {
  margin-top: 13px;
}

body.postid-4274 .world-time-zone-article summary {
  cursor: pointer;
  color: var(--wtz-ink);
  -webkit-text-fill-color: currentColor;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

body.postid-4274 .world-time-zone-article details p {
  padding-top: 4px;
}

body[data-scheme="dark"].postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article,
body[data-scheme="inverse"].postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article {
  color: var(--wtz-ink);
  background: #33271d;
  border-color: var(--wtz-line);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.32);
}

body[data-scheme="dark"].postid-4274 .world-time-zone-article__hero,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article__hero,
body[data-scheme="dark"].postid-4274 .world-time-zone-article__section,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article__section {
  border-color: rgba(169, 139, 107, 0.46);
}

body[data-scheme="dark"].postid-4274 .world-time-zone-article__kicker,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article__kicker,
body[data-scheme="dark"].postid-4274 .world-time-zone-article__marker,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article__marker {
  color: var(--wtz-ink);
  background: var(--wtz-green);
  border-color: var(--wtz-line);
}

body[data-scheme="dark"].postid-4274 .world-time-zone-article__nav a,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article__nav a,
body[data-scheme="dark"].postid-4274 .world-time-zone-article__card,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article__card,
body[data-scheme="dark"].postid-4274 .world-time-zone-article__use,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article__use,
body[data-scheme="dark"].postid-4274 .world-time-zone-article details,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article details {
  color: var(--wtz-muted);
  background: #241c15;
  border-color: var(--wtz-line);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

body[data-scheme="dark"].postid-4274 .world-time-zone-article__process,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article__process {
  background: rgba(52, 74, 50, 0.68);
  border-color: var(--wtz-line);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

body[data-scheme="dark"].postid-4274 .world-time-zone-article__notice,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article__notice {
  background: rgba(89, 65, 38, 0.58);
  border-color: var(--wtz-line);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

body[data-scheme="dark"].postid-4274 .world-time-zone-article code,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article code {
  background: rgba(36, 28, 21, 0.72);
  border-color: rgba(169, 139, 107, 0.42);
}

@media (max-width: 960px) {
  body.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article {
    width: min(100%, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    padding: 22px;
    transform: none;
  }

  body.postid-4274 .world-time-zone-article__grid,
  body.postid-4274 .world-time-zone-article__process-grid,
  body.postid-4274 .world-time-zone-article__use-grid {
    grid-template-columns: 1fr;
  }

  body.postid-4274 .world-time-zone-article__use-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article {
    width: min(100%, calc(100vw - 20px));
    max-width: calc(100vw - 20px);
    padding: 18px;
    font-size: 15.5px;
    transform: none;
  }

  body.postid-4274 .world-time-zone-article h2 {
    font-size: clamp(24px, 7vw, 28px);
  }

  body.postid-4274 .world-time-zone-article h3 {
    font-size: 18px;
  }

  body.postid-4274 .world-time-zone-article__nav {
    gap: 7px;
  }

  body.postid-4274 .world-time-zone-article__nav a {
    flex: 1 1 calc(50% - 7px);
  }

  body.postid-4274 .world-time-zone-article__use-grid {
    grid-template-columns: 1fr;
  }
}

/* Phase 2 v1b: body width and after-tool gap hard override against theme article defaults. */
body.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article#world-time-zone-guide {
  width: min(1150px, calc(100vw - 32px)) !important;
  max-width: 1150px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 28px !important;
  box-shadow: 5px 5px 0 rgba(82, 65, 50, 0.22) !important;
}

body.postid-4274 .world-time-zone-monitor-wrapper + .roberin-qa-ad-placeholder + article.roberin-article-body.world-time-zone-article#world-time-zone-guide,
body.postid-4274 .world-time-zone-monitor-wrapper + .aicp.roberin-aicp-ad-guard + article.roberin-article-body.world-time-zone-article#world-time-zone-guide {
  margin-top: 24px !important;
}

body[data-scheme="dark"].postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article#world-time-zone-guide,
body[data-scheme="inverse"].postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article#world-time-zone-guide {
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.32) !important;
}

@media (max-width: 960px) {
  body.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article#world-time-zone-guide {
    width: min(100%, calc(100vw - 24px)) !important;
    max-width: calc(100vw - 24px) !important;
    padding: 22px !important;
  }

  body.postid-4274 .world-time-zone-monitor-wrapper + .roberin-qa-ad-placeholder + article.roberin-article-body.world-time-zone-article#world-time-zone-guide,
  body.postid-4274 .world-time-zone-monitor-wrapper + .aicp.roberin-aicp-ad-guard + article.roberin-article-body.world-time-zone-article#world-time-zone-guide {
    margin-top: 0 !important;
  }
}

@media (max-width: 640px) {
  body.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article#world-time-zone-guide {
    width: min(100%, calc(100vw - 20px)) !important;
    max-width: calc(100vw - 20px) !important;
    padding: 18px !important;
  }
}

/* Phase 2 body v2 repair: live PDF exact-style clone + contained FAQ disclosure marker. */
body.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article#world-time-zone-guide {
  width: min(1150px, calc(100vw - 32px)) !important;
  max-width: 1150px !important;
  margin: 24px auto 42px !important;
  padding: 28px !important;
  color: #34281f !important;
  -webkit-text-fill-color: currentColor !important;
  background: #f8efe2 !important;
  border: 2px solid #6b5745 !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 rgba(82, 65, 50, 0.22) !important;
  font-size: 16px !important;
  line-height: 1.72 !important;
  transform: none !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__hero {
  display: grid !important;
  gap: 13px !important;
  margin: 0 !important;
  padding: 0 0 22px !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px dashed rgba(107, 87, 69, 0.34) !important;
  box-shadow: none !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__section {
  margin: 6px 0 0 !important;
  padding: 22px 0 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-top: 1px dashed rgba(107, 87, 69, 0.34) !important;
  box-shadow: none !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__section:first-of-type {
  margin-top: 18px !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide h2 {
  color: #34281f !important;
  -webkit-text-fill-color: currentColor !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 30px !important;
  line-height: 1.22 !important;
  font-weight: 950 !important;
  letter-spacing: -0.045em !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide h3 {
  color: #34281f !important;
  -webkit-text-fill-color: currentColor !important;
  font-size: 19px !important;
  line-height: 1.3 !important;
  font-weight: 950 !important;
  letter-spacing: -0.025em !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide p,
body.postid-4274 .world-time-zone-article#world-time-zone-guide li {
  color: #574838 !important;
  -webkit-text-fill-color: currentColor !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__kicker {
  color: #2f4e2e !important;
  -webkit-text-fill-color: currentColor !important;
  background: #e3efd2 !important;
  border: 1px solid #6b5745 !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0 rgba(82, 65, 50, 0.13) !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__nav a,
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__card,
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__use,
body.postid-4274 .world-time-zone-article#world-time-zone-guide details {
  color: #574838 !important;
  -webkit-text-fill-color: currentColor !important;
  background: #fff8ed !important;
  border: 1px solid #6b5745 !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 rgba(82, 65, 50, 0.13) !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__process {
  color: #574838 !important;
  -webkit-text-fill-color: currentColor !important;
  background: rgba(226, 237, 216, 0.7) !important;
  border: 1px solid #6b5745 !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 rgba(82, 65, 50, 0.13) !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__notice {
  color: #574838 !important;
  -webkit-text-fill-color: currentColor !important;
  background: rgba(239, 225, 188, 0.64) !important;
  border: 1px dashed #6b5745 !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 rgba(82, 65, 50, 0.13) !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide details summary {
  display: grid !important;
  grid-template-columns: 12px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 8px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #34281f !important;
  -webkit-text-fill-color: currentColor !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  font-weight: 900 !important;
  list-style: none !important;
  overflow: visible !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide details summary::marker {
  content: "" !important;
  display: none !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide details summary::-webkit-details-marker {
  display: none !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__summary-marker {
  display: inline-grid !important;
  place-items: center !important;
  width: 12px !important;
  height: 20px !important;
  margin: 0 !important;
  color: #34281f !important;
  -webkit-text-fill-color: currentColor !important;
  font-size: 18px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  transform: translateY(1px) !important;
  transform-origin: center !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide details[open] .world-time-zone-article__summary-marker {
  transform: translateY(1px) rotate(90deg) !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__summary-text {
  min-width: 0 !important;
  max-width: 100% !important;
  color: #34281f !important;
  -webkit-text-fill-color: currentColor !important;
  overflow-wrap: anywhere !important;
}

body[data-scheme="dark"].postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article#world-time-zone-guide,
body[data-scheme="inverse"].postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article#world-time-zone-guide,
body.dark-mode.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article#world-time-zone-guide {
  color: #f2e4cf !important;
  background: #33271d !important;
  border-color: #a98b6b !important;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.32) !important;
}

body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide h2,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide h2,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide h2,
body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide h3,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide h3,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide h3,
body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide details summary,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide details summary,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide details summary,
body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__summary-marker,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__summary-marker,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__summary-marker,
body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__summary-text,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__summary-text,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__summary-text {
  color: #f2e4cf !important;
  -webkit-text-fill-color: currentColor !important;
}

body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide p,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide p,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide p,
body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide li,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide li,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide li {
  color: #d7c4aa !important;
  -webkit-text-fill-color: currentColor !important;
}

@media (max-width: 960px) {
  body.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article#world-time-zone-guide {
    width: min(100%, calc(100vw - 24px)) !important;
    max-width: calc(100vw - 24px) !important;
    padding: 22px !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 640px) {
  body.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article#world-time-zone-guide {
    width: min(100%, calc(100vw - 24px)) !important;
    max-width: calc(100vw - 24px) !important;
    padding: 14px !important;
    font-size: 15px !important;
  }
  body.postid-4274 .world-time-zone-article#world-time-zone-guide h2 {
    font-size: clamp(25px, 7vw, 28px) !important;
  }
}

/* Phase 2 body v2c: tighten computed parity with the PDF body reference. */
body.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article#world-time-zone-guide {
  display: grid !important;
  gap: 18px !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide h2,
body.postid-4274 .world-time-zone-article#world-time-zone-guide h3 {
  margin: 0 !important;
  padding: 0 !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide details p {
  margin: 0 !important;
  padding-top: 4px !important;
}

body[data-scheme="dark"].postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article#world-time-zone-guide,
body[data-scheme="inverse"].postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article#world-time-zone-guide,
body.dark-mode.postid-4274 .entry-content > article.roberin-article-body.world-time-zone-article#world-time-zone-guide {
  color: #d8cab7 !important;
  -webkit-text-fill-color: #f2e4cf !important;
  background: #4e4238 !important;
  border-color: #a18466 !important;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.32) !important;
}

body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__hero,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__hero,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__hero,
body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__section,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__section,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__section {
  border-color: rgba(169, 139, 107, 0.46) !important;
}

body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__nav a,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__nav a,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__nav a,
body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__card,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__card,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__card,
body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__use,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__use,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__use,
body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide details,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide details,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide details {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: currentColor !important;
  background: #33271d !important;
  border-color: rgba(169, 139, 107, 0.72) !important;
  box-shadow: 3px 3px 0 rgba(32, 24, 17, 0.52) !important;
}

body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__process,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__process,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__process {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: currentColor !important;
  background: rgba(52, 74, 50, 0.68) !important;
  border-color: rgba(169, 139, 107, 0.72) !important;
  box-shadow: 3px 3px 0 rgba(32, 24, 17, 0.52) !important;
}

body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__notice,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__notice,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__notice {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: currentColor !important;
  background: rgba(89, 65, 38, 0.58) !important;
  border-color: rgba(169, 139, 107, 0.72) !important;
  box-shadow: 3px 3px 0 rgba(32, 24, 17, 0.52) !important;
}

body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__kicker,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__kicker,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__kicker,
body[data-scheme="dark"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__marker,
body[data-scheme="inverse"].postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__marker,
body.dark-mode.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__marker {
  color: #f2e4cf !important;
  -webkit-text-fill-color: currentColor !important;
  background: rgba(52, 74, 50, 0.72) !important;
  border-color: rgba(169, 139, 107, 0.72) !important;
}

/* Phase 2 body v2d: match PDF typography roles exactly. */
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__kicker {
  margin: 0 !important;
  padding: 5px 9px !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
  font-weight: 680 !important;
  letter-spacing: 0.01em !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide h2 {
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide h3 {
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
}

/* Phase 2 body v3: adapted verbatim from PDF reference article CSS; desktop width +100 retained. */
body.postid-4274 {
  --pdf-article-page: #f9f1e7;
  --pdf-article-panel: #f8efe2;
  --pdf-article-card: #fff8ed;
  --pdf-article-accent-paper: #e2edd8;
  --pdf-article-text: #34281f;
  --pdf-article-muted: #574838;
  --pdf-article-line: #6b5745;
  --pdf-article-line-soft: rgba(107, 87, 69, .34);
  --pdf-article-mustard: #d2aa55;
  --pdf-article-mustard-soft: rgba(210, 170, 85, .24);
  --pdf-article-focus: #4f7d94;
  --pdf-article-shadow: rgba(82, 65, 50, .22);
  --pdf-article-soft-shadow: rgba(82, 65, 50, .13);
}
body.postid-4274[data-scheme="dark"],
body.postid-4274[data-scheme="inverse"],
body.postid-4274.dark-mode {
  --pdf-article-page: #201811;
  --pdf-article-panel: #33271d;
  --pdf-article-card: #2b2119;
  --pdf-article-accent-paper: #344a32;
  --pdf-article-text: #f2e4cf;
  --pdf-article-muted: #f0dfc5;
  --pdf-article-line: #a98b6b;
  --pdf-article-line-soft: rgba(169, 139, 107, .46);
  --pdf-article-mustard: #d2aa55;
  --pdf-article-mustard-soft: rgba(210, 170, 85, .22);
  --pdf-article-focus: #d2aa55;
  --pdf-article-shadow: rgba(0, 0, 0, .32);
  --pdf-article-soft-shadow: rgba(0, 0, 0, .2);
}
body.postid-4274 .entry-content article.roberin-article-body.world-time-zone-article,
body.postid-4274 .world-time-zone-article {
  position: relative;
  z-index: 0;
  display: grid !important;
  gap: 18px !important;
  box-sizing: border-box !important;
  width: min(1150px, calc(100vw - 32px)) !important;
  max-width: 1150px !important;
  min-width: 0 !important;
  margin: 24px auto 42px !important;
  padding: clamp(16px, 3vw, 28px) !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  background:
    linear-gradient(rgba(107, 87, 69, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, .04) 1px, transparent 1px),
    var(--pdf-article-panel) !important;
  background-size: 28px 28px, 28px 28px, auto !important;
  border: 2px solid var(--pdf-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 var(--pdf-article-shadow) !important;
  overflow: hidden !important;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif !important;
  line-height: 1.72 !important;
  word-break: keep-all !important;
}

body.postid-4274 .world-time-zone-article,
body.postid-4274 .world-time-zone-article *,
body.postid-4274 .world-time-zone-article *::before,
body.postid-4274 .world-time-zone-article *::after {
  box-sizing: border-box !important;
  min-width: 0 !important;
}

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

body.postid-4274 .world-time-zone-article__hero,
body.postid-4274 .world-time-zone-article__section {
  display: grid !important;
  gap: 13px !important;
  min-width: 0 !important;
  margin: 0 !important;
}

body.postid-4274 .world-time-zone-article__hero {
  padding: 0 0 22px !important;
  border-bottom: 1px dashed var(--pdf-article-line-soft) !important;
}

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

body.postid-4274 .world-time-zone-article__kicker {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 26px !important;
  margin: 0 !important;
  padding: 5px 9px !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  background: var(--pdf-article-accent-paper) !important;
  border: 1px solid var(--pdf-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0 var(--pdf-article-soft-shadow) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  letter-spacing: .01em !important;
}

body.postid-4274 .world-time-zone-article h2,
body.postid-4274 .world-time-zone-article h3 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  background: transparent !important;
  border: 0 !important;
  border-left: 0 !important;
  border-left-width: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  letter-spacing: -.02em !important;
  word-break: keep-all !important;
}

body.postid-4274 .world-time-zone-article h2 {
  font-size: clamp(25px, 3vw, 30px) !important;
  font-weight: 950 !important;
  line-height: 1.18 !important;
}

body.postid-4274 .world-time-zone-article h3 {
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
}

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

body.postid-4274 .world-time-zone-article strong {
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  font-weight: 920 !important;
}

body.postid-4274 .world-time-zone-article__nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
}

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

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

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

body.postid-4274 .world-time-zone-article__use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

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

body.postid-4274 .world-time-zone-article__notice {
  background: rgba(239, 225, 188, .64) !important;
  border-style: dashed !important;
}

body.postid-4274 .world-time-zone-article__process {
  background: rgba(226, 237, 216, .70) !important;
}

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

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

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

body.postid-4274 .world-time-zone-article ol,
body.postid-4274 .world-time-zone-article ol.world-time-zone-article__steps {
  counter-reset: pdf-article-step !important;
}

body.postid-4274 .world-time-zone-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-4274 .world-time-zone-article :is(ul, ol) > li::before {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  flex: 0 0 auto !important;
  align-self: center !important;
  box-sizing: border-box !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  border-radius: 0 !important;
}

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

body.postid-4274 .world-time-zone-article ol > li,
body.postid-4274 .world-time-zone-article ol.world-time-zone-article__steps > li {
  counter-increment: pdf-article-step !important;
}

body.postid-4274 .world-time-zone-article ol > li::before,
body.postid-4274 .world-time-zone-article ol.world-time-zone-article__steps > li::before {
  content: counter(pdf-article-step) !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 20px !important;
  height: 20px !important;
  background: var(--pdf-article-mustard-soft) !important;
  border: 1px solid var(--pdf-article-line) !important;
  box-shadow: 1px 1px 0 rgba(82, 65, 50, .22) !important;
  font-size: 11px !important;
  font-weight: 920 !important;
  line-height: 1 !important;
}

body.postid-4274 .world-time-zone-article__li-text {
  display: block !important;
  min-width: 0 !important;
  align-self: center !important;
}

body.postid-4274 .world-time-zone-article details {
  margin: 0 !important;
}

body.postid-4274 .world-time-zone-article summary {
  cursor: pointer !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  font-weight: 950 !important;
  line-height: 1.45 !important;
}

body.postid-4274 .world-time-zone-article details[open] summary {
  margin-bottom: 8px !important;
}

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

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

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

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


/* Target keeps source-level marker spans for robust list/FAQ containment while matching PDF marker geometry. */
body.postid-4274 .world-time-zone-article :is(ul, ol) > li::before {
  content: none !important;
  display: none !important;
}
body.postid-4274 .world-time-zone-article__marker {
  display: inline-grid !important;
  place-items: center !important;
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 auto !important;
  align-self: center !important;
  margin: 0 !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  background: var(--pdf-article-mustard-soft) !important;
  border: 1px solid var(--pdf-article-line) !important;
  border-radius: 0 !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-4274 .world-time-zone-article__notice-marker {
  display: inline-block !important;
  width: 9px !important;
  height: 9px !important;
  flex: 0 0 auto !important;
  align-self: center !important;
  margin: 0 !important;
  background: var(--pdf-article-mustard) !important;
  border: 1px solid var(--pdf-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 1px 1px 0 rgba(82, 65, 50, .22) !important;
}
body.postid-4274[data-scheme="dark"] .world-time-zone-article__marker,
body.postid-4274[data-scheme="inverse"] .world-time-zone-article__marker,
body.postid-4274.dark-mode .world-time-zone-article__marker,
body.postid-4274[data-scheme="dark"] .world-time-zone-article__notice-marker,
body.postid-4274[data-scheme="inverse"] .world-time-zone-article__notice-marker,
body.postid-4274.dark-mode .world-time-zone-article__notice-marker {
  border-color: #a98b6b !important;
}
body.postid-4274 .world-time-zone-article details summary {
  display: grid !important;
  grid-template-columns: 12px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 8px !important;
  width: 100% !important;
  min-width: 0 !important;
  list-style: none !important;
}
body.postid-4274 .world-time-zone-article details summary::marker {
  content: "" !important;
  display: none !important;
}
body.postid-4274 .world-time-zone-article details summary::-webkit-details-marker {
  display: none !important;
}
body.postid-4274 .world-time-zone-article__summary-marker {
  display: inline-grid !important;
  place-items: center !important;
  width: 12px !important;
  height: 21.75px !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  font-size: 18px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
}
body.postid-4274 .world-time-zone-article details[open] .world-time-zone-article__summary-marker {
  transform: rotate(90deg) !important;
}
body.postid-4274 .world-time-zone-article__summary-text {
  min-width: 0 !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  overflow-wrap: anywhere !important;
}
@media (max-width: 920px) {
  body.postid-4274 .world-time-zone-article__use-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 640px) {
  body.postid-4274 .entry-content article.roberin-article-body.world-time-zone-article,
  body.postid-4274 .world-time-zone-article {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-top: 0 !important;
    padding: 12px !important;
    box-shadow: 4px 4px 0 rgba(82, 65, 50, .16) !important;
  }
  body.postid-4274 .world-time-zone-article__grid,
  body.postid-4274 .world-time-zone-article__process-grid,
  body.postid-4274 .world-time-zone-article__use-grid {
    grid-template-columns: 1fr !important;
  }
  body.postid-4274 .world-time-zone-article h3 {
    font-size: 18px !important;
  }
}
@media (max-width: 370px) {
  body.postid-4274 .world-time-zone-article h2 {
    font-size: 25.2px !important;
  }
}

/* Phase 2 body v4: high-specificity PDF article clone; outranks earlier v1/v2 repair blocks. */
body.postid-4274 {
  --pdf-article-page: #f9f1e7; --pdf-article-panel: #f8efe2; --pdf-article-card: #fff8ed; --pdf-article-accent-paper: #e2edd8; --pdf-article-text: #34281f; --pdf-article-muted: #574838; --pdf-article-line: #6b5745; --pdf-article-line-soft: rgba(107, 87, 69, .34); --pdf-article-mustard: #d2aa55; --pdf-article-mustard-soft: rgba(210, 170, 85, .24); --pdf-article-focus: #4f7d94; --pdf-article-shadow: rgba(82, 65, 50, .22); --pdf-article-soft-shadow: rgba(82, 65, 50, .13);
}
body.postid-4274[data-scheme="dark"], body.postid-4274[data-scheme="inverse"], body.postid-4274.dark-mode {
  --pdf-article-page: #201811; --pdf-article-panel: #33271d; --pdf-article-card: #2b2119; --pdf-article-accent-paper: #344a32; --pdf-article-text: #f2e4cf; --pdf-article-muted: #f0dfc5; --pdf-article-line: #a98b6b; --pdf-article-line-soft: rgba(169, 139, 107, .46); --pdf-article-mustard: #d2aa55; --pdf-article-mustard-soft: rgba(210, 170, 85, .22); --pdf-article-focus: #d2aa55; --pdf-article-shadow: rgba(0, 0, 0, .32); --pdf-article-soft-shadow: rgba(0, 0, 0, .2);
}
body.postid-4274 .entry-content article.roberin-article-body.world-time-zone-article#world-time-zone-guide,
body.postid-4274 .world-time-zone-article#world-time-zone-guide {
  position: relative;
  z-index: 0;
  display: grid !important;
  gap: 18px !important;
  box-sizing: border-box !important;
  width: min(1150px, calc(100vw - 32px)) !important;
  max-width: 1150px !important;
  min-width: 0 !important;
  margin: 24px auto 42px !important;
  padding: clamp(16px, 3vw, 28px) !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  background:
    linear-gradient(rgba(107, 87, 69, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, .04) 1px, transparent 1px),
    var(--pdf-article-panel) !important;
  background-size: 28px 28px, 28px 28px, auto !important;
  border: 2px solid var(--pdf-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 var(--pdf-article-shadow) !important;
  overflow: hidden !important;
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif !important;
  line-height: 1.72 !important;
  word-break: keep-all !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide,
body.postid-4274 .world-time-zone-article#world-time-zone-guide *,
body.postid-4274 .world-time-zone-article#world-time-zone-guide *::before,
body.postid-4274 .world-time-zone-article#world-time-zone-guide *::after {
  box-sizing: border-box !important;
  min-width: 0 !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide :is(p, li, td, th, summary, span, strong, code, h2, h3) {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__hero,
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__section {
  display: grid !important;
  gap: 13px !important;
  min-width: 0 !important;
  margin: 0 !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__hero {
  padding: 0 0 22px !important;
  border-bottom: 1px dashed var(--pdf-article-line-soft) !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__section + .world-time-zone-article__section {
  margin-top: 6px !important;
  padding-top: 22px !important;
  border-top: 1px dashed var(--pdf-article-line-soft) !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__kicker {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  min-height: 26px !important;
  margin: 0 !important;
  padding: 5px 9px !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  background: var(--pdf-article-accent-paper) !important;
  border: 1px solid var(--pdf-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0 var(--pdf-article-soft-shadow) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
  letter-spacing: .01em !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide h2,
body.postid-4274 .world-time-zone-article#world-time-zone-guide h3 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  background: transparent !important;
  border: 0 !important;
  border-left: 0 !important;
  border-left-width: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  text-shadow: none !important;
  letter-spacing: -.02em !important;
  word-break: keep-all !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide h2 {
  font-size: clamp(25px, 3vw, 30px) !important;
  font-weight: 950 !important;
  line-height: 1.18 !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide h3 {
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
}

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

body.postid-4274 .world-time-zone-article#world-time-zone-guide strong {
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  font-weight: 920 !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
}

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

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__nav a:hover,
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__nav a:focus-visible {
  background: var(--pdf-article-mustard-soft) !important;
  outline: 2px solid var(--pdf-article-focus) !important;
  outline-offset: 2px !important;
}

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

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

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

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__notice {
  background: rgba(239, 225, 188, .64) !important;
  border-style: dashed !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__process {
  background: rgba(226, 237, 216, .70) !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__use span,
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__process span {
  color: var(--pdf-article-muted) !important;
  -webkit-text-fill-color: var(--pdf-article-muted) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
}

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

body.postid-4274 .world-time-zone-article#world-time-zone-guide :is(ul, ol) {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide ol,
body.postid-4274 .world-time-zone-article#world-time-zone-guide ol.world-time-zone-article__steps {
  counter-reset: pdf-article-step !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide :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-4274 .world-time-zone-article#world-time-zone-guide :is(ul, ol) > li::before {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  flex: 0 0 auto !important;
  align-self: center !important;
  box-sizing: border-box !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  border-radius: 0 !important;
}

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

body.postid-4274 .world-time-zone-article#world-time-zone-guide ol > li,
body.postid-4274 .world-time-zone-article#world-time-zone-guide ol.world-time-zone-article__steps > li {
  counter-increment: pdf-article-step !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide ol > li::before,
body.postid-4274 .world-time-zone-article#world-time-zone-guide ol.world-time-zone-article__steps > li::before {
  content: counter(pdf-article-step) !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 20px !important;
  height: 20px !important;
  background: var(--pdf-article-mustard-soft) !important;
  border: 1px solid var(--pdf-article-line) !important;
  box-shadow: 1px 1px 0 rgba(82, 65, 50, .22) !important;
  font-size: 11px !important;
  font-weight: 920 !important;
  line-height: 1 !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__li-text {
  display: block !important;
  min-width: 0 !important;
  align-self: center !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide details {
  margin: 0 !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide summary {
  cursor: pointer !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  font-weight: 950 !important;
  line-height: 1.45 !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide details[open] summary {
  margin-bottom: 8px !important;
}

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

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

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

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


body.postid-4274 .world-time-zone-article#world-time-zone-guide :is(ul, ol) > li::before { content: none !important; display: none !important; }
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__marker { display: inline-grid !important; place-items: center !important; width: 20px !important; height: 20px !important; flex: 0 0 auto !important; align-self: center !important; margin: 0 !important; color: var(--pdf-article-text) !important; -webkit-text-fill-color: var(--pdf-article-text) !important; background: var(--pdf-article-mustard-soft) !important; border: 1px solid var(--pdf-article-line) !important; border-radius: 0 !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-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__notice-marker { display: inline-block !important; width: 9px !important; height: 9px !important; flex: 0 0 auto !important; align-self: center !important; margin: 0 !important; background: var(--pdf-article-mustard) !important; border: 1px solid var(--pdf-article-line) !important; border-radius: 0 !important; box-shadow: 1px 1px 0 rgba(82, 65, 50, .22) !important; }
body.postid-4274 .world-time-zone-article#world-time-zone-guide details summary { display: grid !important; grid-template-columns: 12px minmax(0, 1fr) !important; align-items: start !important; gap: 8px !important; width: 100% !important; min-width: 0 !important; list-style: none !important; }
body.postid-4274 .world-time-zone-article#world-time-zone-guide details summary::marker { content: "" !important; display: none !important; }
body.postid-4274 .world-time-zone-article#world-time-zone-guide details summary::-webkit-details-marker { display: none !important; }
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__summary-marker { display: inline-grid !important; place-items: center !important; width: 12px !important; height: 21.75px !important; color: var(--pdf-article-text) !important; -webkit-text-fill-color: var(--pdf-article-text) !important; font-size: 18px !important; line-height: 1 !important; font-weight: 950 !important; }
body.postid-4274 .world-time-zone-article#world-time-zone-guide details[open] .world-time-zone-article__summary-marker { transform: rotate(90deg) !important; }
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__summary-text { min-width: 0 !important; color: var(--pdf-article-text) !important; -webkit-text-fill-color: var(--pdf-article-text) !important; overflow-wrap: anywhere !important; }
@media (max-width: 920px) { body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__use-grid { grid-template-columns: 1fr !important; } }
@media (max-width: 640px) { body.postid-4274 .entry-content article.roberin-article-body.world-time-zone-article#world-time-zone-guide, body.postid-4274 .world-time-zone-article#world-time-zone-guide { width: calc(100vw - 24px) !important; max-width: calc(100vw - 24px) !important; margin-top: 0 !important; padding: 12px !important; box-shadow: 4px 4px 0 rgba(82, 65, 50, .16) !important; } body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__grid, body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__process-grid, body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__use-grid { grid-template-columns: 1fr !important; } body.postid-4274 .world-time-zone-article#world-time-zone-guide h3 { font-size: 18px !important; } }
@media (max-width: 370px) { body.postid-4274 .world-time-zone-article#world-time-zone-guide h2 { font-size: 25.2px !important; } }

/* Phase 2 body v5: computed parity fixes against live PDF reference after global article CSS. */
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__hero,
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__nav,
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__section,
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__grid,
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__process-grid,
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__use-grid {
  color: #34281f !important;
  -webkit-text-fill-color: #34281f !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__kicker {
  display: flex !important;
  align-items: center !important;
  color: #574838 !important;
  -webkit-text-fill-color: #574838 !important;
  background: #e2edd8 !important;
  border-color: #6b5745 !important;
  box-shadow: 2px 2px 0 rgba(82, 65, 50, .13) !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
  font-weight: 680 !important;
  letter-spacing: .01em !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__nav a {
  color: #34281f !important;
  -webkit-text-fill-color: #34281f !important;
  line-height: 1.72 !important;
  box-shadow: none !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide details p {
  padding: 0 !important;
}

body.postid-4274[data-scheme="dark"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__kicker,
body.postid-4274[data-scheme="inverse"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__kicker,
body.postid-4274.dark-mode .world-time-zone-article#world-time-zone-guide .world-time-zone-article__kicker {
  color: #f0dfc5 !important;
  -webkit-text-fill-color: #f0dfc5 !important;
  background: #344a32 !important;
  border-color: #a98b6b !important;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, .2) !important;
}

body.postid-4274[data-scheme="dark"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__nav a,
body.postid-4274[data-scheme="inverse"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__nav a,
body.postid-4274.dark-mode .world-time-zone-article#world-time-zone-guide .world-time-zone-article__nav a {
  color: #f2e4cf !important;
  -webkit-text-fill-color: #f2e4cf !important;
  line-height: 1.72 !important;
  box-shadow: 3px 3px 0 rgba(32, 24, 17, .52) !important;
}

body.postid-4274[data-scheme="dark"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__process,
body.postid-4274[data-scheme="inverse"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__process,
body.postid-4274.dark-mode .world-time-zone-article#world-time-zone-guide .world-time-zone-article__process,
body.postid-4274[data-scheme="dark"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__notice,
body.postid-4274[data-scheme="inverse"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__notice,
body.postid-4274.dark-mode .world-time-zone-article#world-time-zone-guide .world-time-zone-article__notice {
  background-color: rgba(36, 28, 21, .56) !important;
}

/* Phase 2 body v6: dark structural parent color parity and mobile shadow parity. */
body.postid-4274[data-scheme="dark"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__hero,
body.postid-4274[data-scheme="inverse"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__hero,
body.postid-4274.dark-mode .world-time-zone-article#world-time-zone-guide .world-time-zone-article__hero,
body.postid-4274[data-scheme="dark"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__nav,
body.postid-4274[data-scheme="inverse"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__nav,
body.postid-4274.dark-mode .world-time-zone-article#world-time-zone-guide .world-time-zone-article__nav,
body.postid-4274[data-scheme="dark"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__section,
body.postid-4274[data-scheme="inverse"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__section,
body.postid-4274.dark-mode .world-time-zone-article#world-time-zone-guide .world-time-zone-article__section,
body.postid-4274[data-scheme="dark"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__grid,
body.postid-4274[data-scheme="inverse"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__grid,
body.postid-4274.dark-mode .world-time-zone-article#world-time-zone-guide .world-time-zone-article__grid,
body.postid-4274[data-scheme="dark"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__process-grid,
body.postid-4274[data-scheme="inverse"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__process-grid,
body.postid-4274.dark-mode .world-time-zone-article#world-time-zone-guide .world-time-zone-article__process-grid,
body.postid-4274[data-scheme="dark"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__use-grid,
body.postid-4274[data-scheme="inverse"] .world-time-zone-article#world-time-zone-guide .world-time-zone-article__use-grid,
body.postid-4274.dark-mode .world-time-zone-article#world-time-zone-guide .world-time-zone-article__use-grid {
  color: #f2e4cf !important;
  -webkit-text-fill-color: #f2e4cf !important;
}

@media (max-width: 640px) {
  body.postid-4274 .entry-content article.roberin-article-body.world-time-zone-article#world-time-zone-guide,
  body.postid-4274 .world-time-zone-article#world-time-zone-guide,
  body.postid-4274[data-scheme="dark"] .entry-content article.roberin-article-body.world-time-zone-article#world-time-zone-guide,
  body.postid-4274[data-scheme="dark"] .world-time-zone-article#world-time-zone-guide,
  body.postid-4274[data-scheme="inverse"] .entry-content article.roberin-article-body.world-time-zone-article#world-time-zone-guide,
  body.postid-4274[data-scheme="inverse"] .world-time-zone-article#world-time-zone-guide,
  body.postid-4274.dark-mode .entry-content article.roberin-article-body.world-time-zone-article#world-time-zone-guide,
  body.postid-4274.dark-mode .world-time-zone-article#world-time-zone-guide {
    box-shadow: 4px 4px 0 rgba(82, 65, 50, .16) !important;
  }
}

/* v23 exact PDF list role-DOM replay: steps/notice lists use PDF-style pseudo markers, not public marker spans. */
body.postid-4274 .world-time-zone-article#world-time-zone-guide :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-4274 .world-time-zone-article#world-time-zone-guide :is(ul, ol) > li::before {
  content: "" !important;
  display: inline-block !important;
  position: static !important;
  inset: auto !important;
  transform: none !important;
  flex: 0 0 auto !important;
  align-self: center !important;
  box-sizing: border-box !important;
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  border-radius: 0 !important;
}

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

body.postid-4274 .world-time-zone-article#world-time-zone-guide ol.world-time-zone-article__steps {
  counter-reset: pdf-article-step !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide ol.world-time-zone-article__steps > li {
  counter-increment: pdf-article-step !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide ol.world-time-zone-article__steps > li::before {
  content: counter(pdf-article-step) !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 20px !important;
  height: 20px !important;
  background: var(--pdf-article-mustard-soft) !important;
  border: 1px solid var(--pdf-article-line) !important;
  box-shadow: 1px 1px 0 rgba(82, 65, 50, .22) !important;
  font-size: 11px !important;
  font-weight: 920 !important;
  line-height: 1 !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__marker,
body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__notice-marker {
  display: none !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__li-text {
  display: block !important;
  min-width: 0 !important;
  align-self: center !important;
  overflow-wrap: anywhere !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__li-text strong {
  color: var(--pdf-article-text) !important;
  -webkit-text-fill-color: var(--pdf-article-text) !important;
  font-weight: 900 !important;
}

body.postid-4274[data-scheme="dark"] .world-time-zone-article#world-time-zone-guide :is(ul, ol) > li::before,
body.postid-4274[data-scheme="inverse"] .world-time-zone-article#world-time-zone-guide :is(ul, ol) > li::before,
body.postid-4274.dark-mode .world-time-zone-article#world-time-zone-guide :is(ul, ol) > li::before {
  border-color: #a98b6b !important;
  color: #f2e4cf !important;
  -webkit-text-fill-color: #f2e4cf !important;
}

/* v23b list readability: keep the PDF role DOM while locking list markers to the first line. */
body.postid-4274 .world-time-zone-article#world-time-zone-guide :is(ul, ol) > li {
  align-items: flex-start !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide :is(ul, ol) > li::before {
  align-self: flex-start !important;
  margin-top: 2px !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide ul > li::before {
  margin-top: 6px !important;
}

body.postid-4274 .world-time-zone-article#world-time-zone-guide .world-time-zone-article__li-text {
  align-self: flex-start !important;
}
