.blood-pressure-classifier-container,
.blood-pressure-classifier-container *,
.blood-pressure-classifier-container *::before,
.blood-pressure-classifier-container *::after {
  box-sizing: border-box;
}

.blood-pressure-classifier-container {
  --bp-paper: #f6ead4;
  --bp-paper-deep: #ecd5b2;
  --bp-panel: #fff7e8;
  --bp-panel-soft: #f9ebd2;
  --bp-ink: #2f241b;
  --bp-muted: #665242;
  --bp-line: #6b5745;
  --bp-line-strong: #3f3127;
  --bp-focus: #f6c65b;
  --bp-cta: #f0b83f;
  --bp-cta-hover: #e3aa30;
  --bp-teal: #3f897d;
  --bp-coral: #c98264;
  --bp-green: #4d9562;
  --bp-shadow: 5px 5px 0 rgba(63, 49, 39, 0.22);
  --bp-shadow-small: 3px 3px 0 rgba(63, 49, 39, 0.18);
  --bp-normal: #5f9d66;
  --bp-elevated: #e1bd4d;
  --bp-stage1: #d79545;
  --bp-stage2: #c56d45;
  --bp-crisis: #a8423c;

  position: relative;
  width: min(100%, 1040px);
  margin: 16px auto 24px;
  padding: 18px;
  color: var(--bp-ink);
  background:
    linear-gradient(rgba(107, 87, 69, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, 0.08) 1px, transparent 1px),
    var(--bp-paper);
  background-size: 18px 18px;
  border: 3px solid var(--bp-line-strong);
  border-radius: 0;
  box-shadow: var(--bp-shadow);
  font-family: "Noto Sans KR", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

.blood-pressure-classifier-container.dark,
body[data-scheme="dark"] .blood-pressure-classifier-container,
body[data-scheme="inverse"] .blood-pressure-classifier-container {
  --bp-paper: #201811;
  --bp-paper-deep: #2a2017;
  --bp-panel: #2f241b;
  --bp-panel-soft: #392b20;
  --bp-ink: #f2e4cf;
  --bp-muted: #ead2b6;
  --bp-line: #b58f62;
  --bp-line-strong: #d2ad75;
  --bp-focus: #f0c86a;
  --bp-cta: #d9a94b;
  --bp-cta-hover: #efc76c;
  --bp-teal: #6ab2a1;
  --bp-coral: #e0a37d;
  --bp-green: #7bc083;
  --bp-shadow: 5px 5px 0 rgba(0, 0, 0, 0.36);
  --bp-shadow-small: 3px 3px 0 rgba(0, 0, 0, 0.28);
  --bp-normal: #78bf7c;
  --bp-elevated: #f0d06a;
  --bp-stage1: #e6ab58;
  --bp-stage2: #df8459;
  --bp-crisis: #de675e;
}

@media (prefers-color-scheme: dark) {
  .blood-pressure-classifier-container:not(.dark):not(.light) {
    --bp-paper: #201811;
    --bp-paper-deep: #2a2017;
    --bp-panel: #2f241b;
    --bp-panel-soft: #392b20;
    --bp-ink: #f2e4cf;
    --bp-muted: #ead2b6;
    --bp-line: #b58f62;
    --bp-line-strong: #d2ad75;
    --bp-focus: #f0c86a;
    --bp-cta: #d9a94b;
    --bp-cta-hover: #efc76c;
    --bp-teal: #6ab2a1;
    --bp-coral: #e0a37d;
    --bp-green: #7bc083;
    --bp-shadow: 5px 5px 0 rgba(0, 0, 0, 0.36);
    --bp-shadow-small: 3px 3px 0 rgba(0, 0, 0, 0.28);
    --bp-normal: #78bf7c;
    --bp-elevated: #f0d06a;
    --bp-stage1: #e6ab58;
    --bp-stage2: #df8459;
    --bp-crisis: #de675e;
  }
}

.blood-pressure-classifier-container button,
.blood-pressure-classifier-container input {
  font: inherit;
}

.blood-pressure-classifier-container button {
  min-height: 42px;
}

.blood-pressure-classifier-container .header {
  padding: 0 54px 14px 0;
  margin: 0 0 14px;
  border-bottom: 3px double var(--bp-line);
}

.blood-pressure-classifier-container .main-title {
  margin: 0 0 6px;
  color: var(--bp-ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.blood-pressure-classifier-container .subtitle {
  max-width: 620px;
  margin: 0;
  color: var(--bp-muted);
  font-size: 15px;
  line-height: 1.45;
}

.blood-pressure-classifier-container .dark-mode-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--bp-ink);
  background: var(--bp-panel);
  border: 2px solid var(--bp-line-strong);
  border-radius: 0;
  box-shadow: var(--bp-shadow-small);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
  z-index: 2;
}

.blood-pressure-classifier-container .dark-mode-toggle:hover,
.blood-pressure-classifier-container button:hover {
  transform: translate(1px, 1px);
}

.blood-pressure-classifier-container .dark-mode-toggle:hover {
  background: var(--bp-paper-deep);
  box-shadow: 2px 2px 0 rgba(63, 49, 39, 0.18);
}

.blood-pressure-classifier-container .dark-mode-toggle:active,
.blood-pressure-classifier-container button:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}

.blood-pressure-classifier-container button:focus-visible,
.blood-pressure-classifier-container input:focus-visible {
  outline: 3px solid var(--bp-focus);
  outline-offset: 2px;
}

.blood-pressure-classifier-container .main-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 14px;
  align-items: start;
}

.blood-pressure-classifier-container .input-section,
.blood-pressure-classifier-container .result-section,
.blood-pressure-classifier-container .info-section {
  min-width: 0;
  color: var(--bp-ink);
  background: var(--bp-panel);
  border: 2px solid var(--bp-line);
  border-radius: 0;
  box-shadow: var(--bp-shadow-small);
}

.blood-pressure-classifier-container .input-section,
.blood-pressure-classifier-container .result-section {
  display: flex;
  flex-direction: column;
  align-self: start;
  padding: 14px;
}

.blood-pressure-classifier-container .section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  margin: 0 0 12px;
  padding: 0 0 8px;
  color: var(--bp-ink);
  border-bottom: 2px solid var(--bp-line);
  font-size: 16px;
  font-weight: 800;
}

.blood-pressure-classifier-container .section-header svg {
  flex: 0 0 auto;
  color: var(--bp-teal);
  stroke: currentColor;
}

.blood-pressure-classifier-container .input-group {
  min-width: 0;
  margin: 0 0 12px;
}

.blood-pressure-classifier-container .input-group label {
  display: block;
  margin: 0 0 5px;
  color: var(--bp-ink);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
}

.blood-pressure-classifier-container .input-group input {
  display: block;
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 8px 10px;
  color: var(--bp-ink);
  background: var(--bp-panel-soft);
  border: 2px solid var(--bp-line);
  border-radius: 0;
  box-shadow: 2px 2px 0 rgba(63, 49, 39, 0.14);
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.blood-pressure-classifier-container .input-group input::placeholder {
  color: var(--bp-muted);
  opacity: 0.72;
}

.blood-pressure-classifier-container .input-group input:focus {
  background: #fff2b8;
  border-color: var(--bp-line-strong);
  outline: none;
}

.blood-pressure-classifier-container.dark .input-group input:focus,
body[data-scheme="dark"] .blood-pressure-classifier-container .input-group input:focus,
body[data-scheme="inverse"] .blood-pressure-classifier-container .input-group input:focus {
  background: #47341e;
}

.blood-pressure-classifier-container .input-description {
  margin-top: 5px;
  color: var(--bp-muted);
  font-size: 13px;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.blood-pressure-classifier-container .calculate-btn,
.blood-pressure-classifier-container .sample-btn,
.blood-pressure-classifier-container .reset-btn,
.blood-pressure-classifier-container .copy-btn-large,
.blood-pressure-classifier-container .save-image-btn {
  border: 2px solid var(--bp-line-strong);
  border-radius: 0;
  box-shadow: var(--bp-shadow-small);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.blood-pressure-classifier-container .calculate-btn {
  width: 100%;
  margin-top: 2px;
  padding: 10px 14px;
  color: #2f241b;
  background: var(--bp-cta);
  font-size: 17px;
}

.blood-pressure-classifier-container .calculate-btn:hover {
  background: var(--bp-cta-hover);
}

.blood-pressure-classifier-container .button-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.blood-pressure-classifier-container .sample-btn,
.blood-pressure-classifier-container .reset-btn {
  width: 100%;
  min-width: 0;
  padding: 9px 10px;
  color: #fff7e8;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.blood-pressure-classifier-container .sample-btn {
  background: var(--bp-teal);
}

.blood-pressure-classifier-container .reset-btn {
  color: #2f241b;
  background: var(--bp-paper-deep);
}

.blood-pressure-classifier-container.dark .reset-btn,
body[data-scheme="dark"] .blood-pressure-classifier-container .reset-btn,
body[data-scheme="inverse"] .blood-pressure-classifier-container .reset-btn {
  color: var(--bp-ink);
}

.blood-pressure-classifier-container .result-content {
  display: grid;
  grid-template-rows: auto auto minmax(94px, auto) auto auto;
  gap: 10px;
}

.blood-pressure-classifier-container .result-item {
  margin: 0;
  padding: 12px;
  text-align: center;
  background: var(--bp-paper-deep);
  border: 2px solid var(--bp-line);
  border-radius: 0;
}

.blood-pressure-classifier-container .result-label {
  display: block;
  margin: 0 0 4px;
  color: var(--bp-muted);
  font-size: 13px;
  font-weight: 750;
}

.blood-pressure-classifier-container .result-value {
  display: block;
  min-height: 34px;
  color: var(--bp-ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.blood-pressure-classifier-container .bp-gauge-container {
  position: relative;
  margin: 4px 0 2px;
  padding: 0 10px 14px;
}

.blood-pressure-classifier-container .bp-gauge-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  height: 22px;
  overflow: hidden;
  border: 2px solid var(--bp-line-strong);
  border-radius: 0;
}

.blood-pressure-classifier-container .bp-gauge-segment {
  min-width: 0;
}

.blood-pressure-classifier-container .segment-normal {
  background: var(--bp-normal);
}

.blood-pressure-classifier-container .segment-elevated {
  background: var(--bp-elevated);
}

.blood-pressure-classifier-container .segment-stage1 {
  background: var(--bp-stage1);
}

.blood-pressure-classifier-container .segment-stage2 {
  background: var(--bp-stage2);
}

.blood-pressure-classifier-container .segment-crisis {
  background: var(--bp-crisis);
}

.blood-pressure-classifier-container .bp-gauge-marker {
  position: absolute;
  top: 23px;
  left: 0;
  color: var(--bp-line-strong);
  font-size: 15px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-50%);
  transition: left 0.35s ease, opacity 0.2s ease;
}

.blood-pressure-classifier-container .bp-gauge-marker.visible {
  opacity: 1;
}

.blood-pressure-classifier-container .advice-box {
  min-width: 0;
  margin: 0;
  padding: 11px;
  background: var(--bp-panel-soft);
  border: 2px dashed var(--bp-line);
  border-radius: 0;
}

.blood-pressure-classifier-container .advice-title {
  display: block;
  margin: 0 0 5px;
  color: var(--bp-teal);
  font-size: 14px;
  font-weight: 850;
}

.blood-pressure-classifier-container .advice-text {
  margin: 0;
  color: var(--bp-ink);
  font-size: 14px;
  line-height: 1.48;
  overflow-wrap: anywhere;
}

.blood-pressure-classifier-container .copy-btn-large,
.blood-pressure-classifier-container .save-image-btn {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 9px 10px;
  color: var(--bp-ink);
  background: var(--bp-panel);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.blood-pressure-classifier-container .copy-btn-large:hover,
.blood-pressure-classifier-container .save-image-btn:hover {
  background: var(--bp-paper-deep);
}

.blood-pressure-classifier-container .save-image-btn {
  color: #fff7e8;
  background: var(--bp-coral);
}

.blood-pressure-classifier-container .save-image-btn:hover {
  background: #b97054;
}

.blood-pressure-classifier-container.dark .save-image-btn:hover,
body[data-scheme="dark"] .blood-pressure-classifier-container .save-image-btn:hover,
body[data-scheme="inverse"] .blood-pressure-classifier-container .save-image-btn:hover {
  background: #c98b6e;
}

.blood-pressure-classifier-container .save-image-btn.capturing {
  display: none;
}

.blood-pressure-classifier-container .info-section {
  margin-top: 14px;
  padding: 12px 14px;
}

.blood-pressure-classifier-container .info-section h3 {
  margin: 0 0 9px;
  color: var(--bp-ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.3;
}

.blood-pressure-classifier-container .info-section ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blood-pressure-classifier-container .info-section li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 7px;
  min-width: 0;
  min-height: 62px;
  margin: 0;
  padding: 8px;
  color: var(--bp-muted);
  background: var(--bp-panel-soft);
  border: 1px solid var(--bp-line);
  font-size: 13px;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.blood-pressure-classifier-container .dot {
  width: 11px;
  height: 11px;
  margin: 3px 0 0;
  border: 1px solid var(--bp-line-strong);
  border-radius: 50%;
}

.blood-pressure-classifier-container .dot.normal {
  background: var(--bp-normal);
}

.blood-pressure-classifier-container .dot.elevated {
  background: var(--bp-elevated);
}

.blood-pressure-classifier-container .dot.stage1 {
  background: var(--bp-stage1);
}

.blood-pressure-classifier-container .dot.stage2 {
  background: var(--bp-stage2);
}

.blood-pressure-classifier-container .dot.crisis {
  background: var(--bp-crisis);
}

.blood-pressure-classifier-container .watermark {
  margin-top: 10px;
  color: var(--bp-muted);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
  opacity: 0.74;
  pointer-events: none;
}

.blood-pressure-classifier-container .toast {
  position: static;
  z-index: 3;
  display: none;
  max-width: 100%;
  margin-top: 10px;
  padding: 10px 12px;
  color: var(--bp-ink);
  background: var(--bp-panel);
  border: 2px solid var(--bp-line-strong);
  border-radius: 0;
  box-shadow: var(--bp-shadow-small);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.blood-pressure-classifier-container .toast.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.blood-pressure-classifier-container .toast.success {
  color: #fff7e8;
  background: var(--bp-green);
}

.blood-pressure-classifier-container .toast.error {
  color: #fff7e8;
  background: var(--bp-crisis);
}

@media (max-width: 980px) {
  .blood-pressure-classifier-container {
    width: min(100% - 24px, 760px);
  }

  .blood-pressure-classifier-container .main-grid {
    grid-template-columns: 1fr;
  }

  .blood-pressure-classifier-container .result-content {
    grid-template-rows: auto auto auto auto auto;
  }

  .blood-pressure-classifier-container .info-section ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .blood-pressure-classifier-container {
    width: min(100% - 16px, 420px);
    margin: 10px auto 18px;
    padding: 12px;
    box-shadow: 4px 4px 0 rgba(63, 49, 39, 0.18);
  }

  .blood-pressure-classifier-container .header {
    padding: 0 48px 12px 0;
    margin-bottom: 12px;
  }

  .blood-pressure-classifier-container .main-title {
    font-size: 23px;
  }

  .blood-pressure-classifier-container .subtitle {
    font-size: 14px;
  }

  .blood-pressure-classifier-container .dark-mode-toggle {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .blood-pressure-classifier-container .input-section,
  .blood-pressure-classifier-container .result-section {
    padding: 11px;
  }

  .blood-pressure-classifier-container .button-group {
    grid-template-columns: 1fr;
  }

  .blood-pressure-classifier-container .input-group input {
    height: 45px;
    font-size: 20px;
  }

  .blood-pressure-classifier-container .info-section {
    padding: 11px;
  }

  .blood-pressure-classifier-container .info-section ul {
    grid-template-columns: 1fr;
  }

  .blood-pressure-classifier-container .info-section li {
    min-height: 0;
  }

  .blood-pressure-classifier-container .toast {
    max-width: 100%;
  }
}

.roberin-leaderboard-ad {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(728px, calc(100% - 24px)) !important;
  max-width: 728px !important;
  min-height: 90px !important;
  margin: 24px auto !important;
  padding: 0 !important;
  overflow: visible !important;
  color: rgba(102, 82, 66, 0.72) !important;
  text-align: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.roberin-leaderboard-ad ins.adsbygoogle {
  box-sizing: border-box !important;
  display: block !important;
  width: min(728px, 100%) !important;
  max-width: 100% !important;
  height: 90px !important;
  min-height: 90px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.roberin-leaderboard-ad--after-tool {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.roberin-article-body.blood-pressure-article {
  --bpa-paper: #fff7e8;
  --bpa-panel: #fffaf0;
  --bpa-panel-strong: #f4dfb8;
  --bpa-ink: #2f241b;
  --bpa-muted: #665242;
  --bpa-line: #6b5745;
  --bpa-line-soft: rgba(107, 87, 69, 0.34);
  --bpa-yellow: #ddbf6f;
  --bpa-green: #5f8f6d;
  --bpa-teal: #3f897d;
  --bpa-coral: #c98264;
  --bpa-red: #a8423c;
  --bpa-shadow: 5px 5px 0 rgba(63, 49, 39, 0.18);

  box-sizing: border-box !important;
  width: min(950px, calc(100% - 24px)) !important;
  max-width: 950px !important;
  margin: 0 auto 28px !important;
  padding: 28px !important;
  color: var(--bpa-ink) !important;
  background:
    linear-gradient(rgba(107, 87, 69, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, 0.045) 1px, transparent 1px),
    var(--bpa-paper) !important;
  background-size: 18px 18px !important;
  border: 2px solid var(--bpa-line) !important;
  border-radius: 0 !important;
  box-shadow: var(--bpa-shadow) !important;
  font-family: "Noto Sans KR", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif !important;
  line-height: 1.72 !important;
}

.roberin-article-body.blood-pressure-article,
.roberin-article-body.blood-pressure-article * {
  box-sizing: border-box !important;
}

body[data-scheme="dark"] .roberin-leaderboard-ad,
body[data-scheme="inverse"] .roberin-leaderboard-ad,
body[data-scheme="dark"] .roberin-qa-ad-placeholder,
body[data-scheme="inverse"] .roberin-qa-ad-placeholder {
  color: rgba(242, 228, 207, 0.72) !important;
}

body[data-scheme="dark"] .roberin-article-body.blood-pressure-article,
body[data-scheme="inverse"] .roberin-article-body.blood-pressure-article {
  --bpa-paper: #201811;
  --bpa-panel: #2f241b;
  --bpa-panel-strong: #3c2d20;
  --bpa-ink: #f2e4cf;
  --bpa-muted: #ead2b6;
  --bpa-line: #d2ad75;
  --bpa-line-soft: rgba(210, 173, 117, 0.42);
  --bpa-yellow: #d9a94b;
  --bpa-green: #7bc083;
  --bpa-teal: #6ab2a1;
  --bpa-coral: #e0a37d;
  --bpa-red: #de675e;
  --bpa-shadow: 5px 5px 0 rgba(0, 0, 0, 0.32);
}

.blood-pressure-article > header,
.blood-pressure-article > section {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.blood-pressure-article > section {
  margin-top: 26px !important;
  padding-top: 24px !important;
  border-top: 1px dashed var(--bpa-line-soft) !important;
}

.blood-pressure-article .roberin-article-kicker {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin: 0 0 10px !important;
  padding: 4px 9px !important;
  color: var(--bpa-ink) !important;
  background: var(--bpa-yellow) !important;
  border: 1px solid var(--bpa-line) !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0 rgba(63, 49, 39, 0.14) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  overflow-wrap: anywhere !important;
}

.blood-pressure-article h2,
.blood-pressure-article h3,
.blood-pressure-article p,
.blood-pressure-article li,
.blood-pressure-article summary,
.blood-pressure-article th,
.blood-pressure-article td {
  color: var(--bpa-ink) !important;
  -webkit-text-fill-color: currentColor !important;
  letter-spacing: 0 !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
}

.blood-pressure-article h2 {
  margin: 0 0 10px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 25px !important;
  font-weight: 950 !important;
  line-height: 1.34 !important;
}

.blood-pressure-article h3 {
  margin: 0 0 6px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  line-height: 1.38 !important;
}

.blood-pressure-article p {
  margin: 0 !important;
  color: var(--bpa-muted) !important;
  font-size: 16px !important;
  font-weight: 650 !important;
  line-height: 1.78 !important;
}

.blood-pressure-article p + p {
  margin-top: 10px !important;
}

.blood-pressure-article strong {
  color: var(--bpa-ink) !important;
  font-weight: 900 !important;
}

.blood-pressure-article a {
  color: var(--bpa-teal) !important;
  font-weight: 850 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 3px !important;
}

.blood-pressure-article .bp-article-lead {
  max-width: 760px !important;
  color: var(--bpa-muted) !important;
}

.blood-pressure-article .bp-article-nav {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 18px !important;
}

.blood-pressure-article .bp-article-nav a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 32px !important;
  padding: 5px 10px !important;
  color: var(--bpa-ink) !important;
  background: var(--bpa-panel) !important;
  border: 1px solid var(--bpa-line) !important;
  border-radius: 0 !important;
  box-shadow: 2px 2px 0 rgba(63, 49, 39, 0.12) !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
  text-decoration: none !important;
}

.blood-pressure-article .bp-article-nav a:hover,
.blood-pressure-article .bp-article-nav a:focus-visible {
  background: var(--bpa-yellow) !important;
  outline: 2px solid transparent !important;
}

.blood-pressure-article .bp-card-grid,
.blood-pressure-article .bp-example-grid,
.blood-pressure-article .bp-check-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: 14px !important;
}

.blood-pressure-article .bp-check-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.blood-pressure-article .bp-card,
.blood-pressure-article .bp-example-card,
.blood-pressure-article .bp-check-card,
.blood-pressure-article .bp-notice {
  min-width: 0 !important;
  padding: 14px !important;
  background: var(--bpa-panel) !important;
  border: 1px solid var(--bpa-line) !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 rgba(63, 49, 39, 0.12) !important;
}

.blood-pressure-article .bp-card p,
.blood-pressure-article .bp-example-card p,
.blood-pressure-article .bp-check-card p,
.blood-pressure-article .bp-notice p,
.blood-pressure-article .bp-notice li {
  font-size: 15px !important;
  line-height: 1.68 !important;
}

.blood-pressure-article .bp-pill {
  display: inline-flex !important;
  align-items: center !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin-bottom: 8px !important;
  padding: 3px 8px !important;
  color: var(--bpa-ink) !important;
  background: var(--bpa-panel-strong) !important;
  border: 1px solid var(--bpa-line-soft) !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1.25 !important;
}

.blood-pressure-article .bp-table-wrap {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 14px !important;
  overflow-x: auto !important;
  border: 1px solid var(--bpa-line) !important;
  background: var(--bpa-panel) !important;
  box-shadow: 3px 3px 0 rgba(63, 49, 39, 0.12) !important;
}

.blood-pressure-article table {
  width: 100% !important;
  min-width: 620px !important;
  margin: 0 !important;
  border-collapse: collapse !important;
  color: var(--bpa-ink) !important;
  background: transparent !important;
  border: 0 !important;
}

.blood-pressure-article th,
.blood-pressure-article td {
  padding: 10px 12px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--bpa-line-soft) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  text-align: left !important;
  vertical-align: top !important;
}

.blood-pressure-article th {
  background: var(--bpa-panel-strong) !important;
  font-weight: 950 !important;
}

.blood-pressure-article tr:last-child td {
  border-bottom: 0 !important;
}

.blood-pressure-article .bp-stage--normal {
  color: var(--bpa-green) !important;
  font-weight: 950 !important;
}

.blood-pressure-article .bp-stage--watch {
  color: var(--bpa-teal) !important;
  font-weight: 950 !important;
}

.blood-pressure-article .bp-stage--high {
  color: var(--bpa-coral) !important;
  font-weight: 950 !important;
}

.blood-pressure-article .bp-stage--urgent {
  color: var(--bpa-red) !important;
  font-weight: 950 !important;
}

.blood-pressure-article .bp-notice {
  margin-top: 14px !important;
  background: linear-gradient(90deg, rgba(221, 191, 111, 0.22), rgba(255, 250, 240, 0.9)) !important;
}

body[data-scheme="dark"] .blood-pressure-article .bp-notice,
body[data-scheme="inverse"] .blood-pressure-article .bp-notice {
  background: linear-gradient(90deg, rgba(217, 169, 75, 0.22), rgba(47, 36, 27, 0.94)) !important;
}

.blood-pressure-article .bp-notice ul {
  display: grid !important;
  gap: 7px !important;
  margin: 8px 0 0 !important;
  padding-left: 19px !important;
}

.blood-pressure-article .bp-faq-list {
  display: grid !important;
  gap: 10px !important;
  margin-top: 14px !important;
}

.blood-pressure-article details {
  min-width: 0 !important;
  padding: 12px 14px !important;
  background: var(--bpa-panel) !important;
  border: 1px solid var(--bpa-line) !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 rgba(63, 49, 39, 0.12) !important;
}

.blood-pressure-article summary {
  cursor: pointer !important;
  font-size: 15px !important;
  font-weight: 950 !important;
  line-height: 1.42 !important;
}

.blood-pressure-article details p {
  margin-top: 8px !important;
  font-size: 15px !important;
}

.blood-pressure-article .bp-source-note {
  margin-top: 14px !important;
  color: var(--bpa-muted) !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
}

@media (max-width: 760px) {
  .roberin-leaderboard-ad {
    width: min(100% - 16px, 728px) !important;
    min-height: 78px !important;
    margin: 20px auto !important;
  }

  .roberin-leaderboard-ad ins.adsbygoogle {
    height: 78px !important;
    min-height: 78px !important;
  }

  .roberin-article-body.blood-pressure-article {
    width: min(100% - 16px, 430px) !important;
    padding: 17px !important;
    margin-bottom: 22px !important;
    box-shadow: 4px 4px 0 rgba(63, 49, 39, 0.18) !important;
  }

  .blood-pressure-article > section {
    margin-top: 22px !important;
    padding-top: 20px !important;
  }

  .blood-pressure-article h2 {
    font-size: 21px !important;
  }

  .blood-pressure-article h3 {
    font-size: 16px !important;
  }

  .blood-pressure-article p,
  .blood-pressure-article li {
    font-size: 15px !important;
  }

  .blood-pressure-article .bp-article-nav {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .blood-pressure-article .bp-article-nav a {
    justify-content: center !important;
    min-height: 34px !important;
    padding: 5px 7px !important;
    font-size: 12px !important;
    text-align: center !important;
  }

  .blood-pressure-article .bp-card-grid,
  .blood-pressure-article .bp-example-grid,
  .blood-pressure-article .bp-check-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .blood-pressure-article .bp-card,
  .blood-pressure-article .bp-example-card,
  .blood-pressure-article .bp-check-card,
  .blood-pressure-article .bp-notice,
  .blood-pressure-article details {
    padding: 12px !important;
    box-shadow: 2px 2px 0 rgba(63, 49, 39, 0.12) !important;
  }

  .blood-pressure-article th,
  .blood-pressure-article td {
    padding: 9px 10px !important;
    font-size: 13px !important;
  }
}

/* 2026-05-31 repair: align with the current Obsidian references
   (tool: date-difference-calculator, body: pdf-page-deletion). */
.blood-pressure-classifier-container {
  --bp-paper: #f5f5f0;
  --bp-paper-deep: #f8f9fa;
  --bp-panel: #fff;
  --bp-panel-soft: #f9f9f9;
  --bp-ink: #222;
  --bp-muted: #555;
  --bp-line: #333;
  --bp-line-strong: #333;
  --bp-focus: #f39c12;
  --bp-cta: #3498db;
  --bp-cta-hover: #2980b9;
  --bp-teal: #27ae60;
  --bp-coral: #e74c3c;
  --bp-green: #27ae60;
  --bp-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15);
  --bp-shadow-small: 4px 4px 0 rgba(0, 0, 0, 0.15);

  width: 100%;
  max-width: 1180px;
  margin: 20px auto;
  padding: 20px;
  background: var(--bp-paper);
  border: 2px solid var(--bp-line);
  box-shadow: var(--bp-shadow);
}

.blood-pressure-classifier-container .header {
  margin-bottom: 18px;
  padding: 0 54px 12px;
  text-align: center;
  border-bottom-color: var(--bp-line);
}

.blood-pressure-classifier-container .main-title {
  color: #2c3e50;
  font-size: 28px;
  font-weight: 700;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
}

.blood-pressure-classifier-container .subtitle {
  max-width: none;
  margin: 0 auto;
  color: var(--bp-muted);
  font-size: 14px;
}

.blood-pressure-classifier-container .dark-mode-toggle,
.blood-pressure-classifier-container .input-section,
.blood-pressure-classifier-container .result-section,
.blood-pressure-classifier-container .info-section,
.blood-pressure-classifier-container .input-group input,
.blood-pressure-classifier-container .result-item,
.blood-pressure-classifier-container .advice-box,
.blood-pressure-classifier-container .info-section li {
  border-width: 1px;
}

.blood-pressure-classifier-container .main-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.blood-pressure-classifier-container .input-section,
.blood-pressure-classifier-container .result-section,
.blood-pressure-classifier-container .info-section {
  padding: 15px;
  box-shadow: var(--bp-shadow-small);
}

.blood-pressure-classifier-container .section-header {
  margin-bottom: 12px;
  padding-bottom: 8px;
  color: #2c3e50;
  border-bottom-width: 1px;
  font-size: 17px;
  font-weight: 700;
}

.blood-pressure-classifier-container .input-group input {
  height: 44px;
  background: #fff;
  box-shadow: none;
  font-size: 20px;
}

.blood-pressure-classifier-container .input-group input:focus {
  background: #fffacd;
  border-color: var(--bp-focus);
}

.blood-pressure-classifier-container .calculate-btn,
.blood-pressure-classifier-container .sample-btn,
.blood-pressure-classifier-container .reset-btn,
.blood-pressure-classifier-container .copy-btn-large,
.blood-pressure-classifier-container .save-image-btn {
  border-width: 1px;
  box-shadow: var(--bp-shadow-small);
}

.blood-pressure-classifier-container .calculate-btn,
.blood-pressure-classifier-container .sample-btn {
  color: #fff;
  background: var(--bp-cta);
}

.blood-pressure-classifier-container .calculate-btn:hover,
.blood-pressure-classifier-container .sample-btn:hover {
  background: var(--bp-cta-hover);
}

.blood-pressure-classifier-container .reset-btn,
.blood-pressure-classifier-container .copy-btn-large {
  color: var(--bp-ink);
  background: #fff;
}

.blood-pressure-classifier-container .save-image-btn {
  color: #fff;
  background: var(--bp-coral);
}

.blood-pressure-classifier-container .result-item,
.blood-pressure-classifier-container .advice-box,
.blood-pressure-classifier-container .info-section li {
  background: var(--bp-panel-soft);
  border-color: #ddd;
}

.blood-pressure-classifier-container .bp-gauge-bar {
  border-width: 1px;
}

.roberin-article-body.blood-pressure-article {
  --bpa-paper: #f8efe2;
  --bpa-panel: transparent;
  --bpa-panel-strong: transparent;
  --bpa-ink: #34281f;
  --bpa-muted: #574838;
  --bpa-line: #6b5745;
  --bpa-line-soft: rgba(107, 87, 69, 0.3);
  --bpa-yellow: #e2edd8;
  --bpa-green: #5f8f6d;
  --bpa-teal: #3f897d;
  --bpa-coral: #a65f43;
  --bpa-red: #a8423c;
  --bpa-shadow: 4px 4px 0 rgba(82, 65, 50, 0.42);

  width: min(950px, calc(100% - 24px)) !important;
  margin: 28px auto 40px !important;
  padding: 30px 34px !important;
  color: var(--bpa-ink) !important;
  background: var(--bpa-paper) !important;
  border: 2px solid var(--bpa-line) !important;
  box-shadow: var(--bpa-shadow) !important;
  line-height: 1.78 !important;
}

.blood-pressure-article > header,
.blood-pressure-article > section,
.blood-pressure-article .bp-card-grid,
.blood-pressure-article .bp-example-grid,
.blood-pressure-article .bp-check-grid,
.blood-pressure-article .bp-card,
.blood-pressure-article .bp-example-card,
.blood-pressure-article .bp-check-card,
.blood-pressure-article .bp-notice,
.blood-pressure-article details,
.blood-pressure-article .bp-table-wrap {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.blood-pressure-article > section {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

.blood-pressure-article .roberin-article-kicker {
  display: block !important;
  width: auto !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  color: var(--bpa-muted) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.78 !important;
}

.blood-pressure-article .bp-article-lead {
  max-width: none !important;
}

.blood-pressure-article h3 {
  margin: 26px 0 12px !important;
  padding: 0 0 7px !important;
  color: var(--bpa-ink) !important;
  border-bottom: 1px solid var(--bpa-line-soft) !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

.blood-pressure-article p,
.blood-pressure-article li,
.blood-pressure-article summary,
.blood-pressure-article th,
.blood-pressure-article td {
  color: var(--bpa-muted) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.78 !important;
}

.blood-pressure-article p {
  margin: 0 0 16px !important;
}

.blood-pressure-article .bp-article-nav {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.blood-pressure-article .bp-article-nav a {
  display: inline !important;
  min-height: 0 !important;
  margin: 0 12px 0 0 !important;
  padding: 0 0 0.02em !important;
  color: var(--bpa-teal) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.78 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

.blood-pressure-article .bp-card + .bp-card,
.blood-pressure-article .bp-example-card + .bp-example-card,
.blood-pressure-article .bp-check-card + .bp-check-card,
.blood-pressure-article details + details {
  margin-top: 10px !important;
}

.blood-pressure-article .bp-pill {
  display: block !important;
  width: auto !important;
  margin: 0 0 4px !important;
  padding: 0 !important;
  color: var(--bpa-muted) !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.55 !important;
}

.blood-pressure-article .bp-notice ul {
  display: block !important;
  margin: 0 0 16px !important;
  padding-left: 24px !important;
}

.blood-pressure-article table {
  min-width: 0 !important;
  table-layout: fixed !important;
  border-collapse: collapse !important;
}

.blood-pressure-article th,
.blood-pressure-article td {
  padding: 9px 8px !important;
  border: 1px solid var(--bpa-line-soft) !important;
  background: transparent !important;
  vertical-align: top !important;
}

.blood-pressure-article details {
  margin-bottom: 10px !important;
}

.blood-pressure-article summary {
  cursor: pointer !important;
  color: var(--bpa-ink) !important;
  font-weight: 700 !important;
}

body[data-scheme="dark"] .roberin-article-body.blood-pressure-article,
body[data-scheme="inverse"] .roberin-article-body.blood-pressure-article {
  --bpa-paper: #1f1a14;
  --bpa-ink: #f2e4cf;
  --bpa-muted: #ead2b6;
  --bpa-line: #d2ad75;
  --bpa-line-soft: rgba(210, 173, 117, 0.36);
  --bpa-yellow: #31412c;
  --bpa-shadow: 4px 4px 0 rgba(0, 0, 0, 0.42);
}

@media (max-width: 980px) {
  .blood-pressure-classifier-container .main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .blood-pressure-classifier-container {
    width: calc(100% - 10px);
    max-width: 100%;
    margin: 10px 5px;
    padding: 10px;
  }

  .blood-pressure-classifier-container .header {
    padding: 0 48px 12px;
  }

  .roberin-article-body.blood-pressure-article {
    width: min(100% - 10px, 430px) !important;
    max-width: calc(100% - 10px) !important;
    margin: 24px auto 32px !important;
    padding: 22px 18px !important;
  }

  .blood-pressure-article p,
  .blood-pressure-article li,
  .blood-pressure-article summary,
  .blood-pressure-article th,
  .blood-pressure-article td,
  .blood-pressure-article .bp-article-nav a {
    font-size: 15px !important;
    line-height: 1.78 !important;
  }

  .blood-pressure-article h3 {
    font-size: 17px !important;
  }

  .blood-pressure-article th,
  .blood-pressure-article td {
    padding: 8px 6px !important;
    font-size: 13px !important;
    word-break: keep-all !important;
    overflow-wrap: anywhere !important;
  }
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container {
  width: min(1180px, calc(100vw - 24px)) !important;
  max-width: none !important;
  margin: 20px 0 !important;
  padding: 20px !important;
  left: 50% !important;
  background: var(--bp-paper) !important;
  border: 2px solid var(--bp-line) !important;
  box-shadow: var(--bp-shadow) !important;
  transform: translateX(-50%) !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .header {
  margin-bottom: 18px !important;
  padding: 0 54px 12px !important;
  text-align: center !important;
}

body.postid-3939 .entry-content > article.roberin-article-body.blood-pressure-article {
  width: min(950px, calc(100% - 24px)) !important;
  max-width: 950px !important;
  margin: 28px auto 40px !important;
  padding: 30px 34px !important;
  background: var(--bpa-paper) !important;
  background-image: none !important;
  border: 2px solid var(--bpa-line) !important;
  box-shadow: var(--bpa-shadow) !important;
}

body.postid-3939 .entry-content .blood-pressure-article > header,
body.postid-3939 .entry-content .blood-pressure-article > section,
body.postid-3939 .entry-content .blood-pressure-article .bp-card-grid,
body.postid-3939 .entry-content .blood-pressure-article .bp-example-grid,
body.postid-3939 .entry-content .blood-pressure-article .bp-check-grid,
body.postid-3939 .entry-content .blood-pressure-article .bp-card,
body.postid-3939 .entry-content .blood-pressure-article .bp-example-card,
body.postid-3939 .entry-content .blood-pressure-article .bp-check-card,
body.postid-3939 .entry-content .blood-pressure-article .bp-notice,
body.postid-3939 .entry-content .blood-pressure-article details,
body.postid-3939 .entry-content .blood-pressure-article .bp-table-wrap {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-article-nav a {
  display: inline !important;
  min-height: 0 !important;
  margin: 0 12px 0 0 !important;
  padding: 0 0 0.02em !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-pill {
  display: block !important;
  margin: 0 0 4px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-article-nav {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-3939 .entry-content .blood-pressure-article h2,
body.postid-3939 .entry-content .blood-pressure-article h3 {
  padding: 0 !important;
  color: var(--bpa-ink) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-3939 .entry-content .blood-pressure-article h2 {
  margin: 34px 0 16px !important;
  font-size: clamp(24px, 2.4vw, 30px) !important;
  font-weight: 850 !important;
  line-height: 1.28 !important;
}

body.postid-3939 .entry-content .blood-pressure-article h3 {
  margin: 26px 0 12px !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

body.postid-3939 .entry-content .blood-pressure-article table {
  width: 100% !important;
  min-width: 0 !important;
  table-layout: fixed !important;
}

@media (max-width: 768px) {
  body.postid-3939 .entry-content > .blood-pressure-classifier-container {
    width: calc(100% - 10px) !important;
    margin: 10px 5px 8px !important;
    left: auto !important;
    transform: none !important;
  }

  body.postid-3939 .entry-content > .blood-pressure-classifier-container .header {
    padding: 0 36px 12px !important;
  }

  body.postid-3939 .entry-content > .blood-pressure-classifier-container .main-title {
    font-size: 22px !important;
    line-height: 1.24 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  body.postid-3939 .entry-content > article.roberin-article-body.blood-pressure-article {
    width: min(100% - 10px, 430px) !important;
    max-width: calc(100% - 10px) !important;
    margin: 24px auto 32px !important;
    padding: 22px 18px !important;
  }

  body.postid-3939 .entry-content .blood-pressure-article h2 {
    font-size: 22px !important;
    line-height: 1.32 !important;
  }
}

/* 2026-05-31 proper body rebuild: clone the live PDF body role cascade
   with target-specific blood-pressure classes only. */
body.postid-3939 .entry-content > .roberin-leaderboard-ad--after-tool {
  margin-top: 28px !important;
  margin-bottom: 28px !important;
}

body.postid-3939 .entry-content > article.roberin-article-body.blood-pressure-article {
  --bpa-paper: #f8efe2;
  --bpa-ink: #34281f;
  --bpa-muted: #574838;
  --bpa-line: #6b5745;
  --bpa-line-soft: rgba(107, 87, 69, 0.3);
  --bpa-heading: #e2edd8;
  --bpa-marker: #ddbf6f;
  --bpa-link: #4f7d94;
  --bpa-code-bg: #fff4dd;
  --bpa-code: #8b4f3f;
  --bpa-accent: #bf7358;
  --bpa-shadow: 4px 4px 0 rgba(82, 65, 50, 0.42);

  width: min(950px, calc(100% - 24px)) !important;
  max-width: 950px !important;
  margin: 28px auto 40px !important;
  padding: 30px 34px !important;
  color: var(--bpa-ink) !important;
  background-color: var(--bpa-paper) !important;
  background-image:
    linear-gradient(90deg, rgba(107, 87, 69, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(107, 87, 69, 0.03) 1px, transparent 1px),
    none !important;
  background-size: 18px 18px !important;
  border: 2px solid var(--bpa-line) !important;
  border-radius: 0 !important;
  box-shadow: var(--bpa-shadow) !important;
  font-family: "Noto Sans KR", "Malgun Gothic", -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.78 !important;
}

body.postid-3939[data-scheme="dark"] .entry-content > article.roberin-article-body.blood-pressure-article,
body.postid-3939[data-scheme="inverse"] .entry-content > article.roberin-article-body.blood-pressure-article {
  --bpa-paper: #1f1a14;
  --bpa-ink: #f2e4cf;
  --bpa-muted: #ead2b6;
  --bpa-line: #d2ad75;
  --bpa-line-soft: rgba(210, 173, 117, 0.36);
  --bpa-heading: #31412c;
  --bpa-marker: #d9a94b;
  --bpa-link: #8fb8c8;
  --bpa-code-bg: #2f241b;
  --bpa-code: #f0c49e;
  --bpa-accent: #e0a37d;
  --bpa-shadow: 4px 4px 0 rgba(0, 0, 0, 0.42);
}

body.postid-3939 .entry-content > article.roberin-article-body.blood-pressure-article *,
body.postid-3939 .entry-content > article.roberin-article-body.blood-pressure-article *::before,
body.postid-3939 .entry-content > article.roberin-article-body.blood-pressure-article *::after {
  box-sizing: border-box !important;
}

body.postid-3939 .entry-content .blood-pressure-article > .bp-article__hero,
body.postid-3939 .entry-content .blood-pressure-article > .bp-article__section,
body.postid-3939 .entry-content .blood-pressure-article .bp-article__grid,
body.postid-3939 .entry-content .blood-pressure-article .bp-article__card,
body.postid-3939 .entry-content .blood-pressure-article .bp-article__steps,
body.postid-3939 .entry-content .blood-pressure-article .bp-article__process-grid,
body.postid-3939 .entry-content .blood-pressure-article .bp-article__process,
body.postid-3939 .entry-content .blood-pressure-article .bp-article__use-grid,
body.postid-3939 .entry-content .blood-pressure-article .bp-article__use,
body.postid-3939 .entry-content .blood-pressure-article .bp-article__notice,
body.postid-3939 .entry-content .blood-pressure-article details {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--bpa-ink) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-article__kicker {
  display: block !important;
  width: auto !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  color: var(--bpa-muted) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.78 !important;
}

body.postid-3939 .entry-content .blood-pressure-article h2 {
  display: block !important;
  width: 100% !important;
  margin: 34px 0 16px !important;
  padding: 9px 12px !important;
  color: var(--bpa-ink) !important;
  background: var(--bpa-heading) !important;
  border: 2px solid var(--bpa-line) !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 rgba(82, 65, 50, 0.3) !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
}

body.postid-3939 .entry-content .blood-pressure-article p,
body.postid-3939 .entry-content .blood-pressure-article li,
body.postid-3939 .entry-content .blood-pressure-article summary {
  color: var(--bpa-muted) !important;
  -webkit-text-fill-color: currentColor !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.78 !important;
  letter-spacing: 0 !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
}

body.postid-3939 .entry-content .blood-pressure-article p {
  margin: 0 0 16px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-article__nav {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-3939 .entry-content .blood-pressure-article a,
body.postid-3939 .entry-content .blood-pressure-article .bp-article__nav a {
  display: inline !important;
  min-height: 0 !important;
  margin: 0 12px 0 0 !important;
  padding: 0 0 0.02em !important;
  color: var(--bpa-link) !important;
  background: linear-gradient(to right, var(--bpa-link) 0%, var(--bpa-link) 98%) !important;
  background-position: 0 100% !important;
  background-repeat: no-repeat !important;
  background-size: 100% 2px !important;
  border: 0 !important;
  border-bottom: 2px solid transparent !important;
  box-shadow: none !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.78 !important;
  text-decoration: none !important;
  text-underline-offset: 3px !important;
}

body.postid-3939 .entry-content .blood-pressure-article h3 {
  display: block !important;
  width: 100% !important;
  margin: 26px 0 12px !important;
  padding: 0 0 7px !important;
  color: var(--bpa-ink) !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 2px solid var(--bpa-line-soft) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-article__card + .bp-article__card,
body.postid-3939 .entry-content .blood-pressure-article .bp-article__use + .bp-article__use {
  margin-top: 0 !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-article__steps {
  margin: 16px 0 20px !important;
  padding: 0 !important;
  counter-reset: seo-item !important;
  list-style: none !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-article__steps li,
body.postid-3939 .entry-content .blood-pressure-article .bp-article__notice li {
  position: relative !important;
  display: list-item !important;
  margin: 0 0 10px !important;
  padding: 0 0 0 28px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  list-style: none !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-article__steps li {
  counter-increment: seo-item !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-article__steps li::marker,
body.postid-3939 .entry-content .blood-pressure-article .bp-article__notice li::marker {
  content: "" !important;
  font-size: 0 !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-article__steps li::before {
  content: counter(seo-item) !important;
  position: absolute !important;
  top: 1px !important;
  left: 0 !important;
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  color: var(--bpa-ink) !important;
  background: var(--bpa-marker) !important;
  border: 1px solid var(--bpa-line) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 17px !important;
  text-align: center !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-article__li-text {
  display: inline !important;
  color: var(--bpa-muted) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-article__process span {
  display: inline !important;
  color: var(--bpa-ink) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.78 !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-article__process code {
  display: inline !important;
  margin-left: 4px !important;
  padding: 2px 6px !important;
  color: var(--bpa-code) !important;
  background: var(--bpa-code-bg) !important;
  border: 1px solid rgba(107, 87, 69, 0.45) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace !important;
  font-size: 14.72px !important;
  font-weight: 400 !important;
  line-height: 1.78 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-article__notice ul {
  display: block !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  list-style: none !important;
}

body.postid-3939 .entry-content .blood-pressure-article .bp-article__notice li::before {
  content: "■" !important;
  position: absolute !important;
  top: 0.8px !important;
  left: 2px !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  color: var(--bpa-accent) !important;
  background: transparent !important;
  border: 0 !important;
  font-size: 10px !important;
  line-height: 1.7 !important;
}

body.postid-3939 .entry-content .blood-pressure-article details {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.postid-3939 .entry-content .blood-pressure-article summary {
  display: grid !important;
  grid-template-columns: 14px minmax(0, 1fr) !important;
  column-gap: 8px !important;
  align-items: start !important;
  cursor: pointer !important;
  color: var(--bpa-ink) !important;
  font-weight: 400 !important;
  list-style: none !important;
}

body.postid-3939 .entry-content .blood-pressure-article summary::-webkit-details-marker {
  display: none !important;
}

body.postid-3939 .entry-content .blood-pressure-article summary::marker {
  content: "" !important;
  font-size: 0 !important;
}

body.postid-3939 .entry-content .blood-pressure-article summary::before {
  content: "▸" !important;
  display: inline-block !important;
  width: 14px !important;
  color: var(--bpa-link) !important;
  font-size: 13px !important;
  line-height: 1.78 !important;
  transform: translateY(1px) !important;
}

body.postid-3939 .entry-content .blood-pressure-article details[open] summary::before {
  content: "▾" !important;
}

body.postid-3939 .entry-content .blood-pressure-article details p {
  margin: 0 0 16px !important;
}

@media (max-width: 768px) {
  body.postid-3939 .entry-content > .roberin-leaderboard-ad--after-tool {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }

  body.postid-3939 .entry-content > article.roberin-article-body.blood-pressure-article {
    width: min(100% - 10px, 430px) !important;
    max-width: calc(100% - 10px) !important;
    margin: 24px auto 32px !important;
    padding: 22px 18px !important;
  }

  body.postid-3939 .entry-content .blood-pressure-article h2 {
    margin: 30px 0 14px !important;
    padding: 8px 10px !important;
    font-size: 22px !important;
    line-height: 1.32 !important;
  }

  body.postid-3939 .entry-content .blood-pressure-article h3 {
    margin-top: 24px !important;
    font-size: 17px !important;
  }

  body.postid-3939 .entry-content .blood-pressure-article p,
  body.postid-3939 .entry-content .blood-pressure-article li,
  body.postid-3939 .entry-content .blood-pressure-article summary,
  body.postid-3939 .entry-content .blood-pressure-article .bp-article__li-text,
  body.postid-3939 .entry-content .blood-pressure-article .bp-article__process span,
  body.postid-3939 .entry-content .blood-pressure-article .bp-article__nav a {
    font-size: 15px !important;
    line-height: 1.76 !important;
  }

body.postid-3939 .entry-content .blood-pressure-article .bp-article__process code {
    font-size: 13px !important;
  }
}

/* 2026-05-31e tool redesign: restore ROBERIN warm paper chrome while keeping the
   existing blood-pressure logic and article reference cascade untouched. */
body.postid-3939 .entry-content > .blood-pressure-classifier-container {
  --bp-paper: #f6ead4;
  --bp-paper-deep: #ecd5b2;
  --bp-panel: #fff7e8;
  --bp-panel-soft: #f9ebd2;
  --bp-ink: #34281f;
  --bp-muted: #574838;
  --bp-line: #6b5745;
  --bp-line-strong: #3f3127;
  --bp-focus: #4f7d94;
  --bp-cta: #ddbf6f;
  --bp-cta-hover: #d2aa55;
  --bp-teal: #4f7d94;
  --bp-coral: #bf7358;
  --bp-green: #5f8f6d;
  --bp-shadow: 6px 6px 0 rgba(82, 65, 50, 0.32);
  --bp-shadow-small: 3px 3px 0 rgba(82, 65, 50, 0.22);
  --bp-normal: #5f8f6d;
  --bp-elevated: #ddbf6f;
  --bp-stage1: #d69b4c;
  --bp-stage2: #bf7358;
  --bp-crisis: #a8423c;

  width: min(1120px, calc(100vw - 24px)) !important;
  max-width: none !important;
  margin: 18px 0 24px !important;
  padding: 18px !important;
  color: var(--bp-ink) !important;
  background-color: var(--bp-paper) !important;
  background-image:
    linear-gradient(rgba(107, 87, 69, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 87, 69, 0.07) 1px, transparent 1px) !important;
  background-size: 18px 18px !important;
  border: 3px solid var(--bp-line-strong) !important;
  box-shadow: var(--bp-shadow) !important;
}

body.postid-3939[data-scheme="dark"] .entry-content > .blood-pressure-classifier-container,
body.postid-3939[data-scheme="inverse"] .entry-content > .blood-pressure-classifier-container,
body.postid-3939 .entry-content > .blood-pressure-classifier-container.dark {
  --bp-paper: #201811;
  --bp-paper-deep: #2b2119;
  --bp-panel: #33271d;
  --bp-panel-soft: #241c15;
  --bp-ink: #f2e4cf;
  --bp-muted: #f0dfc5;
  --bp-line: #a98b6b;
  --bp-line-strong: #d2aa55;
  --bp-focus: #d2aa55;
  --bp-cta: #d2aa55;
  --bp-cta-hover: #e0bb69;
  --bp-teal: #8fb8c8;
  --bp-coral: #e0a37d;
  --bp-green: #7bc083;
  --bp-shadow: 6px 6px 0 rgba(0, 0, 0, 0.38);
  --bp-shadow-small: 3px 3px 0 rgba(0, 0, 0, 0.3);
  --bp-normal: #78bf7c;
  --bp-elevated: #f0d06a;
  --bp-stage1: #e6ab58;
  --bp-stage2: #df8459;
  --bp-crisis: #de675e;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .header {
  margin: 0 0 14px !important;
  padding: 0 56px 12px 0 !important;
  text-align: left !important;
  border-bottom: 3px double var(--bp-line) !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .main-title {
  color: var(--bp-ink) !important;
  font-size: clamp(24px, 2.4vw, 30px) !important;
  font-weight: 900 !important;
  line-height: 1.18 !important;
  text-shadow: none !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .subtitle {
  max-width: 680px !important;
  margin: 6px 0 0 !important;
  color: var(--bp-muted) !important;
  font-size: 15px !important;
  font-weight: 650 !important;
  line-height: 1.45 !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .dark-mode-toggle {
  top: 14px !important;
  right: 14px !important;
  color: var(--bp-ink) !important;
  background: var(--bp-panel) !important;
  border: 2px solid var(--bp-line-strong) !important;
  box-shadow: var(--bp-shadow-small) !important;
  font-size: 0 !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .dark-mode-toggle::before {
  content: "☾";
  color: currentColor;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

body.postid-3939[data-scheme="dark"] .entry-content > .blood-pressure-classifier-container .dark-mode-toggle::before,
body.postid-3939[data-scheme="inverse"] .entry-content > .blood-pressure-classifier-container .dark-mode-toggle::before,
body.postid-3939 .entry-content > .blood-pressure-classifier-container.dark .dark-mode-toggle::before {
  content: "☀";
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .main-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
  gap: 14px !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .input-section,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .result-section,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .info-section {
  color: var(--bp-ink) !important;
  background: var(--bp-panel) !important;
  border: 2px solid var(--bp-line) !important;
  box-shadow: var(--bp-shadow-small) !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .input-section,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .result-section {
  padding: 14px !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .section-header {
  color: var(--bp-ink) !important;
  border-bottom: 2px solid var(--bp-line) !important;
  font-size: 16px !important;
  font-weight: 900 !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .section-header svg {
  color: var(--bp-teal) !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container label,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .result-label,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .advice-title,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .info-section h3 {
  color: var(--bp-ink) !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .input-description,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .advice-text,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .info-section li,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .watermark {
  color: var(--bp-muted) !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .input-group input {
  height: 46px !important;
  color: var(--bp-ink) !important;
  background: var(--bp-panel-soft) !important;
  border: 2px solid var(--bp-line) !important;
  box-shadow: 2px 2px 0 rgba(82, 65, 50, 0.16) !important;
  font-size: 21px !important;
  font-weight: 900 !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .input-group input:focus {
  background: #fff2b8 !important;
  border-color: var(--bp-line-strong) !important;
}

body.postid-3939[data-scheme="dark"] .entry-content > .blood-pressure-classifier-container .input-group input:focus,
body.postid-3939[data-scheme="inverse"] .entry-content > .blood-pressure-classifier-container .input-group input:focus,
body.postid-3939 .entry-content > .blood-pressure-classifier-container.dark .input-group input:focus {
  background: #3b2c1d !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .calculate-btn,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .sample-btn,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .reset-btn,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .copy-btn-large,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .save-image-btn {
  border: 2px solid var(--bp-line-strong) !important;
  box-shadow: var(--bp-shadow-small) !important;
  font-weight: 900 !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .calculate-btn {
  color: #2f241b !important;
  background: var(--bp-cta) !important;
  font-size: 17px !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .calculate-btn:hover {
  background: var(--bp-cta-hover) !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .sample-btn {
  color: #fff7e8 !important;
  background: var(--bp-teal) !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .reset-btn,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .copy-btn-large {
  color: var(--bp-ink) !important;
  background: var(--bp-paper-deep) !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .save-image-btn {
  color: #fff7e8 !important;
  background: var(--bp-coral) !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .result-item,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .advice-box,
body.postid-3939 .entry-content > .blood-pressure-classifier-container .info-section li {
  background: var(--bp-panel-soft) !important;
  border: 2px solid var(--bp-line) !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .advice-box {
  border-style: dashed !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .bp-gauge-bar {
  border: 2px solid var(--bp-line-strong) !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .bp-gauge-marker {
  color: var(--bp-line-strong) !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .info-section {
  margin-top: 14px !important;
  padding: 12px 14px !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .info-section ul {
  gap: 8px !important;
}

body.postid-3939 .entry-content > .blood-pressure-classifier-container .toast {
  color: var(--bp-ink) !important;
  background: var(--bp-panel) !important;
  border: 2px solid var(--bp-line-strong) !important;
}

@media (max-width: 980px) {
  body.postid-3939 .entry-content > .blood-pressure-classifier-container .main-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  body.postid-3939 .entry-content > .blood-pressure-classifier-container {
    width: calc(100vw - 16px) !important;
    margin: 10px 8px 16px !important;
    padding: 12px !important;
    left: auto !important;
    transform: none !important;
  }

  body.postid-3939 .entry-content > .blood-pressure-classifier-container .header {
    padding: 0 44px 11px 0 !important;
  }

  body.postid-3939 .entry-content > .blood-pressure-classifier-container .main-title {
    font-size: 22px !important;
    line-height: 1.24 !important;
  }

  body.postid-3939 .entry-content > .blood-pressure-classifier-container .subtitle {
    font-size: 14px !important;
  }

  body.postid-3939 .entry-content > .blood-pressure-classifier-container .input-section,
  body.postid-3939 .entry-content > .blood-pressure-classifier-container .result-section,
  body.postid-3939 .entry-content > .blood-pressure-classifier-container .info-section {
    padding: 11px !important;
  }

  body.postid-3939 .entry-content > .blood-pressure-classifier-container .button-group,
  body.postid-3939 .entry-content > .blood-pressure-classifier-container .info-section ul {
    grid-template-columns: 1fr !important;
  }

  body.postid-3939 .entry-content > .blood-pressure-classifier-container .info-section li {
    min-height: 0 !important;
  }
}
