/* ROBERIN baseball ERA calculator redesign - Phase 1 v2 - 2026-05-19 */
body.postid-1510 {
  --era-paper: #fff7e8;
  --era-paper-soft: #fbf0dc;
  --era-paper-input: #fff8ed;
  --era-ink: #2b2119;
  --era-muted: #67584a;
  --era-line: #6b5745;
  --era-line-soft: rgba(107, 87, 69, 0.28);
  --era-green: #e3efd2;
  --era-green-ink: #2f4e2e;
  --era-blue: #dfeef8;
  --era-blue-ink: #28455a;
  --era-amber: #f7df9d;
  --era-amber-strong: #d2aa55;
  --era-red: #a43e2d;
  --era-red-soft: #f6d8ce;
  --era-white: #fffdf7;
  --era-shadow: 4px 4px 0 rgba(72, 55, 40, 0.22);
  --era-shadow-soft: 2px 2px 0 rgba(72, 55, 40, 0.14);
  background:
    linear-gradient(90deg, rgba(107, 87, 69, 0.025) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(0deg, rgba(107, 87, 69, 0.022) 1px, transparent 1px) 0 0 / 18px 18px,
    #faf2e8;
}

body.postid-1510 .cs-site-content > .cs-container,
body.postid-1510 .cs-main-content,
body.postid-1510 .cs-content-area,
body.postid-1510 .cs-entry__container,
body.postid-1510 .cs-entry__content-wrap {
  width: 100%;
  max-width: none;
}

body.postid-1510 .cs-breadcrumbs,
body.postid-1510 .cs-entry__header,
body.postid-1510 .era-calculator-wrapper,
body.postid-1510 .entry-content > article {
  width: min(950px, calc(100vw - 32px));
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

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

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

.era-calculator-wrapper,
.era-calculator-wrapper *,
.era-calculator-wrapper *::before,
.era-calculator-wrapper *::after {
  box-sizing: border-box;
}

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

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

.era-calculator-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(107, 87, 69, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, 0.045) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

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

body.postid-1510 .calculator-header h2 {
  margin: 0;
  color: var(--era-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;
}

body.postid-1510 .calculator-header .subtitle,
body.postid-1510 .subtitle {
  max-width: 680px;
  margin: 0;
  color: var(--era-muted);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 700;
  word-break: keep-all;
}

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

body.postid-1510 .btn-quick,
body.postid-1510 .btn-reset,
body.postid-1510 .btn-calculate,
body.postid-1510 .btn-copy {
  appearance: none;
  border-radius: 0;
  font-family: inherit;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease, color 120ms ease;
}

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

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

body.postid-1510 .btn-quick svg,
body.postid-1510 .btn-reset svg,
body.postid-1510 .btn-calculate svg,
body.postid-1510 .section-title svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

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

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

body.postid-1510 .btn-quick:focus-visible,
body.postid-1510 .btn-reset:focus-visible,
body.postid-1510 .btn-calculate:focus-visible,
body.postid-1510 .btn-copy:focus-visible,
body.postid-1510 .number-input:focus-visible,
body.postid-1510 .select-input:focus-visible {
  outline: 3px solid var(--era-amber-strong);
  outline-offset: 2px;
}

body.postid-1510 .calculator-main {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.96fr) minmax(0, 1.08fr);
  gap: 10px;
  align-items: stretch;
}

body.postid-1510 .input-section,
body.postid-1510 .result-section,
body.postid-1510 .info-section,
body.postid-1510 .info-card,
body.postid-1510 .calculation-details,
body.postid-1510 .result-explanation {
  border: 1px solid var(--era-line);
  background: var(--era-white);
  box-shadow: var(--era-shadow-soft);
}

body.postid-1510 .input-section,
body.postid-1510 .result-section,
body.postid-1510 .info-section {
  min-width: 0;
  padding: 12px;
}

body.postid-1510 .section-title {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  margin: 0 0 10px;
  padding: 0 0 8px;
  color: var(--era-ink);
  border-bottom: 1px solid var(--era-line);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.02em;
}

body.postid-1510 .input-group {
  display: grid;
  gap: 5px;
  margin: 0 0 10px;
  min-width: 0;
}

body.postid-1510 .input-group label {
  color: var(--era-muted);
  font-size: 13.5px;
  line-height: 1.2;
  font-weight: 900;
}

body.postid-1510 .number-input,
body.postid-1510 .select-input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 9px 10px;
  color: var(--era-ink);
  -webkit-text-fill-color: var(--era-ink);
  background: var(--era-paper-input);
  border: 1px solid var(--era-line);
  border-radius: 0;
  box-shadow: inset 1px 1px 0 rgba(107, 87, 69, 0.09);
  font: 800 15px/1.25 inherit;
}

body.postid-1510 .number-input::placeholder {
  color: rgba(103, 88, 74, 0.72);
  -webkit-text-fill-color: rgba(103, 88, 74, 0.72);
  opacity: 1;
}

body.postid-1510 .number-input:focus,
body.postid-1510 .select-input:focus {
  outline: none;
  background: #fff2cb;
  border-color: var(--era-amber-strong);
  box-shadow: 0 0 0 3px rgba(210, 170, 85, 0.18);
}

body.postid-1510 .innings-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(116px, 0.72fr);
  gap: 7px;
  align-items: center;
  min-width: 0;
}

body.postid-1510 .innings-separator {
  color: var(--era-ink);
  font-size: 18px;
  font-weight: 950;
}

body.postid-1510 .custom-innings[hidden] {
  display: none !important;
}

body.postid-1510 .input-hint,
body.postid-1510 .info-desc {
  color: var(--era-muted);
  font-size: 12.5px;
  line-height: 1.42;
  font-weight: 650;
}

body.postid-1510 .btn-calculate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  margin-top: 2px;
  padding: 10px 16px;
  color: #241c15;
  background: var(--era-amber);
  border: 2px solid var(--era-line);
  box-shadow: var(--era-shadow);
  font-size: 15px;
  line-height: 1.15;
  font-weight: 950;
}

body.postid-1510 .result-display {
  display: grid;
  gap: 6px;
  justify-items: center;
  margin: 0 0 10px;
  padding: 14px 12px;
  color: var(--era-ink);
  background: var(--era-blue);
  border: 2px solid var(--era-line);
  box-shadow: var(--era-shadow-soft);
  text-align: center;
}

body.postid-1510 .result-display[data-rating="excellent"],
body.postid-1510 .result-display[data-rating="perfect"] {
  background: var(--era-green);
}

body.postid-1510 .result-display[data-rating="average"] {
  background: var(--era-amber);
}

body.postid-1510 .result-display[data-rating="below"] {
  background: var(--era-red-soft);
}

body.postid-1510 .era-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 10px;
  color: var(--era-ink);
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid var(--era-line);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 950;
}

body.postid-1510 .era-value {
  color: var(--era-ink);
  -webkit-text-fill-color: var(--era-ink);
  font: 950 clamp(38px, 5vw, 54px)/0.95 "Courier New", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: -0.04em;
}

body.postid-1510 .era-label,
body.postid-1510 .result-label {
  color: var(--era-muted);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
}

body.postid-1510 .btn-copy {
  min-height: 32px;
  padding: 6px 12px;
  color: var(--era-ink);
  background: var(--era-white);
  border: 1px solid var(--era-line);
  box-shadow: var(--era-shadow-soft);
  font-size: 12.5px;
  font-weight: 900;
}

body.postid-1510 .btn-copy:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

body.postid-1510 .result-explanation {
  margin: 0 0 10px;
  padding: 10px;
}

body.postid-1510 .result-explanation[data-state="error"] {
  background: #f6d8ce;
  border-color: var(--era-red);
}

body.postid-1510 .result-explanation p {
  margin: 0;
  color: var(--era-ink);
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 700;
  word-break: keep-all;
}

body.postid-1510 .calculation-details {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 10px;
}

body.postid-1510 .calculation-details[hidden] {
  display: none !important;
}

body.postid-1510 .details-title,
body.postid-1510 .info-card h4 {
  margin: 0;
  color: var(--era-ink);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 950;
}

body.postid-1510 .detail-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px dashed var(--era-line-soft);
  color: var(--era-muted);
  font-size: 13px;
  font-weight: 750;
}

body.postid-1510 .detail-item strong,
body.postid-1510 .detail-formula {
  color: var(--era-ink);
  font-weight: 950;
}

body.postid-1510 .detail-formula {
  padding: 8px;
  background: var(--era-paper-soft);
  border: 1px solid var(--era-line-soft);
  font: 850 12.5px/1.45 "Courier New", ui-monospace, monospace;
  word-break: keep-all;
}

body.postid-1510 .info-section {
  display: grid;
  align-content: start;
  gap: 10px;
}

body.postid-1510 .info-card {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 10px;
  box-shadow: none;
}

body.postid-1510 .info-card p {
  margin: 0;
  color: var(--era-muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

body.postid-1510 .info-card strong {
  color: var(--era-ink);
  font-weight: 950;
}

body.postid-1510 .feature-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.postid-1510 .feature-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: var(--era-muted);
  font-size: 12.8px;
  line-height: 1.42;
  font-weight: 700;
}

body.postid-1510 .feature-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  background: var(--era-amber-strong);
  border: 1px solid var(--era-line);
  transform: rotate(45deg);
}

body.postid-1510 .rating-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

body.postid-1510 .rating-pills span {
  display: inline-flex;
  padding: 5px 7px;
  color: var(--era-ink);
  background: var(--era-paper-soft);
  border: 1px solid var(--era-line-soft);
  font-size: 11.5px;
  line-height: 1.1;
  font-weight: 900;
}

body.postid-1510 .toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 10000;
  transform: translate(-50%, 90px);
  opacity: 0;
  pointer-events: none;
  max-width: min(360px, calc(100vw - 32px));
  padding: 11px 16px;
  color: #241c15;
  background: var(--era-amber);
  border: 2px solid var(--era-line);
  box-shadow: var(--era-shadow);
  font-size: 14px;
  font-weight: 950;
  transition: transform 160ms ease, opacity 160ms ease;
}

body.postid-1510 .toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

body.postid-1510 .baseball-era-ad,
body.postid-1510 .baseball-era-ad--after-tool,
body.postid-1510 .baseball-era-ad--bottom {
  width: min(950px, calc(100vw - 32px));
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  text-align: center;
  overflow: visible;
}

body.postid-1510 .baseball-era-ad--after-tool {
  margin-top: 24px;
  margin-bottom: 24px;
}

body.postid-1510 .baseball-era-ad--bottom {
  margin-top: 24px;
  margin-bottom: 0;
}

body.postid-1510 .baseball-era-ad--after-tool + article {
  margin-top: 0 !important;
}

body.postid-1510 .baseball-era-ad .adsbygoogle {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 90px;
}

body.postid-1510 .roberin-qa-ad-placeholder {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  width: 100%;
  color: rgba(87, 72, 56, 0.74);
  background: transparent !important;
  border: 1px dashed rgba(107, 87, 69, 0.34) !important;
  box-shadow: none !important;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 980px) {
  body.postid-1510 .calculator-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  body.postid-1510 .info-section {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body.postid-1510 .cs-breadcrumbs,
  body.postid-1510 .cs-entry__header,
  body.postid-1510 .era-calculator-wrapper,
  body.postid-1510 .entry-content > article,
  body.postid-1510 .baseball-era-ad {
    width: min(100%, calc(100vw - 24px));
  }

  body.postid-1510 .era-calculator-container {
    padding: 12px;
  }

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

  body.postid-1510 .calculator-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  body.postid-1510 .input-section,
  body.postid-1510 .result-section,
  body.postid-1510 .info-section {
    padding: 11px;
  }

  body.postid-1510 .calculator-header h2 {
    font-size: clamp(21px, 7vw, 28px);
  }

  body.postid-1510 .innings-group {
    grid-template-columns: minmax(0, 1fr);
  }

  body.postid-1510 .innings-separator {
    display: none;
  }

  body.postid-1510 .btn-quick,
  body.postid-1510 .btn-reset {
    white-space: normal;
  }
}

@media (max-width: 380px) {
  body.postid-1510 .cs-breadcrumbs,
  body.postid-1510 .cs-entry__header,
  body.postid-1510 .era-calculator-wrapper,
  body.postid-1510 .entry-content > article,
  body.postid-1510 .baseball-era-ad {
    width: min(100%, calc(100vw - 20px));
  }

  body.postid-1510 .era-calculator-container {
    padding: 10px;
  }

  body.postid-1510 .quick-actions {
    gap: 7px;
  }

  body.postid-1510 .btn-quick,
  body.postid-1510 .btn-reset {
    padding-left: 7px;
    padding-right: 7px;
    font-size: 12.5px;
  }
}

body.postid-1510[data-scheme="dark"],
body.postid-1510[data-scheme="inverse"] {
  --era-paper: #2b2119;
  --era-paper-soft: #33271d;
  --era-paper-input: #241c15;
  --era-ink: #f2e4cf;
  --era-muted: #f0dfc5;
  --era-line: #a98b6b;
  --era-line-soft: rgba(169, 139, 107, 0.34);
  --era-green: #344a32;
  --era-green-ink: #f2e4cf;
  --era-blue: #253b4b;
  --era-blue-ink: #f2e4cf;
  --era-amber: #d2aa55;
  --era-red-soft: #4a2720;
  --era-white: #33271d;
  --era-shadow: 4px 4px 0 rgba(0, 0, 0, 0.32);
  --era-shadow-soft: 2px 2px 0 rgba(0, 0, 0, 0.22);
  background:
    linear-gradient(90deg, rgba(210, 170, 85, 0.035) 1px, transparent 1px) 0 0 / 18px 18px,
    linear-gradient(0deg, rgba(210, 170, 85, 0.03) 1px, transparent 1px) 0 0 / 18px 18px,
    #201811 !important;
}

body.postid-1510[data-scheme="dark"] .cs-wrapper,
body.postid-1510[data-scheme="inverse"] .cs-wrapper,
body.postid-1510[data-scheme="dark"] .cs-site,
body.postid-1510[data-scheme="inverse"] .cs-site,
body.postid-1510[data-scheme="dark"] .cs-site-inner,
body.postid-1510[data-scheme="inverse"] .cs-site-inner,
body.postid-1510[data-scheme="dark"] .cs-site-primary,
body.postid-1510[data-scheme="inverse"] .cs-site-primary,
body.postid-1510[data-scheme="dark"] .cs-site-content,
body.postid-1510[data-scheme="inverse"] .cs-site-content,
body.postid-1510[data-scheme="dark"] footer.cs-footer,
body.postid-1510[data-scheme="inverse"] footer.cs-footer {
  background-color: #201811 !important;
  color: var(--era-ink) !important;
}

body.postid-1510[data-scheme="dark"] .cs-main-content,
body.postid-1510[data-scheme="inverse"] .cs-main-content,
body.postid-1510[data-scheme="dark"] .cs-entry__wrap,
body.postid-1510[data-scheme="inverse"] .cs-entry__wrap,
body.postid-1510[data-scheme="dark"] .entry-content,
body.postid-1510[data-scheme="inverse"] .entry-content {
  background: transparent !important;
}

body.postid-1510[data-scheme="dark"] .cs-entry__title,
body.postid-1510[data-scheme="inverse"] .cs-entry__title,
body.postid-1510[data-scheme="dark"] .calculator-header h2,
body.postid-1510[data-scheme="inverse"] .calculator-header h2,
body.postid-1510[data-scheme="dark"] .section-title,
body.postid-1510[data-scheme="inverse"] .section-title,
body.postid-1510[data-scheme="dark"] .era-value,
body.postid-1510[data-scheme="inverse"] .era-value,
body.postid-1510[data-scheme="dark"] .info-card strong,
body.postid-1510[data-scheme="inverse"] .info-card strong {
  color: var(--era-ink) !important;
  -webkit-text-fill-color: var(--era-ink) !important;
}

body.postid-1510[data-scheme="dark"] .calculator-header .subtitle,
body.postid-1510[data-scheme="inverse"] .calculator-header .subtitle,
body.postid-1510[data-scheme="dark"] .subtitle,
body.postid-1510[data-scheme="inverse"] .subtitle,
body.postid-1510[data-scheme="dark"] .input-group label,
body.postid-1510[data-scheme="inverse"] .input-group label,
body.postid-1510[data-scheme="dark"] .input-hint,
body.postid-1510[data-scheme="inverse"] .input-hint,
body.postid-1510[data-scheme="dark"] .info-desc,
body.postid-1510[data-scheme="inverse"] .info-desc,
body.postid-1510[data-scheme="dark"] .info-card p,
body.postid-1510[data-scheme="inverse"] .info-card p,
body.postid-1510[data-scheme="dark"] .feature-list li,
body.postid-1510[data-scheme="inverse"] .feature-list li,
body.postid-1510[data-scheme="dark"] .result-explanation p,
body.postid-1510[data-scheme="inverse"] .result-explanation p,
body.postid-1510[data-scheme="dark"] .era-label,
body.postid-1510[data-scheme="inverse"] .era-label {
  color: var(--era-muted) !important;
  -webkit-text-fill-color: var(--era-muted) !important;
}

body.postid-1510[data-scheme="dark"] .era-calculator-container,
body.postid-1510[data-scheme="inverse"] .era-calculator-container {
  background: var(--era-paper);
  border-color: var(--era-line);
}

body.postid-1510[data-scheme="dark"] .era-calculator-container::before,
body.postid-1510[data-scheme="inverse"] .era-calculator-container::before {
  background:
    linear-gradient(rgba(210, 170, 85, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 170, 85, 0.045) 1px, transparent 1px);
  background-size: 20px 20px;
}

body.postid-1510[data-scheme="dark"] .input-section,
body.postid-1510[data-scheme="inverse"] .input-section,
body.postid-1510[data-scheme="dark"] .result-section,
body.postid-1510[data-scheme="inverse"] .result-section,
body.postid-1510[data-scheme="dark"] .info-section,
body.postid-1510[data-scheme="inverse"] .info-section,
body.postid-1510[data-scheme="dark"] .info-card,
body.postid-1510[data-scheme="inverse"] .info-card,
body.postid-1510[data-scheme="dark"] .calculation-details,
body.postid-1510[data-scheme="inverse"] .calculation-details,
body.postid-1510[data-scheme="dark"] .result-explanation,
body.postid-1510[data-scheme="inverse"] .result-explanation {
  background: var(--era-white);
  border-color: var(--era-line);
}

body.postid-1510[data-scheme="dark"] .number-input,
body.postid-1510[data-scheme="inverse"] .number-input,
body.postid-1510[data-scheme="dark"] .select-input,
body.postid-1510[data-scheme="inverse"] .select-input {
  color: var(--era-ink) !important;
  -webkit-text-fill-color: var(--era-ink) !important;
  background: var(--era-paper-input) !important;
  border-color: var(--era-line) !important;
}

body.postid-1510[data-scheme="dark"] .number-input::placeholder,
body.postid-1510[data-scheme="inverse"] .number-input::placeholder {
  color: rgba(240, 223, 197, 0.66) !important;
  -webkit-text-fill-color: rgba(240, 223, 197, 0.66) !important;
  opacity: 1;
}

body.postid-1510[data-scheme="dark"] .number-input:focus,
body.postid-1510[data-scheme="inverse"] .number-input:focus,
body.postid-1510[data-scheme="dark"] .select-input:focus,
body.postid-1510[data-scheme="inverse"] .select-input:focus {
  background: #2f241a !important;
  border-color: var(--era-amber) !important;
  box-shadow: 0 0 0 3px rgba(210, 170, 85, 0.22);
}

body.postid-1510[data-scheme="dark"] .btn-quick,
body.postid-1510[data-scheme="inverse"] .btn-quick {
  background: var(--era-green);
  color: var(--era-ink) !important;
  -webkit-text-fill-color: var(--era-ink) !important;
  border-color: var(--era-line);
}

body.postid-1510[data-scheme="dark"] .btn-reset,
body.postid-1510[data-scheme="inverse"] .btn-reset,
body.postid-1510[data-scheme="dark"] .btn-copy,
body.postid-1510[data-scheme="inverse"] .btn-copy {
  background: #3a2a20;
  color: var(--era-ink) !important;
  -webkit-text-fill-color: var(--era-ink) !important;
  border-color: var(--era-line);
}

body.postid-1510[data-scheme="dark"] .btn-calculate,
body.postid-1510[data-scheme="inverse"] .btn-calculate,
body.postid-1510[data-scheme="dark"] .toast,
body.postid-1510[data-scheme="inverse"] .toast {
  background: var(--era-amber);
  color: #241c15 !important;
  -webkit-text-fill-color: #241c15 !important;
  border-color: var(--era-line);
}

body.postid-1510[data-scheme="dark"] .era-badge,
body.postid-1510[data-scheme="inverse"] .era-badge,
body.postid-1510[data-scheme="dark"] .rating-pills span,
body.postid-1510[data-scheme="inverse"] .rating-pills span,
body.postid-1510[data-scheme="dark"] .detail-formula,
body.postid-1510[data-scheme="inverse"] .detail-formula {
  background: #241c15;
  color: var(--era-ink) !important;
  -webkit-text-fill-color: var(--era-ink) !important;
  border-color: var(--era-line-soft);
}

body.postid-1510[data-scheme="dark"] .roberin-qa-ad-placeholder,
body.postid-1510[data-scheme="inverse"] .roberin-qa-ad-placeholder {
  color: rgba(240, 223, 197, 0.7) !important;
  border-color: rgba(169, 139, 107, 0.4) !important;
}

/* v3 QA fix: force symmetric after-tool ad flow against theme child margins. */
body.postid-1510 .entry-content > .baseball-era-ad.baseball-era-ad--after-tool {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

body.postid-1510 .entry-content > .baseball-era-ad.baseball-era-ad--after-tool + article {
  margin-top: 0 !important;
}

@media (max-width: 640px) {
  body.postid-1510 .entry-content > .baseball-era-ad.baseball-era-ad--after-tool {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
}

/* v4 QA fix: stop legacy article first-heading margin collapse after the after-tool ad. */
body.postid-1510 .entry-content > .baseball-era-ad.baseball-era-ad--after-tool + article {
  display: flow-root;
  margin-top: 0 !important;
}

body.postid-1510 .entry-content > .baseball-era-ad.baseball-era-ad--after-tool + article > .content1 > :first-child {
  margin-top: 0 !important;
}

/* ROBERIN baseball ERA calculator - Phase 2 article/body v5 - 2026-05-20 */
body.postid-1510 .entry-content > article.era-article,
body.postid-1510 .entry-content > .baseball-era-ad.baseball-era-ad--after-tool + article.era-article {
  width: min(980px, calc(100vw - 32px)) !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  margin-bottom: 42px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: 28px;
  box-sizing: border-box;
  background:
    linear-gradient(rgba(107, 87, 69, 0.043) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, 0.04) 1px, transparent 1px),
    var(--era-paper-soft);
  background-size: 20px 20px, 20px 20px, auto;
  border: 2px solid var(--era-line);
  box-shadow: 5px 5px 0 rgba(82, 65, 50, 0.22);
  color: var(--era-ink);
  -webkit-text-fill-color: var(--era-ink);
  line-height: 1.72;
  overflow: visible;
}

body.postid-1510 .era-article *,
body.postid-1510 .era-article *::before,
body.postid-1510 .era-article *::after {
  box-sizing: border-box;
}

body.postid-1510 .era-article > header,
body.postid-1510 .era-article > section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 13px;
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--era-ink);
  -webkit-text-fill-color: var(--era-ink);
}

body.postid-1510 .era-article__hero {
  padding-bottom: 4px !important;
}

body.postid-1510 .era-article__kicker {
  margin: 0;
  color: var(--era-green-ink);
  -webkit-text-fill-color: var(--era-green-ink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.postid-1510 .era-article h2,
body.postid-1510 .era-article h3,
body.postid-1510 .era-article p {
  margin: 0;
}

body.postid-1510 .era-article h2,
body.postid-1510 .era-article h3 {
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--era-ink) !important;
  -webkit-text-fill-color: var(--era-ink) !important;
}

body.postid-1510 .era-article h2 {
  font-size: clamp(24px, 3.3vw, 30px);
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: -0.025em;
}

body.postid-1510 .era-article h3 {
  font-size: 19px;
  line-height: 1.3;
  font-weight: 900;
}

body.postid-1510 .era-article p {
  color: var(--era-muted);
  -webkit-text-fill-color: var(--era-muted);
}

body.postid-1510 .era-article strong {
  color: var(--era-ink);
  -webkit-text-fill-color: var(--era-ink);
  font-weight: 950;
}

body.postid-1510 .era-article code {
  display: inline-block;
  max-width: 100%;
  padding: 3px 6px;
  border: 1px solid var(--era-line-soft);
  background: var(--era-paper-input);
  color: var(--era-ink);
  -webkit-text-fill-color: var(--era-ink);
  border-radius: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

body.postid-1510 .era-article__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.postid-1510 .era-article__nav a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid var(--era-line);
  background: var(--era-paper-input);
  color: var(--era-ink) !important;
  -webkit-text-fill-color: var(--era-ink) !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.72;
}

body.postid-1510 .era-article__nav a:hover,
body.postid-1510 .era-article__nav a:focus-visible {
  background: var(--era-amber);
  outline: 2px solid var(--era-line);
  outline-offset: 2px;
}

body.postid-1510 .era-article__grid,
body.postid-1510 .era-article__process,
body.postid-1510 .era-article__use,
body.postid-1510 .era-article__faq {
  display: grid;
  gap: 10px;
  min-width: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.postid-1510 .era-article__grid--cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.postid-1510 .era-article__process {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.postid-1510 .era-article__use {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.postid-1510 .era-article__card,
body.postid-1510 .era-article__process-card,
body.postid-1510 .era-article__use-card,
body.postid-1510 .era-article__notice,
body.postid-1510 .era-article__faq details {
  display: grid;
  gap: 7px;
  min-width: 0;
  margin: 0;
  padding: 12px;
  background: var(--era-paper-input);
  border: 1px solid var(--era-line);
  box-shadow: 3px 3px 0 rgba(82, 65, 50, 0.13);
  color: var(--era-muted);
  -webkit-text-fill-color: var(--era-muted);
}

body.postid-1510 .era-article__process-card {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 9px;
}

body.postid-1510 .era-article__process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border: 1px solid var(--era-line);
  background: var(--era-amber);
  color: var(--era-ink);
  -webkit-text-fill-color: var(--era-ink);
  font-weight: 950;
  line-height: 1;
}

body.postid-1510 .era-article__process-card code {
  grid-column: 1 / -1;
  width: 100%;
}

body.postid-1510 .era-article__notice {
  background: rgba(239, 225, 188, 0.64);
}

body.postid-1510 .era-article__notice ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.postid-1510 .era-article li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--era-muted);
  -webkit-text-fill-color: var(--era-muted);
}

body.postid-1510 .era-article li::before {
  content: "";
  display: block;
  position: static !important;
  flex: 0 0 7px;
  align-self: center;
  width: 7px;
  height: 7px;
  margin: 0;
  border: 1px solid var(--era-line);
  background: var(--era-amber);
  transform: none !important;
}

body.postid-1510 .era-article__faq details {
  overflow: hidden;
}

body.postid-1510 .era-article__faq summary {
  display: list-item;
  list-style-position: inside;
  margin: 0;
  cursor: pointer;
  color: var(--era-ink);
  -webkit-text-fill-color: var(--era-ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.48;
  outline-offset: 3px;
}

body.postid-1510 .era-article__faq summary::after {
  content: none !important;
  display: none !important;
}

body.postid-1510 .era-article__faq details p {
  margin-top: 7px;
}

body.postid-1510 .era-article script[type="application/ld+json"] {
  display: none !important;
}

body.postid-1510[data-scheme="dark"] .entry-content > article.era-article,
body.postid-1510[data-scheme="inverse"] .entry-content > article.era-article,
body.postid-1510[data-scheme="dark"] .entry-content > .baseball-era-ad.baseball-era-ad--after-tool + article.era-article,
body.postid-1510[data-scheme="inverse"] .entry-content > .baseball-era-ad.baseball-era-ad--after-tool + article.era-article {
  background:
    linear-gradient(rgba(210, 170, 85, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(210, 170, 85, 0.045) 1px, transparent 1px),
    var(--era-paper-soft);
  border-color: var(--era-line);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
  color: var(--era-ink) !important;
  -webkit-text-fill-color: var(--era-ink) !important;
}

body.postid-1510[data-scheme="dark"] .era-article > header,
body.postid-1510[data-scheme="inverse"] .era-article > header,
body.postid-1510[data-scheme="dark"] .era-article > section,
body.postid-1510[data-scheme="inverse"] .era-article > section,
body.postid-1510[data-scheme="dark"] .era-article h2,
body.postid-1510[data-scheme="inverse"] .era-article h2,
body.postid-1510[data-scheme="dark"] .era-article h3,
body.postid-1510[data-scheme="inverse"] .era-article h3 {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--era-ink) !important;
  -webkit-text-fill-color: var(--era-ink) !important;
}

body.postid-1510[data-scheme="dark"] .era-article p,
body.postid-1510[data-scheme="inverse"] .era-article p,
body.postid-1510[data-scheme="dark"] .era-article li,
body.postid-1510[data-scheme="inverse"] .era-article li,
body.postid-1510[data-scheme="dark"] .era-article__card,
body.postid-1510[data-scheme="inverse"] .era-article__card,
body.postid-1510[data-scheme="dark"] .era-article__use-card,
body.postid-1510[data-scheme="inverse"] .era-article__use-card,
body.postid-1510[data-scheme="dark"] .era-article__process-card,
body.postid-1510[data-scheme="inverse"] .era-article__process-card,
body.postid-1510[data-scheme="dark"] .era-article__notice,
body.postid-1510[data-scheme="inverse"] .era-article__notice,
body.postid-1510[data-scheme="dark"] .era-article__faq details,
body.postid-1510[data-scheme="inverse"] .era-article__faq details {
  color: var(--era-muted) !important;
  -webkit-text-fill-color: var(--era-muted) !important;
}

body.postid-1510[data-scheme="dark"] .era-article__nav a,
body.postid-1510[data-scheme="inverse"] .era-article__nav a,
body.postid-1510[data-scheme="dark"] .era-article strong,
body.postid-1510[data-scheme="inverse"] .era-article strong,
body.postid-1510[data-scheme="dark"] .era-article__faq summary,
body.postid-1510[data-scheme="inverse"] .era-article__faq summary,
body.postid-1510[data-scheme="dark"] .era-article code,
body.postid-1510[data-scheme="inverse"] .era-article code {
  color: var(--era-ink) !important;
  -webkit-text-fill-color: var(--era-ink) !important;
}

body.postid-1510[data-scheme="dark"] .era-article__card,
body.postid-1510[data-scheme="inverse"] .era-article__card,
body.postid-1510[data-scheme="dark"] .era-article__process-card,
body.postid-1510[data-scheme="inverse"] .era-article__process-card,
body.postid-1510[data-scheme="dark"] .era-article__use-card,
body.postid-1510[data-scheme="inverse"] .era-article__use-card,
body.postid-1510[data-scheme="dark"] .era-article__faq details,
body.postid-1510[data-scheme="inverse"] .era-article__faq details,
body.postid-1510[data-scheme="dark"] .era-article__nav a,
body.postid-1510[data-scheme="inverse"] .era-article__nav a,
body.postid-1510[data-scheme="dark"] .era-article code,
body.postid-1510[data-scheme="inverse"] .era-article code {
  background: var(--era-paper-input);
  border-color: var(--era-line);
}

body.postid-1510[data-scheme="dark"] .era-article__notice,
body.postid-1510[data-scheme="inverse"] .era-article__notice {
  background: rgba(87, 64, 34, 0.58);
  border-color: var(--era-line);
}

body.postid-1510[data-scheme="dark"] .era-article li::before,
body.postid-1510[data-scheme="inverse"] .era-article li::before,
body.postid-1510[data-scheme="dark"] .era-article__process-card span,
body.postid-1510[data-scheme="inverse"] .era-article__process-card span {
  background: var(--era-amber);
  border-color: var(--era-line);
  color: #2b2119;
  -webkit-text-fill-color: #2b2119;
}

@media (max-width: 820px) {
  body.postid-1510 .entry-content > article.era-article,
  body.postid-1510 .entry-content > .baseball-era-ad.baseball-era-ad--after-tool + article.era-article {
    width: min(100%, calc(100vw - 24px)) !important;
    padding: 18px;
    gap: 16px;
  }

  body.postid-1510 .era-article__grid--cards,
  body.postid-1510 .era-article__process,
  body.postid-1510 .era-article__use {
    grid-template-columns: minmax(0, 1fr);
  }

  body.postid-1510 .era-article__nav {
    gap: 7px;
  }

  body.postid-1510 .era-article__nav a {
    flex: 1 1 calc(50% - 7px);
    justify-content: center;
  }
}

@media (max-width: 380px) {
  body.postid-1510 .entry-content > article.era-article,
  body.postid-1510 .entry-content > .baseball-era-ad.baseball-era-ad--after-tool + article.era-article {
    width: min(100%, calc(100vw - 20px)) !important;
    padding: 14px;
  }

  body.postid-1510 .era-article h2 {
    font-size: clamp(22px, 7vw, 26px);
  }

  body.postid-1510 .era-article__nav a {
    flex-basis: 100%;
  }
}

/* ROBERIN baseball ERA calculator - input value clarity v6 - 2026-05-20
   Actual user-entered values must be bold/readable; placeholder/example text stays lighter. */
body.postid-1510 .number-input,
body.postid-1510 .select-input {
  font-weight: 950;
  color: var(--era-ink);
  -webkit-text-fill-color: var(--era-ink);
}

body.postid-1510 .number-input::placeholder {
  font-weight: 600;
  color: rgba(103, 88, 74, 0.52);
  -webkit-text-fill-color: rgba(103, 88, 74, 0.52);
  opacity: 1;
}

body.postid-1510[data-scheme="dark"] .number-input,
body.postid-1510[data-scheme="inverse"] .number-input,
body.postid-1510[data-scheme="dark"] .select-input,
body.postid-1510[data-scheme="inverse"] .select-input {
  font-weight: 950;
  color: var(--era-ink) !important;
  -webkit-text-fill-color: var(--era-ink) !important;
}

body.postid-1510[data-scheme="dark"] .number-input::placeholder,
body.postid-1510[data-scheme="inverse"] .number-input::placeholder {
  font-weight: 600;
  color: rgba(240, 223, 197, 0.48) !important;
  -webkit-text-fill-color: rgba(240, 223, 197, 0.48) !important;
  opacity: 1;
}


/* ROBERIN baseball ERA article v9 - target namespace correction
   PDF page deletion remains the rhythm reference, but target public HTML/CSS uses only era-article classes. */
body.postid-1510 .era-article {
  --era-article-panel: #f8efe2;
  --era-article-card: #fff8ed;
  --era-article-accent: #e2edd8;
  --era-article-ink: #34281f;
  --era-article-muted: #574838;
  --era-article-line: #6b5745;
  --era-article-line-soft: rgba(107, 87, 69, .34);
  --era-article-mustard: #d2aa55;
  --era-article-mustard-soft: rgba(210, 170, 85, .24);
  --era-article-focus: #4f7d94;
  --era-article-shadow: rgba(82, 65, 50, .22);
  --era-article-soft-shadow: rgba(82, 65, 50, .13);
}

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

body.postid-1510 .entry-content article.roberin-article-body.era-article,
body.postid-1510 .entry-content > .baseball-era-ad.baseball-era-ad--after-tool + article.roberin-article-body.era-article,
body.postid-1510 .era-article {
  position: relative !important;
  z-index: 0 !important;
  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 42px !important;
  padding: clamp(16px, 3vw, 28px) !important;
  color: var(--era-article-ink) !important;
  -webkit-text-fill-color: var(--era-article-ink) !important;
  background:
    linear-gradient(rgba(107, 87, 69, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, .04) 1px, transparent 1px),
    var(--era-article-panel) !important;
  background-size: 28px 28px, 28px 28px, auto !important;
  border: 2px solid var(--era-article-line) !important;
  border-radius: 0 !important;
  box-shadow: 5px 5px 0 var(--era-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-1510 .entry-content > .baseball-era-ad.baseball-era-ad--after-tool + article.roberin-article-body.era-article {
  margin-top: 24px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body.postid-1510 .era-article code {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  padding: 5px 8px !important;
  color: var(--era-article-ink) !important;
  -webkit-text-fill-color: var(--era-article-ink) !important;
  background: var(--era-article-card) !important;
  border: 1px solid var(--era-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-1510 .era-article :is(ul, ol) {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding-left: 0 !important;
  list-style: none !important;
}

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

body.postid-1510 .era-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;
  color: var(--era-article-muted) !important;
  -webkit-text-fill-color: var(--era-article-muted) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  list-style: none !important;
  overflow-wrap: anywhere !important;
}

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

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

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

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

body.postid-1510 .era-article details {
  margin: 0 !important;
}

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

body.postid-1510 .era-article summary::after {
  content: none !important;
  display: none !important;
}

body.postid-1510 .era-article details[open] summary {
  margin-bottom: 8px !important;
}

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

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

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

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

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

@media (max-width: 640px) {
  body.postid-1510 .entry-content > .baseball-era-ad.baseball-era-ad--after-tool + article.roberin-article-body.era-article {
    margin-top: 20px !important;
  }

  body.postid-1510 .entry-content article.roberin-article-body.era-article,
  body.postid-1510 .era-article {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    padding: 12px !important;
    box-shadow: 4px 4px 0 rgba(82, 65, 50, .16) !important;
  }

  body.postid-1510 .era-article .era-article__grid,
  body.postid-1510 .era-article .era-article__process-grid,
  body.postid-1510 .era-article .era-article__use-grid {
    grid-template-columns: 1fr !important;
  }

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

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