  .chart {
    background: white;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(20,20,30,0.06);
    padding: 12px;
    font-family: 'Titillium Web', sans-serif;
  }

  .axis text { font-size: 11px; }
  .axis path, .axis line { stroke: #ddd; }

  .row-label {
    font-size: 12px;
    text-anchor: end;
    dominant-baseline: middle;
  }

  .segment {
    stroke: #fff;
    stroke-width: 1;
    rx: 3;
    ry: 3;
  }
  text {
    font-family: 'Titillium Web', sans-serif;
  }

  .tooltip {
    position: absolute;
    pointer-events: none;
    background: white;
    border-radius: 6px;
    padding: 8px 10px;
    box-shadow: 0 6px 18px rgba(20,20,30,0.12);
    font-size: 12px;
    color: #111;
    border: 1px solid rgba(20,20,30,0.06);
    line-height: 1.2;
    font-family: 'Titillium Web', sans-serif;
  }

  .legend {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  .legend-item { display:flex; align-items:center; gap:6px; font-size:12px; }
  .legend-swatch { width:14px; height:14px; border-radius:3px; }

  /* responsive container */
  .svg-wrapper { overflow-x: auto; }

.card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  width: 100%;       /* ajustable según pantalla */
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Titillium Web', sans-serif;
  margin-bottom: 16px;
}

.card img {
  width: 100%;
  height: 220px;
  border-radius: 6px;
  object-fit: cover;
  margin-bottom: 8px;
}

.card .name {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  margin-bottom: 4px;
}

.card .title {
  font-size: 13px;
  color: #555;
  text-align: center;
  margin-bottom: 8px;
}

.card .adn {
  font-size: 12px;
  width: 100%;
}

.card .adn div {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
}

.card .adn-bar {
  display: flex;
  width: 100%;
  height: 14px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 6px;
  background: #eee; /* fondo gris para el total */
}


#adn-global,
#adn-globalLabel,
#adn-presidentes,
#adn-presidentesLabel {
    height: 50px;
    display: flex;
    margin-top: 20px;
  }

#adn-globalLabel,
#adn-presidentesLabel {margin-top:0}

.card .adn-segment {
  height: 100%;
  text-align: center;
  color: white;
  font-size: 10px;
  line-height: 14px;
  white-space: nowrap;
  overflow: hidden;
}

.adn.flex {
    margin-top: 30px;
    display: flex;
    height: 40px;
    &::before {
      content: "50%";
      flex-grow: 1;
      position: absolute;
      top: -15px;
      left: 49%;
      font-size: 10px;
      color: #777;
      font-family: 'Titillium Web', sans-serif;
    }
    &::after {
      content: "100%";
      flex-grow: 1;
      position: absolute;
      top: -15px;
      right: 1%;
      font-size: 10px;
      color: #777;
      font-family: 'Titillium Web', sans-serif;
    }
}


.bar_adn_pol {
  width: 100%;
  height: 14px;
  background: #eee;
  position: relative;
  display: block;
}

.bar_adn_pol .bar_adn_par {
  height: 14px;
  position: absolute;
  top: 0;
  left: 0;
}

.adn.flex .bar_adn_pol .bar_adn_par {
    height: 100%;
}