/* ==========================================================================
   Ley de Transparencia — node 14358
   Intro + numbered accordions with links.
   Colors: #0943b5 (blue), #4b4b4b (text), #e5eefb (border)
   ========================================================================== */

/* Intro paragraph */
.node--transp .transp-intro {
  color: #4b4b4b;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Numbered circle in accordion button */
.node--transp .transp-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #0943b5;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

/* Accordion button alignment */
.node--transp .transp-accordion__button {
  display: flex;
  align-items: center;
}

/* Links inside accordion body */
.node--transp .organigrama-accordion__body a {
  color: #3366cc;
  text-decoration: underline;
}

.node--transp .organigrama-accordion__body a:hover {
  color: #0943b5;
}

/* Lists inside accordion body */
.node--transp .organigrama-accordion__body ul,
.node--transp .organigrama-accordion__body ol {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.5rem;
}

.node--transp .organigrama-accordion__body li {
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.7;
}

/* Blue bullet */
.node--transp .organigrama-accordion__body li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0943b5;
  position: absolute;
  left: 0;
  top: 0.5em;
}

/* Sub-headings inside accordion body */
.node--transp .organigrama-accordion__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #4b4b4b;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Paragraphs inside accordion body */
.node--transp .organigrama-accordion__body p {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
