/**********************************************
 * Parent-Child Age Calculator v2
 * ROBERIN reference-first tool redesign
 **********************************************/
.parent-child-age-calculator-container,
.parent-child-age-calculator-container *,
.parent-child-age-calculator-container *::before,
.parent-child-age-calculator-container *::after {
  box-sizing: border-box;
}

.parent-child-age-calculator-container {
  --pcage-paper: #f8efe2;
  --pcage-canvas: #f9f1e7;
  --pcage-surface: #fff8ed;
  --pcage-green: #e2edd8;
  --pcage-line: #6b5745;
  --pcage-text: #34281f;
  --pcage-muted: #574838;
  --pcage-emphasis: #7a412f;
  --pcage-mustard: #d2aa55;
  --pcage-teal: #4f7d94;
  --pcage-danger: #9f3f32;
  --pcage-shadow: rgba(82, 65, 50, 0.24);
  --pcage-soft-shadow: rgba(82, 65, 50, 0.14);
  --pcage-grid: rgba(107, 87, 69, 0.16);
  --pcage-main-grid-columns: minmax(230px, 0.86fr) minmax(260px, 1fr) minmax(300px, 1.14fr);
  --pcage-main-grid-gap: 12px;
  width: min(100%, 1140px);
  margin: 12px auto 18px;
  padding: 14px;
  color: var(--pcage-text);
  -webkit-text-fill-color: var(--pcage-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", "Noto Sans KR", sans-serif;
  line-height: 1.48;
  background:
    linear-gradient(90deg, var(--pcage-grid) 1px, transparent 1px),
    linear-gradient(180deg, var(--pcage-grid) 1px, transparent 1px),
    var(--pcage-paper);
  background-size: 22px 22px;
  border: 2px solid var(--pcage-line);
  border-radius: 0;
  box-shadow: 8px 8px 0 var(--pcage-shadow);
  overflow: hidden;
}

body[data-scheme="dark"] .parent-child-age-calculator-container,
body[data-scheme="inverse"] .parent-child-age-calculator-container,
.parent-child-age-calculator-container.dark {
  --pcage-paper: #2b2119;
  --pcage-canvas: #201811;
  --pcage-surface: #33271d;
  --pcage-green: #344a32;
  --pcage-line: #a98b6b;
  --pcage-text: #f2e4cf;
  --pcage-muted: #f0dfc5;
  --pcage-emphasis: #e3be8f;
  --pcage-mustard: #d2aa55;
  --pcage-teal: #7aa6b9;
  --pcage-danger: #ef9b88;
  --pcage-shadow: rgba(0, 0, 0, 0.36);
  --pcage-soft-shadow: rgba(0, 0, 0, 0.24);
  --pcage-grid: rgba(169, 139, 107, 0.15);
  color: var(--pcage-text);
  -webkit-text-fill-color: var(--pcage-text);
}

.parent-child-age-calculator-container br {
  display: none !important;
}

.parent-child-age-calculator-container svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  stroke: currentColor;
}

.parent-child-age-calculator-container .calculator-header {
  display: grid;
  gap: 5px;
  padding: 3px 2px 12px;
  margin-bottom: 10px;
  border-bottom: 2px dashed rgba(107, 87, 69, 0.55);
}

body[data-scheme="dark"] .parent-child-age-calculator-container .calculator-header,
body[data-scheme="inverse"] .parent-child-age-calculator-container .calculator-header,
.parent-child-age-calculator-container.dark .calculator-header {
  border-bottom-color: rgba(169, 139, 107, 0.72);
}

.parent-child-age-calculator-container .calculator-header h2 {
  margin: 0;
  color: var(--pcage-text);
  -webkit-text-fill-color: var(--pcage-text);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.parent-child-age-calculator-container .calculator-header .subtitle {
  max-width: 780px;
  margin: 0;
  color: var(--pcage-muted);
  -webkit-text-fill-color: var(--pcage-muted);
  font-size: 15px;
  font-weight: 560;
}

.parent-child-age-calculator-container .quick-actions,
.parent-child-age-calculator-container .calculator-main {
  display: grid;
  grid-template-columns: var(--pcage-main-grid-columns);
  gap: var(--pcage-main-grid-gap);
}

.parent-child-age-calculator-container .quick-actions {
  margin-bottom: var(--pcage-main-grid-gap);
}

.parent-child-age-calculator-container .btn-quick,
.parent-child-age-calculator-container .btn-calculate,
.parent-child-age-calculator-container .btn-reset {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 12px;
  color: var(--pcage-text);
  -webkit-text-fill-color: var(--pcage-text);
  font: inherit;
  font-size: 14px;
  font-weight: 780;
  background: var(--pcage-green);
  border: 2px solid var(--pcage-line);
  border-radius: 0;
  box-shadow: 3px 3px 0 var(--pcage-soft-shadow);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.parent-child-age-calculator-container .btn-quick:hover,
.parent-child-age-calculator-container .btn-calculate:hover,
.parent-child-age-calculator-container .btn-reset:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--pcage-soft-shadow);
}

.parent-child-age-calculator-container .btn-quick:focus-visible,
.parent-child-age-calculator-container .btn-calculate:focus-visible,
.parent-child-age-calculator-container .btn-reset:focus-visible,
.parent-child-age-calculator-container input:focus-visible {
  outline: 3px solid var(--pcage-teal);
  outline-offset: 2px;
}

.parent-child-age-calculator-container .btn-calculate {
  flex: 1 1 66%;
  min-height: 46px;
  background: var(--pcage-mustard);
  color: #241c15;
  -webkit-text-fill-color: #241c15;
  font-size: 16px;
}

.parent-child-age-calculator-container .btn-reset {
  flex: 0 0 100px;
  background: var(--pcage-surface);
}

.parent-child-age-calculator-container .input-section,
.parent-child-age-calculator-container .result-section,
.parent-child-age-calculator-container .special-section,
.parent-child-age-calculator-container .info-section {
  min-width: 0;
  background: var(--pcage-surface);
  border: 2px solid var(--pcage-line);
  border-radius: 0;
  box-shadow: 4px 4px 0 var(--pcage-soft-shadow);
}

.parent-child-age-calculator-container .input-section,
.parent-child-age-calculator-container .result-section,
.parent-child-age-calculator-container .special-section {
  padding: 12px;
}

.parent-child-age-calculator-container .section-title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  padding-bottom: 7px;
  color: var(--pcage-emphasis);
  -webkit-text-fill-color: var(--pcage-emphasis);
  font-size: 16px;
  font-weight: 820;
  border-bottom: 1px dashed rgba(107, 87, 69, 0.55);
}

body[data-scheme="dark"] .parent-child-age-calculator-container .section-title,
body[data-scheme="inverse"] .parent-child-age-calculator-container .section-title,
.parent-child-age-calculator-container.dark .section-title {
  border-bottom-color: rgba(169, 139, 107, 0.62);
}

.parent-child-age-calculator-container .input-group {
  display: grid;
  gap: 5px;
  margin: 0 0 10px;
}

.parent-child-age-calculator-container .input-group label,
.parent-child-age-calculator-container .method-label {
  color: var(--pcage-text);
  -webkit-text-fill-color: var(--pcage-text);
  font-size: 13px;
  font-weight: 780;
}

.parent-child-age-calculator-container input[type="date"] {
  width: 100%;
  min-height: 42px;
  padding: 8px 9px;
  color: var(--pcage-text);
  -webkit-text-fill-color: var(--pcage-text);
  background: var(--pcage-canvas);
  border: 2px solid var(--pcage-line);
  border-radius: 0;
  box-shadow: inset 2px 2px 0 rgba(82, 65, 50, 0.09);
  font-size: 15px;
  font-weight: 640;
  color-scheme: light;
}

body[data-scheme="dark"] .parent-child-age-calculator-container input[type="date"],
body[data-scheme="inverse"] .parent-child-age-calculator-container input[type="date"],
.parent-child-age-calculator-container.dark input[type="date"] {
  color-scheme: dark;
  box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.24);
}

.parent-child-age-calculator-container .radio-group {
  display: grid;
  gap: 6px;
}

.parent-child-age-calculator-container .radio-label {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 7px;
  min-height: 36px;
  padding: 7px 8px;
  color: var(--pcage-muted);
  -webkit-text-fill-color: var(--pcage-muted);
  background: var(--pcage-paper);
  border: 1px solid rgba(107, 87, 69, 0.55);
  cursor: pointer;
  font-size: 13px;
  font-weight: 660;
}

body[data-scheme="dark"] .parent-child-age-calculator-container .radio-label,
body[data-scheme="inverse"] .parent-child-age-calculator-container .radio-label,
.parent-child-age-calculator-container.dark .radio-label {
  border-color: rgba(169, 139, 107, 0.58);
}

.parent-child-age-calculator-container .radio-label input {
  margin: 0;
  accent-color: var(--pcage-mustard);
}

.parent-child-age-calculator-container .radio-label:has(input:checked) {
  color: var(--pcage-text);
  -webkit-text-fill-color: var(--pcage-text);
  background: var(--pcage-green);
  border-color: var(--pcage-line);
}

.parent-child-age-calculator-container .input-actions {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin-top: 11px;
}

.parent-child-age-calculator-container .result-content {
  min-height: 225px;
}

.parent-child-age-calculator-container .empty-state {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin: 0;
  padding: 18px;
  color: var(--pcage-muted);
  -webkit-text-fill-color: var(--pcage-muted);
  text-align: center;
  font-weight: 650;
  background: var(--pcage-paper);
  border: 1px dashed rgba(107, 87, 69, 0.6);
}

.parent-child-age-calculator-container .summary-grid {
  display: grid;
  gap: 8px;
}

.parent-child-age-calculator-container .age-difference-highlight {
  display: grid;
  gap: 2px;
  padding: 12px;
  color: var(--pcage-text);
  -webkit-text-fill-color: var(--pcage-text);
  background: var(--pcage-green);
  border: 2px solid var(--pcage-line);
  text-align: left;
}

.parent-child-age-calculator-container .age-difference-highlight .summary-kicker,
.parent-child-age-calculator-container .summary-card .summary-kicker {
  color: var(--pcage-muted);
  -webkit-text-fill-color: var(--pcage-muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: -0.01em;
}

.parent-child-age-calculator-container .age-difference-highlight .summary-value {
  color: var(--pcage-emphasis);
  -webkit-text-fill-color: var(--pcage-emphasis);
  font-size: clamp(25px, 3.2vw, 36px);
  line-height: 1.08;
  font-weight: 900;
}

.parent-child-age-calculator-container .summary-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.parent-child-age-calculator-container .summary-card {
  display: grid;
  gap: 3px;
  padding: 10px;
  background: var(--pcage-paper);
  border: 1px solid rgba(107, 87, 69, 0.58);
}

body[data-scheme="dark"] .parent-child-age-calculator-container .summary-card,
body[data-scheme="inverse"] .parent-child-age-calculator-container .summary-card,
.parent-child-age-calculator-container.dark .summary-card {
  border-color: rgba(169, 139, 107, 0.58);
}

.parent-child-age-calculator-container .summary-card strong {
  color: var(--pcage-text);
  -webkit-text-fill-color: var(--pcage-text);
  font-size: 20px;
  line-height: 1.1;
}

.parent-child-age-calculator-container .age-detail {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(107, 87, 69, 0.42);
}

.parent-child-age-calculator-container .age-detail:last-child {
  border-bottom: 0;
}

.parent-child-age-calculator-container .age-label {
  color: var(--pcage-muted);
  -webkit-text-fill-color: var(--pcage-muted);
  font-size: 13px;
  font-weight: 720;
}

.parent-child-age-calculator-container .age-value {
  color: var(--pcage-text);
  -webkit-text-fill-color: var(--pcage-text);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.parent-child-age-calculator-container .chart-container {
  position: relative;
  width: 100%;
  height: 248px;
  min-height: 220px;
  padding: 8px;
  background: var(--pcage-paper);
  border: 1px solid rgba(107, 87, 69, 0.58);
}

body[data-scheme="dark"] .parent-child-age-calculator-container .chart-container,
body[data-scheme="inverse"] .parent-child-age-calculator-container .chart-container,
.parent-child-age-calculator-container.dark .chart-container {
  border-color: rgba(169, 139, 107, 0.58);
}

.parent-child-age-calculator-container .chart-container canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.parent-child-age-calculator-container .visual-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
}

.parent-child-age-calculator-container .insight-card {
  min-width: 0;
  padding: 8px;
  background: var(--pcage-paper);
  border: 1px solid rgba(107, 87, 69, 0.58);
}

.parent-child-age-calculator-container .insight-card span {
  display: block;
  color: var(--pcage-muted);
  -webkit-text-fill-color: var(--pcage-muted);
  font-size: 11px;
  font-weight: 760;
}

.parent-child-age-calculator-container .insight-card strong {
  display: block;
  margin-top: 2px;
  color: var(--pcage-text);
  -webkit-text-fill-color: var(--pcage-text);
  font-size: 13px;
  font-weight: 860;
}

.parent-child-age-calculator-container .tool-status {
  display: none;
  margin-top: 8px;
  padding: 8px 10px;
  color: var(--pcage-text);
  -webkit-text-fill-color: var(--pcage-text);
  background: var(--pcage-green);
  border: 1px solid var(--pcage-line);
  font-size: 13px;
  font-weight: 760;
}

.parent-child-age-calculator-container .tool-status.show {
  display: block;
}

.parent-child-age-calculator-container .tool-status.error {
  color: #fff8ed;
  -webkit-text-fill-color: #fff8ed;
  background: var(--pcage-danger);
}

.parent-child-age-calculator-container .info-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 12px;
  margin-top: 12px;
  padding: 12px;
}

.parent-child-age-calculator-container .table-section,
.parent-child-age-calculator-container .guide-section {
  min-width: 0;
}

.parent-child-age-calculator-container .table-container {
  max-height: 360px;
  overflow: auto;
  border: 1px solid rgba(107, 87, 69, 0.58);
  background: var(--pcage-paper);
}

.parent-child-age-calculator-container .results-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 610px;
  color: var(--pcage-text);
  -webkit-text-fill-color: var(--pcage-text);
  font-size: 13px;
}

.parent-child-age-calculator-container .results-table th,
.parent-child-age-calculator-container .results-table td {
  padding: 9px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(107, 87, 69, 0.38);
}

.parent-child-age-calculator-container .results-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: #241c15;
  -webkit-text-fill-color: #241c15;
  background: var(--pcage-mustard);
  font-weight: 860;
}

.parent-child-age-calculator-container .results-table tr.milestone-highlight {
  background: color-mix(in srgb, var(--pcage-green) 58%, transparent);
  font-weight: 760;
}

.parent-child-age-calculator-container .guide-grid {
  display: grid;
  gap: 8px;
}

.parent-child-age-calculator-container .guide-card {
  display: grid;
  gap: 3px;
  padding: 9px;
  background: var(--pcage-paper);
  border: 1px solid rgba(107, 87, 69, 0.58);
}

.parent-child-age-calculator-container .guide-card strong {
  color: var(--pcage-emphasis);
  -webkit-text-fill-color: var(--pcage-emphasis);
  font-size: 13px;
  font-weight: 860;
}

.parent-child-age-calculator-container .guide-card span {
  color: var(--pcage-muted);
  -webkit-text-fill-color: var(--pcage-muted);
  font-size: 12px;
  font-weight: 580;
}

.parent-child-age-calculator-container + .roberin-qa-ad-placeholder + .wp-block-group.content1,
.parent-child-age-calculator-container + .aicp.roberin-aicp-ad-guard + .wp-block-group.content1 {
  margin-top: 24px !important;
}

@media (max-width: 980px) {
  .parent-child-age-calculator-container {
    width: calc(100% - 18px);
    padding: 12px;
  }
  .parent-child-age-calculator-container .quick-actions,
  .parent-child-age-calculator-container .calculator-main,
  .parent-child-age-calculator-container .info-section {
    grid-template-columns: 1fr;
  }
  .parent-child-age-calculator-container .quick-actions {
    gap: 8px;
  }
  .parent-child-age-calculator-container .result-content {
    min-height: 0;
  }
  .parent-child-age-calculator-container .visual-insights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .parent-child-age-calculator-container {
    width: calc(100% - 12px);
    margin: 8px auto 14px;
    padding: 10px;
    box-shadow: 5px 5px 0 var(--pcage-shadow);
  }
  .parent-child-age-calculator-container .calculator-header h2 {
    font-size: 22px;
  }
  .parent-child-age-calculator-container .calculator-header .subtitle {
    font-size: 13px;
  }
  .parent-child-age-calculator-container .input-section,
  .parent-child-age-calculator-container .result-section,
  .parent-child-age-calculator-container .special-section,
  .parent-child-age-calculator-container .info-section {
    padding: 10px;
  }
  .parent-child-age-calculator-container .input-actions,
  .parent-child-age-calculator-container .summary-pair,
  .parent-child-age-calculator-container .visual-insights {
    grid-template-columns: 1fr;
    display: grid;
  }
  .parent-child-age-calculator-container .btn-reset {
    flex-basis: auto;
  }
  .parent-child-age-calculator-container .chart-container {
    height: 220px;
    min-height: 200px;
  }
  .parent-child-age-calculator-container .table-container {
    max-height: 320px;
  }
  .parent-child-age-calculator-container .results-table {
    min-width: 540px;
    font-size: 12px;
  }
  .parent-child-age-calculator-container + .roberin-qa-ad-placeholder + .wp-block-group.content1,
  .parent-child-age-calculator-container + .aicp.roberin-aicp-ad-guard + .wp-block-group.content1 {
    margin-top: 8px !important;
  }
}

/* 2026-05-26 Phase 2 body/article: PDF reference rhythm with target-specific namespace. */
.entry-content article.roberin-article-body.parent-child-age-article,
.parent-child-age-article {
  --pc-age-article-panel: #f8efe2;
  --pc-age-article-card: #fff8ed;
  --pc-age-article-accent-paper: #e2edd8;
  --pc-age-article-notice: rgba(239, 225, 188, .64);
  --pc-age-article-process: rgba(226, 237, 216, .70);
  --pc-age-article-text: #34281f;
  --pc-age-article-muted: #574838;
  --pc-age-article-line: #6b5745;
  --pc-age-article-line-soft: rgba(107, 87, 69, .34);
  --pc-age-article-mustard: #d2aa55;
  --pc-age-article-mustard-soft: rgba(210, 170, 85, .24);
  --pc-age-article-focus: #4f7d94;
  --pc-age-article-shadow: rgba(82, 65, 50, .22);
  --pc-age-article-soft-shadow: rgba(82, 65, 50, .13);
  --pc-age-article-grid-a: rgba(107, 87, 69, .045);
  --pc-age-article-grid-b: rgba(107, 87, 69, .04);
  position: relative;
  z-index: 0;
  display: grid !important;
  gap: 18px !important;
  box-sizing: border-box !important;
  width: min(980px, calc(100vw - 32px)) !important;
  max-width: 980px !important;
  min-width: 0 !important;
  margin: clamp(24px, 4vw, 42px) auto !important;
  padding: clamp(16px, 3vw, 28px) !important;
  color: var(--pc-age-article-text) !important;
  -webkit-text-fill-color: var(--pc-age-article-text) !important;
  background:
    linear-gradient(var(--pc-age-article-grid-a) 1px, transparent 1px),
    linear-gradient(90deg, var(--pc-age-article-grid-b) 1px, transparent 1px),
    var(--pc-age-article-panel) !important;
  background-size: 28px 28px, 28px 28px, auto !important;
  border: 2px solid var(--pc-age-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 var(--pc-age-article-shadow) !important;
  overflow: hidden !important;
  transform: none !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[data-scheme="dark"] .entry-content article.roberin-article-body.parent-child-age-article,
body[data-scheme="dark"] .parent-child-age-article,
body[data-scheme="inverse"] .entry-content article.roberin-article-body.parent-child-age-article,
body[data-scheme="inverse"] .parent-child-age-article {
  --pc-age-article-panel: #33271d;
  --pc-age-article-card: #2b2119;
  --pc-age-article-accent-paper: #344a32;
  --pc-age-article-notice: rgba(36, 28, 21, .56);
  --pc-age-article-process: rgba(36, 28, 21, .56);
  --pc-age-article-text: #f2e4cf;
  --pc-age-article-muted: #f0dfc5;
  --pc-age-article-line: #a98b6b;
  --pc-age-article-line-soft: rgba(169, 139, 107, .46);
  --pc-age-article-mustard: #d2aa55;
  --pc-age-article-mustard-soft: rgba(210, 170, 85, .22);
  --pc-age-article-focus: #d2aa55;
  --pc-age-article-shadow: rgba(0, 0, 0, .32);
  --pc-age-article-soft-shadow: rgba(0, 0, 0, .2);
  --pc-age-article-grid-a: rgba(169, 139, 107, .075);
  --pc-age-article-grid-b: rgba(169, 139, 107, .06);
}

.parent-child-age-article,
.parent-child-age-article *,
.parent-child-age-article *::before,
.parent-child-age-article *::after {
  box-sizing: border-box !important;
  min-width: 0 !important;
}

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

.pc-age-article__hero,
.pc-age-article__section {
  display: grid !important;
  gap: 13px !important;
  min-width: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.pc-age-article__hero {
  padding: 0 0 22px !important;
  border-bottom: 1px dashed var(--pc-age-article-line-soft) !important;
}

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

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

.parent-child-age-article h2,
.parent-child-age-article h3 {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--pc-age-article-text) !important;
  -webkit-text-fill-color: var(--pc-age-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;
}

.parent-child-age-article h2 {
  font-size: clamp(25px, 3vw, 30px) !important;
  font-weight: 950 !important;
  line-height: 1.18 !important;
}

.parent-child-age-article h3 {
  font-size: 19px !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
}

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

.parent-child-age-article strong {
  color: var(--pc-age-article-text) !important;
  -webkit-text-fill-color: var(--pc-age-article-text) !important;
  font-weight: 920 !important;
}

.pc-age-article__nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
}

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

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

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

.pc-age-article__use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

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

.pc-age-article__notice {
  background: var(--pc-age-article-notice) !important;
  border-style: dashed !important;
}

.pc-age-article__process {
  background: var(--pc-age-article-process) !important;
}

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

.parent-child-age-article code {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  padding: 5px 8px !important;
  color: var(--pc-age-article-text) !important;
  -webkit-text-fill-color: var(--pc-age-article-text) !important;
  background: var(--pc-age-article-card) !important;
  border: 1px solid var(--pc-age-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;
}

.parent-child-age-article :is(ul, ol) {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

.parent-child-age-article ol,
.parent-child-age-article ol.pc-age-article__steps {
  counter-reset: parent-child-age-step !important;
}

.parent-child-age-article :is(ul, ol) > li {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  align-items: start !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;
}

.parent-child-age-article :is(ul, ol) > li::before {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  align-self: start !important;
  box-sizing: border-box !important;
  color: var(--pc-age-article-text) !important;
  -webkit-text-fill-color: var(--pc-age-article-text) !important;
  border-color: var(--pc-age-article-line) !important;
  border-radius: 0 !important;
}

.parent-child-age-article ul > li::before {
  content: "" !important;
  display: inline-block !important;
  width: 9px !important;
  height: 9px !important;
  margin-top: .45em !important;
  background: var(--pc-age-article-mustard) !important;
  border: 1px solid var(--pc-age-article-line) !important;
  box-shadow: 1px 1px 0 var(--pc-age-article-soft-shadow) !important;
  line-height: 1 !important;
}

.parent-child-age-article ol > li,
.parent-child-age-article ol.pc-age-article__steps > li {
  counter-increment: parent-child-age-step !important;
}

.parent-child-age-article ol > li::before,
.parent-child-age-article ol.pc-age-article__steps > li::before {
  content: counter(parent-child-age-step) !important;
  display: inline-grid !important;
  place-items: center !important;
  width: 20px !important;
  height: 20px !important;
  background: var(--pc-age-article-mustard-soft) !important;
  border: 1px solid var(--pc-age-article-line) !important;
  box-shadow: 1px 1px 0 var(--pc-age-article-soft-shadow) !important;
  font-size: 11px !important;
  font-weight: 920 !important;
  line-height: 1 !important;
}

.pc-age-article__li-text {
  display: block !important;
  min-width: 0 !important;
  align-self: start !important;
}

.parent-child-age-article details {
  margin: 0 !important;
}

.parent-child-age-article summary {
  cursor: pointer !important;
  color: var(--pc-age-article-text) !important;
  -webkit-text-fill-color: var(--pc-age-article-text) !important;
  font-weight: 950 !important;
  line-height: 1.45 !important;
  list-style-position: inside !important;
}

.parent-child-age-article details[open] summary {
  margin-bottom: 8px !important;
}

.parent-child-age-calculator-container + .roberin-qa-ad-placeholder + article.roberin-article-body.parent-child-age-article,
.parent-child-age-calculator-container + .aicp.roberin-aicp-ad-guard + article.roberin-article-body.parent-child-age-article {
  margin-top: 24px !important;
}

@media (max-width: 920px) {
  .pc-age-article__use-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .entry-content article.roberin-article-body.parent-child-age-article,
  .parent-child-age-article {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: calc(50% - 50vw + 12px) !important;
    margin-right: calc(50% - 50vw + 12px) !important;
    padding: 12px !important;
    transform: none !important;
    box-shadow: 4px 4px 0 var(--pc-age-article-shadow) !important;
  }

  .pc-age-article__grid,
  .pc-age-article__process-grid,
  .pc-age-article__use-grid {
    grid-template-columns: 1fr !important;
  }

  .parent-child-age-article h3 {
    font-size: 18px !important;
  }

  .parent-child-age-calculator-container + .roberin-qa-ad-placeholder + article.roberin-article-body.parent-child-age-article,
  .parent-child-age-calculator-container + .aicp.roberin-aicp-ad-guard + article.roberin-article-body.parent-child-age-article {
    margin-top: 8px !important;
  }
}

@media (max-width: 370px) {
  .parent-child-age-article h2 {
    font-size: 25.2px !important;
  }
}

/* 2026-05-26 Phase 2 v6: force body list markers into normal grid flow against global article defaults. */
body.postid-1294 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4013 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4012 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4014 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4015 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 9px !important;
  padding-left: 0 !important;
}
body.postid-1294 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li::before,
body.postid-4013 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li::before,
body.postid-4012 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li::before,
body.postid-4014 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li::before,
body.postid-4015 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li::before {
  position: static !important;
  inset: auto !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  translate: none !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  align-self: start !important;
}
body.postid-1294 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4013 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4012 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4014 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4015 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text {
  grid-column: 2 !important;
  grid-row: 1 !important;
  min-width: 0 !important;
}

/* 2026-05-26 Phase 2 v7: lock article heading scale to PDF body reference despite global h2/h3 defaults. */
body.postid-1294 article.roberin-article-body.parent-child-age-article h2,
body.postid-4013 article.roberin-article-body.parent-child-age-article h2,
body.postid-4012 article.roberin-article-body.parent-child-age-article h2,
body.postid-4014 article.roberin-article-body.parent-child-age-article h2,
body.postid-4015 article.roberin-article-body.parent-child-age-article h2 {
  font-size: clamp(25px, 3vw, 30px) !important;
  line-height: 1.18 !important;
  font-weight: 950 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
body.postid-1294 article.roberin-article-body.parent-child-age-article h3,
body.postid-4013 article.roberin-article-body.parent-child-age-article h3,
body.postid-4012 article.roberin-article-body.parent-child-age-article h3,
body.postid-4014 article.roberin-article-body.parent-child-age-article h3,
body.postid-4015 article.roberin-article-body.parent-child-age-article h3 {
  font-size: 19px !important;
  line-height: 1.3 !important;
  font-weight: 900 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 640px) {
  body.postid-1294 article.roberin-article-body.parent-child-age-article h2,
body.postid-4013 article.roberin-article-body.parent-child-age-article h2,
body.postid-4012 article.roberin-article-body.parent-child-age-article h2,
body.postid-4014 article.roberin-article-body.parent-child-age-article h2,
body.postid-4015 article.roberin-article-body.parent-child-age-article h2 { font-size: 25.2px !important; }
  body.postid-1294 article.roberin-article-body.parent-child-age-article h3,
body.postid-4013 article.roberin-article-body.parent-child-age-article h3,
body.postid-4012 article.roberin-article-body.parent-child-age-article h3,
body.postid-4014 article.roberin-article-body.parent-child-age-article h3,
body.postid-4015 article.roberin-article-body.parent-child-age-article h3 { font-size: 18px !important; }
}

/* 2026-05-26 Phase 2 v8: repair actual ul/ol text readability, not only marker geometry. */
body.postid-1294 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4013 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4012 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4014 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4015 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-1294 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4013 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4012 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4014 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4015 article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text {
  color: var(--pc-age-article-muted) !important;
  -webkit-text-fill-color: var(--pc-age-article-muted) !important;
}
body.postid-1294[data-scheme="dark"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4013[data-scheme="dark"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4012[data-scheme="dark"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4014[data-scheme="dark"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4015[data-scheme="dark"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-1294[data-scheme="inverse"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4013[data-scheme="inverse"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4012[data-scheme="inverse"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4014[data-scheme="inverse"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-4015[data-scheme="inverse"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li,
body.postid-1294[data-scheme="dark"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4013[data-scheme="dark"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4012[data-scheme="dark"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4014[data-scheme="dark"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4015[data-scheme="dark"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-1294[data-scheme="inverse"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4013[data-scheme="inverse"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4012[data-scheme="inverse"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4014[data-scheme="inverse"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text,
body.postid-4015[data-scheme="inverse"] article.roberin-article-body.parent-child-age-article :is(ul, ol) > li > .pc-age-article__li-text {
  color: var(--pc-age-article-muted) !important;
  -webkit-text-fill-color: var(--pc-age-article-muted) !important;
}


/* 2026-05-26 Phase 2 v9: exact notice list overlap repair.
   User reported the concrete .pc-age-article__notice ul/li snippet still overlapped after v8.
   Use a browser-robust flex marker/text track for notice bullets instead of relying on pseudo grid placement. */
body.postid-1294 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul,
body.postid-4013 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul,
body.postid-4012 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul,
body.postid-4014 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul,
body.postid-4015 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
body.postid-1294 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li,
body.postid-4013 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li,
body.postid-4012 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li,
body.postid-4014 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li,
body.postid-4015 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  overflow: visible !important;
}
body.postid-1294 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li::before,
body.postid-4013 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li::before,
body.postid-4012 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li::before,
body.postid-4014 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li::before,
body.postid-4015 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li::before {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  translate: none !important;
  flex: 0 0 9px !important;
  width: 9px !important;
  height: 9px !important;
  margin-top: .58em !important;
  align-self: flex-start !important;
  box-sizing: border-box !important;
}
body.postid-1294 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li > .pc-age-article__li-text,
body.postid-4013 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li > .pc-age-article__li-text,
body.postid-4012 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li > .pc-age-article__li-text,
body.postid-4014 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li > .pc-age-article__li-text,
body.postid-4015 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li > .pc-age-article__li-text {
  display: block !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  align-self: flex-start !important;
  grid-column: auto !important;
  grid-row: auto !important;
}


/* 2026-05-26 Phase 2 v10: repeated exact notice li/ul complaint source-level repair.
   The notice list now uses a real marker element in the public body HTML; legacy pseudo markers are disabled for this snippet. */
body.postid-1294 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul,
body.postid-4013 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul,
body.postid-4012 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul,
body.postid-4014 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul,
body.postid-4015 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 11px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
body.postid-1294 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li,
body.postid-4013 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li,
body.postid-4012 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li,
body.postid-4014 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li,
body.postid-4015 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li {
  display: grid !important;
  grid-template-columns: 10px minmax(0, 1fr) !important;
  column-gap: 14px !important;
  row-gap: 0 !important;
  align-items: start !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  overflow: visible !important;
}
body.postid-1294 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li::before,
body.postid-4013 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li::before,
body.postid-4012 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li::before,
body.postid-4014 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li::before,
body.postid-4015 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}
body.postid-1294 article.roberin-article-body.parent-child-age-article .pc-age-article__notice-marker,
body.postid-4013 article.roberin-article-body.parent-child-age-article .pc-age-article__notice-marker,
body.postid-4012 article.roberin-article-body.parent-child-age-article .pc-age-article__notice-marker,
body.postid-4014 article.roberin-article-body.parent-child-age-article .pc-age-article__notice-marker,
body.postid-4015 article.roberin-article-body.parent-child-age-article .pc-age-article__notice-marker {
  display: block !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 9px !important;
  height: 9px !important;
  margin-top: .58em !important;
  align-self: start !important;
  justify-self: start !important;
  box-sizing: border-box !important;
  background: var(--pc-age-article-mustard) !important;
  border: 1px solid var(--pc-age-article-line) !important;
  box-shadow: 1px 1px 0 var(--pc-age-article-soft-shadow) !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}
body.postid-1294 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li > .pc-age-article__li-text,
body.postid-4013 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li > .pc-age-article__li-text,
body.postid-4012 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li > .pc-age-article__li-text,
body.postid-4014 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li > .pc-age-article__li-text,
body.postid-4015 article.roberin-article-body.parent-child-age-article .pc-age-article__notice ul > li > .pc-age-article__li-text {
  display: block !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  min-width: 0 !important;
  max-width: 100% !important;
  align-self: start !important;
  overflow-wrap: anywhere !important;
}
