.jbhg-org-chart *{box-sizing:border-box}

.jbhg-org-chart{
 
  padding:20px;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

.jbhg-org-chart .top-area{
  display:grid;
  grid-template-columns:1fr 1.2fr 1fr;
  gap:20px;
  align-items:start;
  width:100%;
  max-width:900px;
  margin:0 auto;
}

.jbhg-org-chart .node{
  background:#fff;
  border-radius:10px;
  padding:14px;
  min-height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:600;
  box-shadow:0 6px 15px rgba(0,0,0,0.1);
}

.jbhg-org-chart .chairman{
  background:#697575;
  color:#fff;
  font-size:22px;
}

.jbhg-org-chart .ceo{
  background:#4b5563;
  color:#fff;
}

.jbhg-org-chart .committees{
  border:2px dashed #333;
  border-radius:20px;
  padding:10px;
}

.jbhg-org-chart .committee{
  background:#dfdfdf;
  color:#4a4f4d;
  padding:8px;
  margin:6px 0;
  border-radius:6px;
  font-size:13px;
  text-align:center;
}

.jbhg-org-chart .ceo-wrap{
  text-align:center;
  margin-top:20px;
  position:relative;
}

.jbhg-org-chart .ceo-wrap::before{
  content:"";
  position:absolute;
  top:-188px;
  left:50%;
  transform:translateX(-50%);
  width:2px;
  height:188px;
  background:#333;
}

.jbhg-org-chart .executive-row{
   margin-top:50px;
  display:grid;
  grid-template-columns:repeat(4, minmax(130px, 1fr));
  gap:15px;
  width:100%;
  max-width:100%;
  margin-left:auto;
  margin-right:auto;
  position:relative;
}

.jbhg-org-chart .executive-row::before{
  content:"";
  position:absolute;
  top:-20px;
  left:10%;
  right:10%;
  height:2px;
  background:#333;
}

.jbhg-org-chart .exec-card{
  position:relative;
}

.jbhg-org-chart .exec-card::before{
  content:"";
  position:absolute;
  top:-20px;
  left:50%;
  width:2px;
  height:20px;
  background:#333;
}

.jbhg-org-chart .exec-node{
  cursor:pointer;
  border-top:4px solid #697575;
  position:relative;
}

.jbhg-org-chart .exec-node::after{
  content:"+";
  position:absolute;
  right:10px;
  bottom:8px;
  width:20px;
  height:20px;
  background:#697575;
  color:#fff;
  border-radius:50%;
  font-size:14px;
  line-height:20px;
}

.jbhg-org-chart .exec-card.active .exec-node::after{
  content:"−";
}

.jbhg-org-chart .departments{
  display:none;
  margin-top:15px;
  position:relative;
}

.jbhg-org-chart .departments::before{
  content:"";
  position:absolute;
  top:-15px;
  left:50%;
  width:2px;
  height:15px;
  background:#999;
}

.jbhg-org-chart .exec-card.active .departments{
  display:block;
}

.jbhg-org-chart .dept{
  background:#fff;
  border:1px solid #697575;
  color:black;
  padding:8px;
  margin-bottom:6px;
  border-radius:6px;
  font-size:13px;
}

.jbhg-org-chart .hint{
  text-align:center;
  margin-top:15px;
  font-size:13px;
  color:#666;
}

.jbhg-org-chart .node{
  min-width:0;
}

@media (max-width: 768px){
  .jbhg-org-chart .top-area{
    grid-template-columns:1fr;
  }

  .jbhg-org-chart .executive-row{
    grid-template-columns:1fr 1fr;
  }

  .jbhg-org-chart .ceo-wrap::before{
    display:none;
  }

  .jbhg-org-chart .executive-row::before,
  .jbhg-org-chart .exec-card::before{
    display:none;
  }
}