@charset "utf-8";

@font-face {
  font-family: 'Klee One';
  src: url('../../fonts/KleeOne-Regular.ttf') format('woff2'), url('../../fonts/KleeOne-SemiBold.ttf') format('woff');
  font-display: swap;
}

:root {
  --bg: #f6f3ec;
  --paper: #fffdf8;
  --paper-2: #fff8e8;
  --ink: #203040;
  --muted: #5f6973;
  --line: #d9d1c2;
  --brand: #1d4e89;
  --brand-dark: #163b68;
  --brand-soft: #e8f1fb;
  --accent: #e0a53a;
  --accent-soft: #fff3d2;
  --danger-soft: #fff0ed;
  --shadow: 0 18px 50px rgba(24, 45, 68, 0.10);
  --radius: 24px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(29, 78, 137, 0.10), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(224, 165, 58, 0.12), transparent 36rem),
    var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;
  line-height: 1.85;
  letter-spacing: 0.02em;
  text-align: justify;
  text-justify: distribute;
  -ms-text-autospace: normal;
  text-autospace: normal;
  line-break: strict;
  overflow-wrap: anywhere;
  word-break: normal;
}

a {
  color: var(--brand);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-dark);
}

div:not(.header-inner) {

  p,
  ul,
  ol,
  a {
    font-family: "Klee One", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", Meiryo, sans-serif;

  }
}

p.note {
  font-size: .9rem;
  color: var(--muted);
  margin-top: -12px;
}

small {
  font-size: 55%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--brand);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  z-index: 10;
}

.skip-link:focus {
  left: 12px;
}


/* Scroll Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 60;
  pointer-events: none;
}

.progress-bar__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  box-shadow: 0 0 14px rgba(29, 78, 137, 0.28);
  transition: width 0.1s linear;
}

.site-header {
  border-bottom: 1px solid rgba(29, 78, 137, 0.14);
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 5;
}

.header-inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--brand-dark);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #fff;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
  /* background: var(--brand); */
  background: url(../../favicon/favicon.ico);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;

}

.header-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 0.92rem;
}

.header-nav a {
  color: var(--ink);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
}

.header-nav a:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}


/* Mobile hamburger / drawer navigation */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(29, 78, 137, 0.01);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(24, 45, 68, 0.08);
  cursor: pointer;
  padding: 14px 10px;
  flex: 0 0 auto;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
}

.nav-toggle__line {
  display: block;
  width: 100%;
  height: 2px;
  /* margin: 5px 0; */
  border-radius: 999px;
  background: var(--brand-dark);
  transition: transform .22s ease, opacity .22s ease;
}

.nav-toggle.is-active .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 32, 48, 0.42);
  backdrop-filter: blur(2px);
  z-index: 45;
  opacity: 0;
  transition: opacity .22s ease;
}

.mobile-drawer-backdrop.is-visible {
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100dvh;
  background: rgba(255, 253, 248, 0.98);
  border-left: 1px solid rgba(29, 78, 137, 0.18);
  box-shadow: -18px 0 42px rgba(24, 45, 68, 0.18);
  transform: translateX(104%);
  transition: transform .26s cubic-bezier(.2, .8, .2, 1);
  z-index: 50;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__inner {
  padding: 18px 18px 28px;
}

.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(29, 78, 137, 0.14);
}

.mobile-drawer__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--brand-dark);
  letter-spacing: .06em;
}

.mobile-drawer__title::before {
  content: "";
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: #fff;
  /* background: var(--brand); */
  background: url(../../favicon/favicon.ico);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;

}

.mobile-drawer__close {
  width: 40px;
  height: 40px;
  /* border: 1px solid rgba(29, 78, 137, 0.18); */
  border: none;
  border-radius: 12px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer__nav {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(29, 78, 137, 0.18);
}

.mobile-drawer__nav a,
.mobile-toc-list a {
  display: block;
  color: var(--ink);
  text-decoration: none;
  border-radius: 14px;
  line-height: 1.55;
}

.mobile-drawer__nav a {
  padding: 11px 12px;
  background: var(--brand-soft);
  font-weight: 800;
}

.mobile-drawer__section-title {
  margin: 18px 0 10px;
  color: var(--brand-dark);
  font-weight: 900;
  font-size: .95rem;
}

.mobile-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.mobile-toc-list a {
  padding: 9px 10px;
  /* border: 1px solid rgba(29, 78, 137, 0.12); */
  background: #fff;
  font-size: .92rem;
}

.mobile-toc-list a.is-sub {
  margin-left: 16px;
  font-size: .86rem;
  color: #465868;
  background: #fffaf0;
}

.mobile-toc-list a.is-active {
  color: var(--brand-dark);
  background: var(--brand-soft);
  border-color: rgba(29, 78, 137, 0.24);
  font-weight: 900;
}



body.is-drawer-open {
  overflow: hidden;
}


.article-shell {
  max-width: var(--content);
  margin: 0 auto;
  padding: 34px 22px 80px;
}

.breadcrumb {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--muted);
}

.hero {
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(232, 241, 251, 0.92));
  border: 1px solid rgba(29, 78, 137, 0.16);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 54px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 240px;
  height: 240px;
  border: 18px solid rgba(224, 165, 58, 0.18);
  border-radius: 50%;
}

.label-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(29, 78, 137, 0.22);
  color: var(--brand-dark);
  background: #fff;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.hero .lead {
  margin: 20px 0 0;
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  color: #34495c;
  max-width: 860px;
}

.meta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.93rem;
}

.layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.toc-card {
  position: sticky;
  top: 82px;
  /* Cap the card to the viewport so a long TOC scrolls inside itself
     instead of being cut off below the fold on short (e.g. HD) screens.
     82px sticky offset + 22px breathing room at the bottom. */
  max-height: calc(100vh - 104px);
  display: flex;
  flex-direction: column;
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid rgba(29, 78, 137, 0.14);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(24, 45, 68, 0.08);
  padding: 18px;
}

.toc-card h2 {
  flex: none;
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--brand-dark);
}

.toc-list {
  list-style: none;
  margin: 0;
  /* internal scroll for the link list; min-height:0 lets the flex child
     shrink below its content height so overflow can take effect */
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 4px 0 0;
  display: grid;
  gap: 4px;
  font-size: 0.9rem;
  scrollbar-width: thin;
  /* scrollbar-color: rgba(29, 78, 137, 0.32) transparent; */
  scrollbar-color: var(--brand-soft) transparent;

}

.toc-list::-webkit-scrollbar {
  width: 5px;
}

.toc-list::-webkit-scrollbar-thumb {

  /* background: rgba(29, 78, 137, 0.28); */
  background: var(--brand-soft);
  border-radius: 5px;
}

.toc-list::-webkit-scrollbar-track {
  background: transparent;
}

.toc-list a {
  display: block;
  padding: 7px 9px;
  border-radius: 12px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.5;
}

.toc-list a:hover,
.toc-list a.is-active {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.article-body {
  min-width: 0;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(29, 78, 137, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 46px);
}

.article-body>*:first-child {
  margin-top: 0;
}

.article-body h2 {
  margin: 44px 0 16px;
  padding-top: 20px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.34;
  font-weight: 800;
  color: var(--brand-dark);
  border-top: 2px solid rgba(29, 78, 137, 0.16);
}

.article-body h3 {
  margin: 32px 0 10px;
  padding-left: 12px;
  border-left: 4px solid var(--accent);
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  line-height: 1.45;
  font-weight: 800;
  color: var(--brand-dark);
}

/* ===== Auto section numbering =====
   counter-based, extensible. Enabled per-page via <body class="is-numbered">.
   Opt a heading out of numbering with class="nonum". Headings, desktop TOC and
   mobile TOC each run their own counter so the three stay in sync automatically. */
body.is-numbered .article-body {
  counter-reset: secnum -1;
}

body.is-numbered .article-body>h2:not(.nonum) {
  counter-increment: secnum;
  counter-reset: subnum;
}

body.is-numbered .article-body>h3:not(.nonum) {
  counter-increment: subnum;
}

body.is-numbered .article-body>h2:not(.nonum)::before {
  content: counter(secnum) ". ";
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}

body.is-numbered .article-body>h3:not(.nonum)::before {
  content: counter(secnum) "-" counter(subnum) ". ";
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}

body.is-numbered .article-body>h2#overall::before {
  content: none;
}

/* Desktop TOC: H2 only -> single running number */
body.is-numbered #tocList {
  counter-reset: tocnum -1;
}

body.is-numbered #tocList li:not(.nonum) {
  counter-increment: tocnum;
}

body.is-numbered #tocList li:not(.nonum)>a::before {
  content: counter(tocnum) ". ";
  color: var(--brand);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

body.is-numbered #tocList li:first-of-type>a::before {
  content: none;
  list-style: none;
}

/* Mobile TOC: H2 + H3 -> hierarchical number that mirrors the headings */
body.is-numbered #mobileTocList {
  counter-reset: mtocsec -1;
}

body.is-numbered #mobileTocList li.toc-h2:not(.nonum) {
  counter-increment: mtocsec;
  counter-reset: mtocsub;
}

body.is-numbered #mobileTocList li.toc-h3:not(.nonum) {
  counter-increment: mtocsub;
}

body.is-numbered #mobileTocList li.toc-h2:not(.nonum)>a::before {
  content: counter(mtocsec) ". ";
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}

body.is-numbered #mobileTocList li.toc-h3:not(.nonum)>a::before {
  content: counter(mtocsec) "-" counter(mtocsub) ". ";
  color: var(--brand);
  font-variant-numeric: tabular-nums;
}

body.is-numbered #mobileTocList li.toc-h2:first-child>a::before {
  content: none;
}

.article-body p {
  margin: 1.1em 0;
}

.article-body strong {
  font-weight: 800;
  background: linear-gradient(transparent 62%, rgba(255, 225, 132, 0.5) 62%);
}

.note,
.exercise,
.source-box,
.checklist,
.warning {
  border-radius: 18px;
  padding: 20px 22px;
  margin: 28px 0;
  border: 1px solid rgba(29, 78, 137, 0.16);
}

.note {
  background: var(--brand-soft);
}

.exercise {
  background: #fffaf0;
  border-color: rgba(224, 165, 58, 0.36);
}

.warning {
  background: var(--danger-soft);
  border-color: rgba(170, 70, 60, 0.24);
}

.source-box {
  background: #f8fbff;
}

.checklist {
  background: #fbfff6;
  border-color: rgba(73, 121, 54, 0.18);
}

.note .box-title,
.exercise .box-title,
.source-box .box-title,
.checklist .box-title,
.warning .box-title {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--brand-dark);
}

.figure {
  margin: 32px 0;
  border-radius: 24px;
  overflow: hidden;
  /* border: 1px solid rgba(29, 78, 137, 0.18); */
  background: #fff;
  box-shadow: 0 12px 32px rgba(24, 45, 68, 0.10);
}

.figure img {
  width: 100%;
}

.figure figcaption {
  margin: 0;
  padding: 12px 16px 14px;
  color: var(--muted);
  font-size: 0.92rem;
  background: #fffdf8;
}

.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.94rem;
}

th,
td {
  padding: 13px 16px;
  border-bottom: 1px solid #e7dfd2;
  vertical-align: top;
}

th {
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  text-align: left;
  white-space: nowrap;
}

tr:nth-child(even) td {
  background: #fffaf0;
}

td:first-child {
  font-weight: 700;
}

.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.good {
  color: #1f6b4a;
  font-weight: 800;
}

.bad {
  color: #a13d35;
  font-weight: 800;
}

.neutral {
  color: var(--brand-dark);
  font-weight: 800;
}

ul,
ol {
  padding-left: 1.4em;
}

li {
  margin: 0.38em 0;
}

.article-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 5px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 18px 18px 0;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(29, 78, 137, 0.22);
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--brand-dark);
}

.footer {
  max-width: var(--content);
  margin: 0 auto;
  padding: 24px 22px 46px;
  color: var(--muted);
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 28px rgba(24, 45, 68, 0.22);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* 数値セルの符号を疑似要素で左端に揃える*/
td.num.neg,
td.num.pos {
  position: relative;
  padding-left: 1.6em;
}

td.num.neg::before,
td.num.pos::before {
  position: absolute;
  left: calc(75% - 3.7em);
}

td.num.neg::before {
  content: "↓";
}

td.num.pos::before {
  content: "＋";
}

.value.neg::before {
  content: "↓";
  margin-right: 0.08em;
}

.value.pos::before {
  content: "＋";
  margin-right: 0.08em;
}

@media (max-width: 900px) {
  .site-header {
    z-index: 40;
  }

  .header-inner {
    min-height: 64px;
    padding: 10px 14px;
    align-items: center;
    flex-direction: row;
  }

  .logo span:last-child {
    max-width: 54vw;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .header-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .toc-card {
    display: none;
  }
}

@media (max-width: 560px) {
  .article-shell {
    padding: 20px 10px 64px;
  }

  .breadcrumb {
    display: none;
  }

  .article-body {
    padding: 20px 14px;
    border-radius: 20px;
  }

  .hero {
    padding: 24px 16px;
    border-radius: 22px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.55rem);
  }

  .meta {
    display: block;
  }

  .meta span {
    display: block;
  }

  .mobile-drawer {
    width: min(92vw, 380px);
  }

  table {
    min-width: 560px;
  }

  th,
  td {
    padding: 10px 12px;
  }
}


/* ===== Management evaluation report additions ===== */
.hero.report-hero {
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(232, 241, 251, 0.96) 55%, rgba(255, 243, 210, 0.55));
}

.hero .verdict-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.verdict-card {
  flex: 1 1 220px;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid rgba(29, 78, 137, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(24, 45, 68, 0.06);
}

.verdict-card span {
  display: block;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .06em;
}

.verdict-card strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  color: var(--brand-dark);
  line-height: 1.25;
  text-align: center;
}

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

.metric-card {
  border: 1px solid rgba(29, 78, 137, 0.16);
  border-radius: 20px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(24, 45, 68, 0.06);
}

.metric-card .label-mini {
  display: block;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 800;
}

.metric-card .value {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  font-weight: 900;
  color: var(--brand-dark);
  line-height: 1.25;
  text-align: center;
}

.metric-card .caption {
  display: block;
  margin-top: 8px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.55;
}

.core-statement {
  margin: 28px 0;
  padding: clamp(20px, 3vw, 30px);
  border: 2px solid rgba(29, 78, 137, 0.22);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--brand-soft), #fffdf8);
  box-shadow: 0 14px 34px rgba(24, 45, 68, 0.08);
}

.core-statement .box-title {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  font-size: .9rem;
}

.core-statement p {
  margin-bottom: 0;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 800;
}

.rating-table td:nth-child(2),
.rating-table td:nth-child(3) {
  white-space: normal;
}

.rating-table td:nth-child(2) {
  text-align: center;
  vertical-align: middle;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2em;
  padding: .2em .65em;
  border-radius: 999px;
  font-weight: 900;
  background: var(--accent-soft);
  color: #7a4d00;
  border: 1px solid rgba(224, 165, 58, .35);
  word-break: keep-all;
  line-break: strict;
  white-space: nowrap;
}

.rating-badge.low {
  background: var(--danger-soft);
  color: #8a3029;
  border: none;
}

.rating-badge.mid {
  background: var(--brand-soft);
  color: var(--brand-dark);
  border: none;
}

.key-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.key-point {
  border-radius: 20px;
  border: 1px solid rgba(29, 78, 137, .16);
  background: #fff;
  padding: 18px;
}

.key-point h3 {
  margin-top: 0;
  padding-left: 0;
  border-left: 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.pill-list li {
  margin: 0;
  border: 1px solid rgba(29, 78, 137, .18);
  border-radius: 999px;
  padding: 5px 10px;
  background: #fff;
  color: var(--brand-dark);
  font-weight: 700;
  font-size: .9rem;
}

.main-note,
.table-note {
  font-size: .9rem;
  color: var(--muted);
  margin-top: -12px;
}

.source-note {
  font-size: .92rem;
  color: var(--muted);
}

@media (max-width: 820px) {

  .report-summary,
  .key-points {
    grid-template-columns: 1fr;
  }


  .article-shell {
    padding: 0;
  }
}