.d0-mindmap-section ul li:before {display: none;}

.d0-mindmap-section{
    background: #FCFAF5;
    color: #24262b;
    font-family: "Atkinson Hyperlegible", "Segoe UI", Verdana, sans-serif;
    padding: clamp(2.5rem, 6vw, 5rem) 1.25rem;
    line-height: 1.6;
  }
 
  .d0-visually-hidden{
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
 
  /* ---------- Layout wrapper ---------- */
 
  .d0-mindmap{
    position: relative;
    width: min(96vw, 940px);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }
 
  .d0-mindmap-lines{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
  }
 
  .d0-line{
    fill: none;
    stroke: #769fcb;
    stroke-width: 0.4;
    stroke-linecap: round;
    opacity: 0.7;
  }
 
  /* ---------- Centre node ---------- */
 
  .d0-node-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(170px, 22vw, 230px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.3rem;
    background: #769fcb;
    border-radius: 44% 56% 52% 48% / 48% 44% 56% 52%;
    box-shadow: 0 0 0 3px #FCFAF5, 0 0 0 5px #769fcb;
    z-index: 2;
  }
 
  .d0-node-center p{
    margin: 0;
    font-weight: 700;
    font-size: clamp(0.92rem, 1.5vw, 1.7rem);
  }
 
  /* ---------- Branch nodes ---------- */
 
  .d0-branches{
    list-style: none;
    margin: 0;
    padding: 0;
  }
 
  .d0-branch{
    list-style: none;
    position: absolute;
    top: calc(var(--d0-y) * 1%);
    left: calc(var(--d0-x) * 1%);
    transform: translate(-50%, -50%) rotate(var(--d0-rotate));
    background: #ffffff;
    border-left: 5px solid #ff6c65;
    border-radius: 3px;
    padding: 0.55rem 0.9rem;
    box-shadow: 4px 4px 0 rgba(36, 38, 43, 0.12);
    z-index: 1;
  }
 
  .d0-branch p{
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: #24262b;
    white-space: nowrap;
  }
 
  /* ---------- Mobile / narrow layout: wrapped tag cloud ---------- */
 
  @media (max-width: 760px){
 
    .d0-mindmap{
      width: 100%;
      aspect-ratio: auto;
      max-width: 480px;
    }
 
    .d0-mindmap-lines{
      display: none;
    }
 
    .d0-node-center{
      position: static;
      transform: none;
      width: 100%;
      max-width: 320px;
      aspect-ratio: auto;
      margin: 0 auto 1.5rem;
      border-radius: 22px;
      padding: 1.4rem 1.6rem;
    }
 
    .d0-branches{
      position: relative;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.7rem;
    }
 
    .d0-branch{
      position: static;
      transform: none;
    }
 
    .d0-branch p{
      white-space: normal;
    }
  }

.d0-inverse .d0-line{
    stroke: #ff6c65;
  }
 
  .d0-inverse .d0-node-center{
    background: #ff6c65;
    box-shadow: 0 0 0 3px #FCFAF5, 0 0 0 5px #ff6c65;
  }
 
  .d0-inverse .d0-branch{
    border-left-color: #769fcb;
  }


.d0-mindmap-section2 ul li:before {display: none;}

.d0-mindmap-section2{
    background: transparent;
    color: #24262b;
    font-family: "Atkinson Hyperlegible", "Segoe UI", Verdana, sans-serif;
    padding: clamp(2.5rem, 6vw, 5rem) 1.25rem;
    line-height: 1.6;
  }
 
  .d0-visually-hidden2{
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
 
  /* ---------- Layout wrapper ---------- */
 
  .d0-mindmap2{
    position: relative;
    width: min(94vw, 900px);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
  }
 
  .d0-mindmap-lines2{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
  }
 
  .d0-line2{
    fill: none;
    stroke: #769fcb;
    stroke-width: 0.5;
    stroke-linecap: round;
    opacity: 0.8;
  }
 
  /* ---------- Centre node (decorative hub, no text) ---------- */
 
  .d0-node-center2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(70px, 9vw, 100px);
    aspect-ratio: 1;
    background: #769fcb;
    border-radius: 44% 56% 52% 48% / 48% 44% 56% 52%;
    box-shadow: 0 0 0 3px #FCFAF5, 0 0 0 5px #769fcb;
    z-index: 2;
  }
 
  /* ---------- Branch nodes ---------- */
 
  .d0-branches2{
    list-style: none;
    margin: 0;
    padding: 0;
  }
 
  .d0-branch2{
    list-style: none;
    position: absolute;
    top: calc(var(--d0-y) * 1%);
    left: calc(var(--d0-x) * 1%);
    transform: translate(-50%, -50%) rotate(var(--d0-rotate));
    width: clamp(190px, 24vw, 250px);
    background: #ffffff;
    border-left: 5px solid #ff6c65;
    border-radius: 3px;
    padding: 0.85rem 1rem;
    box-shadow: 5px 5px 0 rgba(36, 38, 43, 0.12);
    z-index: 1;
  }
 
  .d0-branch-title2{
    margin: 0 0 0.3rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: #24262b;
  }
 
  .d0-branch2 p{
    margin: 0;
    font-size: 1.6rem;
    color: #4a4d55;
  }
 
  /* ---------- Inverse colour modifier ---------- */
  /* Add the d0-inverse2 class to a .d0-mindmap-section2 to swap red/blue
     for that instance only — the base d0- classes above are untouched
     so other mindmaps on the same page keep the default scheme. */
 
  .d0-inverse2 .d0-line2{
    stroke: #ff6c65;
  }
 
  .d0-inverse2 .d0-node-center2{
    background: #ff6c65;
    box-shadow: 0 0 0 3px #FCFAF5, 0 0 0 5px #ff6c65;
  }
 
  .d0-inverse2 .d0-branch2{
    border-left-color: #769fcb;
  }
 
  /* ---------- Mobile / narrow layout: stack ---------- */
 
  @media (max-width: 760px){
 
    .d0-mindmap2{
      width: 100%;
      aspect-ratio: auto;
      max-width: 480px;
    }
 
    .d0-mindmap-lines2{
      display: none;
    }
 
    .d0-node-center2{
      display: none;
    }
 
    .d0-branches2{
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }
 
    .d0-branch2{
      position: static;
      transform: none;
      width: 100%;
    }
  }
