/* =============================================================
   policy-detail.css ── 政策詳細ページ（統合版）
   C基調（エディトリアル）× Aデータ図解 のハイブリッド。
   構造は「グランドデザインを3本柱が支える逆三角」。
   ============================================================= */

:root {
  --pd-head: #0b1f3b;         /* 見出し */
  --pd-accent: #c81d25;       /* レッドアクセント（少しだけ） */
  --pd-teal: #138a8a;         /* メインアクセント */
  --pd-teal-soft: #a9dfe2;    /* ベタ面 */
  --pd-body: #2b2b2b;         /* 本文 */

  --pd-paper: #f8f5ee;
  --pd-paper-2: #fbfaf5;
  --pd-line: #d1cdbf;
  --pd-line-2: #b8b3a1;

  --pd-shadow-sm: 0 4px 12px rgba(11, 31, 59, .06);
  --pd-shadow-md: 0 12px 30px rgba(11, 31, 59, .09);
}

/* インライン注記（※本文内） */
.pd-inline-note {
  display: inline;
  font-size: 0.86em;
  color: #6a6558;
  font-weight: 500;
  padding-left: 0.35em;
  line-height: 1.55;
}

/* ダミー閉じ (元の :root を閉じるための帳尻) */
:root {
}

body.policy-detail { color: var(--pd-body); background: var(--pd-paper); }
.policy-detail h1, .policy-detail h2, .policy-detail h3, .policy-detail h4 { color: var(--pd-head); }
.policy-detail .pd-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.policy-detail .pd-inner-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ==========================================================
   COVER
   ========================================================== */
.pd-cover {
  padding: clamp(80px, 12vw, 160px) 0 clamp(50px, 6vw, 80px);
  position: relative;
  border-bottom: 1px solid var(--pd-line);
}
.pd-cover-inner {
  max-width: 900px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.pd-cover-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px; letter-spacing: 0.32em; font-weight: 800;
  color: var(--pd-teal);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 40px;
}
.pd-cover-eyebrow::after {
  content: ""; flex: 1; height: 1px; background: var(--pd-line-2);
}
.pd-cover h1 {
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.22;
  margin: 0 0 30px;
  letter-spacing: -0.02em;
  color: var(--pd-head);
}
.pd-cover h1 .em-red { color: var(--pd-accent); }
.pd-cover h1 .thin { font-weight: 400; color: var(--pd-body); font-size: 0.55em; display: block; margin-top: 20px; letter-spacing: 0; line-height: 1.35;}
.pd-cover-lead {
  font-size: 17px;
  line-height: 2.1;
  max-width: 640px;
  margin: 0;
  color: var(--pd-body);
}
.pd-cover-lead b {
  color: var(--pd-head);
  border-bottom: 2px solid var(--pd-accent);
  padding-bottom: 1px;
}

/* ==========================================================
   逆三角: グランドデザイン(頂点) を 3本柱が支える
   ========================================================== */
.pd-triangle {
  margin-top: 60px;
  padding: 40px 0 20px;
  border-top: 1px solid var(--pd-line);
}
.pd-triangle-label {
  font-family: "Inter", sans-serif;
  font-size: 10.5px; letter-spacing: 0.3em; font-weight: 800; color: var(--pd-teal);
  margin-bottom: 24px;
}
/* 頂点：グランドデザイン */
.pd-triangle-apex {
  max-width: 560px;
  margin: 0 auto 0;
  padding: 32px 34px;
  background: var(--pd-head);
  color: white;
  border-radius: 14px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(11,31,59,.18);
}
.pd-triangle-apex .n {
  font-family: "Inter", sans-serif;
  font-size: 12px; letter-spacing: 0.28em; font-weight: 900;
  color: var(--pd-teal-soft);
}
.pd-triangle-apex .t {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: white;
  margin: 8px 0 8px;
  line-height: 1.35;
}
.pd-triangle-apex .s {
  font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.7;
}
.pd-triangle-apex a.jump {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 18px;
  background: var(--pd-teal-soft);
  color: var(--pd-head);
  text-decoration: none;
  font-weight: 800; font-size: 13px;
  border-radius: 999px;
  transition: all .2s;
}
.pd-triangle-apex a.jump:hover { background: white; transform: translateY(-2px); }

/* 頂点と3本柱をつなぐ矢印（下向き分岐） */
.pd-triangle-legs {
  position: relative;
  height: 60px;
  max-width: 720px;
  margin: 0 auto;
}
.pd-triangle-legs svg { display: block; width: 100%; height: 100%; overflow: visible; }

/* 3本柱カード */
.pd-triangle-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 6px;
}
.pd-pillar-card {
  display: block;
  padding: 24px 22px;
  background: white;
  border: 1px solid var(--pd-line);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all .22s;
  position: relative;
  border-top: 4px solid var(--pd-teal);
}
.pd-pillar-card[data-n="02"] { border-top-color: #C48A12; }
.pd-pillar-card[data-n="03"] { border-top-color: var(--pd-accent); }
.pd-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pd-shadow-md);
}
.pd-pillar-card .n {
  font-family: "Inter", sans-serif;
  font-size: 12px; letter-spacing: 0.22em; font-weight: 900;
  color: var(--pd-teal);
}
.pd-pillar-card[data-n="02"] .n { color: #C48A12; }
.pd-pillar-card[data-n="03"] .n { color: var(--pd-accent); }
.pd-pillar-card .t {
  font-size: 22px; font-weight: 900;
  color: var(--pd-head);
  margin: 8px 0 8px;
}
.pd-pillar-card .s {
  font-size: 13px; color: var(--pd-body); line-height: 1.75;
}
.pd-pillar-card .arr {
  margin-top: 14px;
  font-size: 12px;
  color: var(--pd-teal);
  font-weight: 800;
}
.pd-pillar-card[data-n="02"] .arr { color: #C48A12; }
.pd-pillar-card[data-n="03"] .arr { color: var(--pd-accent); }

/* ==========================================================
   CHAPTER (グランドデザイン、①、②、③ 共通)
   ========================================================== */
.pd-chapter {
  padding: clamp(80px, 10vw, 130px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--pd-line);
  position: relative;
}
.pd-chapter[data-n="00"] { background: var(--pd-paper-2); }

.pd-ch-header {
  max-width: 900px; margin: 0 auto 60px;
  padding: 0 clamp(20px, 5vw, 60px);
  position: relative;
}
.pd-ch-mark {
  font-family: "Inter", sans-serif;
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 900;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px var(--pd-head);
  letter-spacing: -0.05em;
  margin-bottom: 10px;
  display: block;
}
.pd-chapter[data-n="02"] .pd-ch-mark { -webkit-text-stroke-color: #C48A12; }
.pd-chapter[data-n="03"] .pd-ch-mark { -webkit-text-stroke-color: var(--pd-accent); }

.pd-ch-kicker {
  font-family: "Inter", sans-serif;
  font-size: 12px; letter-spacing: 0.28em;
  color: var(--pd-teal);
  font-weight: 800;
  margin-bottom: 14px;
}
.pd-chapter[data-n="02"] .pd-ch-kicker { color: #C48A12; }
.pd-chapter[data-n="03"] .pd-ch-kicker { color: var(--pd-accent); }
.pd-ch-header h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 900;
  line-height: 1.28;
  margin: 0 0 20px;
  letter-spacing: -0.015em;
}
.pd-ch-header h2 .sub {
  display: block;
  font-size: 0.42em;
  font-weight: 700;
  color: var(--pd-teal);
  margin-top: 10px;
  letter-spacing: 0;
}
.pd-chapter[data-n="02"] .pd-ch-header h2 .sub { color: #C48A12; }
.pd-chapter[data-n="03"] .pd-ch-header h2 .sub { color: var(--pd-accent); }

.pd-ch-lead {
  font-size: 17px;
  line-height: 2.1;
  color: var(--pd-body);
  max-width: 720px;
  margin: 0;
  border-left: 3px solid var(--pd-head);
  padding-left: 24px;
}
.pd-chapter[data-n="02"] .pd-ch-lead { border-left-color: #C48A12; }
.pd-chapter[data-n="03"] .pd-ch-lead { border-left-color: var(--pd-accent); }
.pd-ch-lead b {
  color: var(--pd-head);
  font-weight: 900;
}
.pd-ch-lead .em-red { color: var(--pd-accent); font-weight: 900; }

/* Chapter body */
.pd-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.pd-section {
  margin: 0 0 64px;
}
.pd-section:last-child { margin-bottom: 0; }
.pd-sec-num {
  font-family: "Inter", sans-serif;
  font-size: 12px; letter-spacing: 0.24em; font-weight: 800;
  color: var(--pd-teal);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.pd-sec-num::before {
  content: ""; width: 40px; height: 1px; background: var(--pd-teal);
}
.pd-chapter[data-n="02"] .pd-sec-num { color: #C48A12; }
.pd-chapter[data-n="02"] .pd-sec-num::before { background: #C48A12; }
.pd-chapter[data-n="03"] .pd-sec-num { color: var(--pd-accent); }
.pd-chapter[data-n="03"] .pd-sec-num::before { background: var(--pd-accent); }

.pd-section h3 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 22px;
  letter-spacing: -0.005em;
}
.pd-section p {
  font-size: 16px;
  line-height: 2.15;
  color: var(--pd-body);
  margin: 0 0 18px;
}
.pd-section p:last-child { margin-bottom: 0; }
.pd-section p b {
  color: var(--pd-head);
  font-weight: 900;
  background: linear-gradient(transparent 62%, var(--pd-teal-soft) 62%);
  padding: 0 2px;
}
.pd-section .em-red { color: var(--pd-accent); font-weight: 900; }

/* Drop cap 冒頭段落のみ */
.pd-section.has-dropcap > p:first-of-type::first-letter {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  float: left;
  font-size: 74px;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--pd-head);
  font-weight: 900;
}

/* ==========================================================
   データ図解（Aから移植・エディトリアル調整）
   ========================================================== */
.pd-figure {
  margin: 30px 0;
  padding: 26px 28px 22px;
  background: white;
  border: 1px solid var(--pd-line);
}
.pd-figure .cap {
  font-family: "Inter", sans-serif;
  font-size: 11px; letter-spacing: .2em; font-weight: 800; text-transform: uppercase;
  color: var(--pd-teal);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--pd-line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.pd-chapter[data-n="02"] .pd-figure .cap { color: #C48A12; }
.pd-chapter[data-n="03"] .pd-figure .cap { color: var(--pd-accent); }
.pd-figure .cap .ttl { font-size: 13px; color: var(--pd-head); text-transform: none; letter-spacing: .04em; font-weight: 900; }

/* バーチャート */
.pd-bar-compare {
  display: grid;
  gap: 14px;
  margin: 6px 0;
}
.pd-bar-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 14px;
  align-items: center;
}
.pd-bar-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--pd-head);
}
.pd-bar-track {
  height: 30px;
  background: #ede9dc;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}
.pd-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.22, 0.7, 0.4, 1);
  width: 0;
}
.pd-bar-fill.is-kmt { background: linear-gradient(90deg, var(--pd-teal, #138a8a), #1fb0b0); }
.pd-bar-fill.is-avg { background: linear-gradient(90deg, #7a8aa2, #a9b3c2); }
.pd-bar-fill.is-tokyo { background: linear-gradient(90deg, var(--pd-head) 0%, #3a5580 100%); }
.pd-bar-fill.is-teal { background: linear-gradient(90deg, var(--pd-teal), var(--pd-teal-soft)); }
.pd-bar-fill.is-accent { background: linear-gradient(90deg, #c81d25, #e2525a); }
.pd-bar-row.is-spacer { height: 8px; }
.pd-bar-row.is-spacer .pd-bar-track { background: transparent; height: 1px; }
.pd-bar-value b { font-weight: 900; }
.pd-bar-value {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--pd-head);
  min-width: 168px;
  text-align: right;
  white-space: nowrap;
}
.pd-bar-value b { font-weight: 900; font-size: 20px; margin: 0 2px; }
.pd-bar-value .u { font-size: 11px; color: var(--pd-body); margin-left: 2px; font-weight: 700; }
.pd-bar-gap {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(200,29,37,.06);
  border-left: 3px solid var(--pd-accent);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pd-head);
}
.pd-bar-gap .n {
  color: var(--pd-accent);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 900;
  margin: 0 4px;
}

/* ランキングリスト */
.pd-rank {
  list-style: none; padding: 0; margin: 0;
}
.pd-rank li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--pd-line);
}
.pd-rank li:last-child { border-bottom: 0; }
.pd-rank .r {
  font-family: "Inter", sans-serif;
  font-weight: 900; font-size: 15px;
  color: var(--pd-head);
  letter-spacing: 0.06em;
}
.pd-rank .lbl { font-size: 14px; color: var(--pd-body); }
.pd-rank .val {
  font-family: "Inter", sans-serif;
  font-weight: 900; font-size: 20px;
  color: var(--pd-accent);
}
.pd-rank li.zero .lbl { color: var(--pd-accent); font-weight: 900; }

/* ドーナツ + 凡例 */
.pd-donut-wrap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 6px;
}
.pd-donut { width: 200px; height: 200px; }
.pd-donut-legend { display: flex; flex-direction: column; gap: 8px; }
.pd-donut-legend .item {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 13.5px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--pd-line);
}
.pd-donut-legend .item:last-child { border-bottom: 0; }
.pd-donut-legend .sw { width: 12px; height: 12px; border-radius: 2px; }
.pd-donut-legend .n { color: var(--pd-body); font-weight: 700; }
.pd-donut-legend .p { font-family: "Inter", sans-serif; font-weight: 900; color: var(--pd-head); }
.pd-donut-legend .item.zero .n { color: var(--pd-accent); font-weight: 900; }
.pd-donut-legend .item.zero .p { color: var(--pd-accent); }

/* プルクォート（大きな数字） */
.pd-pull {
  margin: 40px 0;
  padding: 30px 0;
  border-top: 2px solid var(--pd-head);
  border-bottom: 2px solid var(--pd-head);
  text-align: center;
}
.pd-pull .n {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 10vw, 110px);
  color: var(--pd-accent);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.pd-pull .n .u { font-size: 0.35em; color: var(--pd-head); margin-left: 4px; font-weight: 800; }
.pd-pull .n.teal { color: var(--pd-teal); }
.pd-pull .l {
  font-size: 14.5px;
  color: var(--pd-head);
  font-weight: 700;
  margin-top: 14px;
  letter-spacing: 0.02em;
}

/* 政策提案 callout */
.pd-callout {
  margin: 40px 0;
  padding: 34px 36px;
  background: var(--pd-head);
  color: white;
  position: relative;
}
.pd-callout::before {
  content: ""; position: absolute;
  left: -6px; top: -6px; right: 6px; bottom: 6px;
  border: 1px solid var(--pd-teal-soft);
  pointer-events: none; z-index: 0;
}
.pd-callout-inner { position: relative; z-index: 1; }
.pd-callout .tag {
  font-family: "Inter", sans-serif;
  font-size: 11px; letter-spacing: 0.24em; font-weight: 800;
  color: var(--pd-teal-soft);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.pd-callout h4 {
  color: white;
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 14px;
  line-height: 1.5;
}
.pd-callout p {
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 1.95;
  margin: 0 0 18px;
}
.pd-callout p:last-child { margin-bottom: 0; }
.pd-callout p b {
  color: white;
  background: rgba(169,223,226,.25);
  padding: 0 4px;
}

/* 提案フロー */
.pd-flow {
  display: grid;
  grid-template-columns: 1fr 30px 1fr 30px 1fr;
  gap: 8px;
  align-items: stretch;
  margin: 18px 0 6px;
}
.pd-flow .step {
  padding: 14px 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(169,223,226,.35);
  border-radius: 8px;
  text-align: center;
}
.pd-flow .step .n {
  font-family: "Inter", sans-serif;
  font-size: 11.5px; font-weight: 900; letter-spacing: 0.16em;
  color: var(--pd-teal-soft);
}
.pd-flow .step .t {
  font-size: 13.5px;
  font-weight: 800;
  color: white;
  margin-top: 5px;
  line-height: 1.5;
}
.pd-flow .arrow {
  align-self: center;
  color: var(--pd-teal-soft);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

/* KPI リスト（②で毎年公表） */
.pd-kpi {
  margin: 30px 0;
  border-top: 2px solid var(--pd-head);
}
.pd-chapter[data-n="02"] .pd-kpi { border-top-color: #C48A12; }
.pd-kpi-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--pd-line);
  align-items: baseline;
}
.pd-kpi-item .k {
  font-family: "Inter", sans-serif;
  font-size: 14px; letter-spacing: 0.18em; font-weight: 900;
  color: var(--pd-teal);
}
.pd-chapter[data-n="02"] .pd-kpi-item .k { color: #C48A12; }
.pd-kpi-item .d {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--pd-body);
}
.pd-kpi-item .d b {
  color: var(--pd-head);
  font-weight: 900;
  background: linear-gradient(transparent 62%, var(--pd-teal-soft) 62%);
  padding: 0 2px;
}

/* Bridge（章の橋渡し） */
.pd-bridge {
  margin: 60px auto 0;
  max-width: 720px;
  padding: 24px 28px 24px 32px;
  border-left: 3px solid var(--pd-accent);
  background: white;
}
.pd-bridge.final {
  background: var(--pd-head);
  color: white;
  border-left-color: var(--pd-teal-soft);
}
.pd-bridge.final p { color: white; }
.pd-bridge.final p b { background: rgba(169,223,226,.25); color: white; }
.pd-bridge .kicker {
  font-family: "Inter", sans-serif;
  font-size: 11px; letter-spacing: 0.24em; font-weight: 800;
  color: var(--pd-accent);
  margin-bottom: 8px;
}
.pd-bridge.final .kicker { color: var(--pd-teal-soft); }
.pd-bridge p {
  font-size: 15.5px; line-height: 2; margin: 0;
  color: var(--pd-head);
  font-weight: 600;
}
.pd-bridge p b { background: rgba(200,29,37,.08); padding: 0 4px; }
.pd-bridge a.jump {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  background: var(--pd-head);
  color: white;
  border-radius: 3px;
  font-weight: 800;
  font-size: 12.5px;
  text-decoration: none;
}
.pd-bridge.final a.jump {
  background: var(--pd-teal-soft);
  color: var(--pd-head);
}

/* 出典（強調型） */
.pd-source {
  margin-top: 14px;
  font-size: 12px;
  color: #78725d;
  line-height: 1.7;
  padding-top: 8px;
  border-top: 1px dashed var(--pd-line);
}
.pd-source strong {
  font-weight: 700;
  color: var(--pd-head);
}
.pd-source::before {
  content: "SOURCE ／ ";
  font-family: "Inter", sans-serif;
  font-weight: 900;
  color: var(--pd-teal);
  letter-spacing: 0.14em;
  font-size: 10.5px;
}
.pd-chapter[data-n="02"] .pd-source::before { color: #C48A12; }
.pd-chapter[data-n="03"] .pd-source::before { color: var(--pd-accent); }

/* インライン出典 */
.pd-cite {
  font-size: 11px;
  color: #78725d;
  margin-left: 4px;
  vertical-align: super;
  line-height: 1;
  cursor: help;
  border-bottom: 1px dotted var(--pd-line-2);
}

/* 出典なし警告タグ */
.pd-source-note {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(200,29,37,.08);
  color: var(--pd-accent);
  border: 1px dashed rgba(200,29,37,.35);
  border-radius: 3px;
  font-size: 10.5px;
  font-weight: 700;
  margin-left: 6px;
  vertical-align: middle;
}

/* ==========================================================
   CTA
   ========================================================== */
.pd-cta {
  padding: clamp(70px, 9vw, 120px) 0;
  background: white;
  text-align: center;
  border-top: 4px double var(--pd-head);
}
.pd-cta h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900; margin: 0 0 18px;
  line-height: 1.35;
}
.pd-cta p {
  font-size: 16px; line-height: 2;
  color: var(--pd-body);
  max-width: 620px;
  margin: 0 auto 34px;
}
.pd-cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.pd-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  font-weight: 800; font-size: 15px; text-decoration: none;
  transition: all .2s;
}
.pd-cta-btn.primary { background: var(--pd-head); color: white; }
.pd-cta-btn.primary:hover { background: var(--pd-accent); transform: translateY(-2px); }
.pd-cta-btn.ghost { background: transparent; color: var(--pd-head); border: 1.5px solid var(--pd-head); }
.pd-cta-btn.ghost:hover { background: var(--pd-head); color: white; }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 800px) {
  .pd-triangle-pillars { grid-template-columns: 1fr; }
  .pd-triangle-legs { display: none; }
  .pd-section.has-dropcap > p:first-of-type::first-letter { font-size: 54px; }
  .pd-kpi-item { grid-template-columns: 1fr; gap: 6px; }
  .pd-bar-row { grid-template-columns: 72px 1fr auto; gap: 10px; }
  .pd-bar-value { font-size: 15px; min-width: 78px; }
  .pd-donut-wrap { grid-template-columns: 1fr; }
  .pd-donut { margin: 0 auto; }
  .pd-flow { grid-template-columns: 1fr; }
  .pd-flow .arrow { transform: rotate(90deg); font-size: 18px; }
}
