      /* ================================================================
         INSTITUTIONAL REPORT INFOGRAPHIC - Custom Styles
         ================================================================ */

      :root {
        --ir-navy: #112057;
        --ir-teal-start: #014c73;
        --ir-teal-end: #6dafc7;
        --ir-burgundy: #840036;
        --ir-burgundy-end: #ab8f9a;
        --ir-border-gray: #c3c3c3;
        --ir-light-gray: #d5d5d5;
        --ir-text-gray: #dedede;
        --ir-white: #ffffff;
        --ir-font-family: 'Roboto', 'Helvetica Neue LT Std', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        --ir-font-roboto: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      }

      /* ---- Wrapper (flex: sidebar + main) ---- */
      .ir-wrapper {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        font-family: var(--ir-font-family) !important;
        letter-spacing: 0 !important;
      }

      /* Override CMS font/letter-spacing on every descendant */
      .ir-main * {
        font-family: var(--ir-font-family) !important;
        letter-spacing: 0 !important;
      }

      /* ---- Year sidebar ---- */
      .ir-year-sidebar {
        display: none;
      }

      .ir-year-sidebar__inner {
        width: 24px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .ir-year-sidebar__text {
        font-family: var(--ir-font-family);
        font-size: 24px;
        font-weight: 200;
        letter-spacing: -1.13px;
        color: #000000;
        line-height: 1;
        margin: 0;
        white-space: nowrap;
        transform: rotate(-90deg);
      }

      /* ---- Main container ---- */
      .ir-main {
        font-family: var(--ir-font-family);
        width: 100%;
        position: relative;
        border-left: 1px solid var(--ir-border-gray);
        border-right: 1px solid var(--ir-border-gray);
        border-bottom: 1px solid var(--ir-border-gray);
        overflow: hidden;
        background: var(--ir-white);
        display: flex;
        flex-direction: column;
        gap: 96px;
        align-items: flex-end;
      }

      /* ---- Frame decoration (vertical lines) ---- */
      .ir-frame-decoration {
        display: none;
      }

      /* ---- Section title block (reusable) ---- */
      .ir-section-title {
        border-top: 2px solid var(--ir-navy);
        padding-top: 40px;
        padding-left: 40px;
        margin: 0;
      }

      .ir-section-title__line {
        font-family: var(--ir-font-family);
        font-size: 40px;
        font-weight: 300;
        letter-spacing: -0.595px;
        color: var(--ir-navy);
        text-transform: uppercase;
        line-height: 1.08;
      }

      .ir-section-title__line--medium {
        display: block;
        font-weight: 500;
      }

      /* Per-chapter title width constraints */
      .ir-acciones .ir-section-title  { max-width: 427px; }
      .ir-ciudadania .ir-section-title { max-width: 372px; }
      .ir-recursos .ir-section-title  { white-space: nowrap; max-width: 427px; }

      /* Ch3: medium must stay inline so "los recursos" share the same line */
      .ir-recursos .ir-section-title__line--medium { display: inline; }

      /* Tagline width constraints */
      .ir-acciones .ir-acciones__tagline  { max-width: 301px; }
      .ir-recursos .ir-recursos__tagline  { max-width: 427px; }

      /* ================================================================
         SECTION 1: HERO
         ================================================================ */

      /* Positioned container — overflow hidden to clip bg; nav floats here */
      .ir-hero {
        position: relative;
        width: 100%;
        height: 615px;
        overflow: hidden;
        background: linear-gradient(222.06deg, var(--ir-teal-end) 40.963%, var(--ir-teal-start) 69.575%);
        border-bottom-right-radius: 88px;
        flex-shrink: 0;
      }

      /* Background building image — very low opacity over teal */
      .ir-hero__bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        height: 1230px;
      }

      .ir-hero__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        opacity: 0.05;
        display: block;
      }

      /* Leadership blocks container — actual scroll container */
      .ir-hero__leadership {
        position: relative;
        z-index: 1;
        overflow-y: auto;
        height: 100%;
        scrollbar-width: none;
      }

      .ir-hero__leadership::-webkit-scrollbar {
        display: none;
      }

      /* Each leader panel: photo top-right / text bottom-left */
      .ir-hero__leader {
        height: 615px;
        padding: 32px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end; /* photo anchors to right edge */
        position: relative;
        overflow: hidden;
      }

      /* White bottom border on the Gobernador panel */
      .ir-hero__leader--border {
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
      }

      /* Profile photo */
      .ir-hero__leader-photo {
        width: 197px;
        height: 197px;
        overflow: hidden;
        flex-shrink: 0;
      }

      .ir-hero__leader-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
      }

      /* Text body: overrides to left edge, full width */
      .ir-hero__leader-body {
        align-self: flex-start;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
      }

      /* Name + role stacked */
      .ir-hero__leader-identity {
        display: flex;
        flex-direction: column;
        gap: 3px;
      }

      .ir-hero__leader-name {
        font-family: var(--ir-font-family);
        font-size: 16px;
        font-weight: 700;
        color: var(--ir-white);
        margin: 0;
        line-height: 1.3;
      }

      .ir-hero__leader-role {
        font-family: var(--ir-font-family);
        font-size: 16px;
        font-weight: 300;
        color: var(--ir-text-gray);
        margin: 0;
        line-height: 1.3;
      }

      .ir-hero__leader-quote {
        font-family: var(--ir-font-family);
        font-size: 18px;
        font-weight: 400;
        letter-spacing: -0.75px;
        line-height: 1.3;
        color: var(--ir-white);
        margin: 0;
        max-width: 466px;
      }

      /* Download button: white pill with burgundy text */
      .ir-hero__leader-download {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #ffffff !important;
        color: #840036 !important;
        border: none !important;
        outline: none;
        box-shadow: none !important;
        font-family: var(--ir-font-roboto);
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0.216px;
        text-transform: uppercase;
        padding: 9px 16px;
        border-radius: 30px;
        text-decoration: none !important;
        align-self: flex-start;
        transition: opacity 0.15s;
      }

      .ir-hero__leader-download:hover {
        opacity: 0.85;
      }

      /* ================================================================
         SECTIONS 2-4: CHAPTER COMMON LAYOUT
         ================================================================ */
      .ir-acciones,
      .ir-ciudadania,
      .ir-recursos {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: center;   /* center for button alignment */
        width: 100%;
        flex-shrink: 0;
      }

      .ir-acciones__title-block,
      .ir-ciudadania__title-block,
      .ir-recursos__title-block {
        width: 100%;
        padding: 13px 0 72px;
        align-self: flex-start;
        position: relative;
      }

      /* Chapter taglines (Ch2 + Ch3 use .ir-ciudadania__tagline etc.) */
      .ir-acciones__tagline,
      .ir-ciudadania__tagline,
      .ir-recursos__tagline {
        font-family: var(--ir-font-family) !important;
        font-size: 16px !important;
        font-weight: 300 !important;
        letter-spacing: 0 !important;
        color: var(--ir-navy) !important;
        margin: 12px 0 0 0 !important;
        padding-left: 40px;
        opacity: 0.75;
      }

      /* Decorative chapter number (giant, semi-transparent, ultra-light) */
      .ir-chapter-number {
        position: absolute;
        right: 159px;
        transform: translateX(100%);
        font-family: var(--ir-font-family);
        font-size: 240px;
        font-weight: 100;
        letter-spacing: -4.69px;
        color: rgba(17, 32, 87, 0.1);
        line-height: 1.08;
        width: 116px;
        height: 170px;
        pointer-events: none;
        user-select: none;
        z-index: 0;
      }

      /* ================================================================
         ACCORDION LAYOUT (shared by all 3 chapters)
         ================================================================ */
      .ir-acciones__content {
        position: relative;
        height: 460px;
        overflow: hidden;
        width: 100%;
        align-self: flex-start;
      }

      .ir-acciones__content-inner {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        display: flex;
        align-items: stretch;
      }

      /* ---- Main image card (expanded tab 01) ---- */
      .ir-acciones__card {
        position: relative;
        flex: 1;
        min-width: 0;
        height: 460px;
        overflow: hidden;
      }

      .ir-acciones__card-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
      }

      .ir-acciones__card-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .ir-acciones__card-overlay {
        position: absolute;
        inset: 0;
        background:
          linear-gradient(-57.31deg, rgba(0,0,0,0) 46.284%, rgba(0,0,0,0.3) 99.597%),
          linear-gradient(180deg, rgba(0,0,0,0) 17.092%, rgba(0,0,0,0.75) 50%);
        z-index: 2;
      }

      .ir-acciones__card-content {
        position: relative;
        z-index: 3;
        padding: 32px 100px 32px 32px;
        display: flex;
        flex-direction: column;
        height: 100%;
        box-sizing: border-box;
        transition: opacity 0.25s ease;
      }

      .ir-acciones__card-header {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      p.ir-acciones__card-number {
        font-family: var(--ir-font-family);
        font-size: 32px !important;
        font-weight: 300;
        letter-spacing: -0.5px;
        color: var(--ir-white);
        margin: 0;
        line-height: 1;
      }

      p.ir-acciones__card-title {
        font-family: var(--ir-font-family) !important;
        font-size: 26px !important;
        font-weight: 500 !important;
        letter-spacing: -0.5px !important;
        color: var(--ir-white) !important;
        margin: 0 !important;
        max-width: 248px;
        line-height: 1.1 !important;
      }

      .ir-acciones__card-details {
        width: 370px;
        list-style: none;
        padding: 0;
        margin: 0;
        margin-top: auto;
      }

      .ir-acciones__card-detail {
        font-family: var(--ir-font-family);
        font-size: 16px;
        font-weight: 300;
        letter-spacing: -0.15px;
        color: var(--ir-white);
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        line-height: 1.3;
      }

      .ir-acciones__card-detail:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }

      .ir-acciones__card-detail a.ir-card-link {
        color: white !important;
        text-decoration: underline !important;
        text-underline-offset: 2px;
        text-decoration-color: rgba(255,255,255,0.6) !important;
      }

      .ir-acciones__card-divider {
        width: 305px;
        height: 1px;
        margin: 16px 0 0 auto;
      }

      .ir-acciones__card-divider svg {
        display: block;
        width: 100%;
        height: 100%;
      }

      /* ---- Side tabs ---- */
      .ir-acciones__tabs {
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
        height: 460px;
      }

      /* Default tab: burgundy */
      .ir-acciones__tab {
        flex: 0 0 49px;
        min-width: 0;
        height: 100%;
        background: linear-gradient(
          90deg,
          rgba(132, 0, 54, 1) 0%,
          rgba(132, 0, 54, 1) 100%
        );
        box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        padding: 24px 0;
        box-sizing: border-box;
        cursor: pointer;
        transition: box-shadow 0.2s;
        border-right: 0.5px solid rgba(255, 255, 255, 0.3);
        overflow: hidden;
      }

      .ir-acciones__tab:last-child {
        border-right: none;
      }

      .ir-acciones__tab:hover {
        box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.25);
      }

      .ir-acciones__tab:focus-visible {
        outline: 2px solid rgba(255, 255, 255, 0.85);
        outline-offset: -3px;
      }

      /* Teal tab variant (Chapter 2) */
      .ir-acciones__tabs--teal .ir-acciones__tab {
        background: linear-gradient(
          90deg,
          rgba(1, 76, 115, 1) 0%,
          rgba(1, 76, 115, 1) 100%
        );
        box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.4);
      }

      .ir-acciones__tabs--teal .ir-acciones__tab:hover {
        box-shadow: inset 0 0 0 999px rgba(0, 0, 0, 0.25);
      }

      .ir-acciones__tab-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
      }

      .ir-acciones__tab-icon svg {
        width: 100%;
        height: 100%;
      }

      .ir-acciones__tab-number {
        font-family: var(--ir-font-family);
        font-size: 21px;
        font-weight: 300;
        letter-spacing: -0.25px;
        color: var(--ir-white);
      }

      .ir-acciones__tab-title {
        display: none;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font-family: var(--ir-font-family);
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.3px;
        color: rgba(255, 255, 255, 0.6);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-height: 220px;
        flex: 1;
      }

      /* ================================================================
         SHARED: STATS ROW (bloque coloreado + foto lateral)
         ================================================================ */

      /* Fila contenedora: bloque coloreado fijo + foto flexible */
      .ir-stats-row {
        display: flex;
        align-items: stretch;
        width: 100%;
        gap: 1px;
        flex-shrink: 0;
      }

      /* Bloque coloreado de estadísticas */
      .ir-stats-block {
        position: relative;
        padding: 88px 96px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        gap: 46px;
        overflow: hidden;
        flex-shrink: 0;
      }

      /* Ch1 y Ch2: 4 stats, bloque de 608px */
      .ir-stats-block--lg { width: 608px; }

      /* Ch3: 1 stat, bloque de 405px */
      .ir-stats-block--sm { width: 405px; padding-top: 112px; padding-bottom: 112px; }

      /* Teal stats (Ch1 & Ch3) — radius inferior izquierdo */
      .ir-stats-block--teal {
        background: linear-gradient(to bottom, var(--ir-teal-start) 0%, var(--ir-teal-end) 153%);
        border-bottom-left-radius: 100px;
      }

      /* Burgundy stats (Ch2) — radius inferior derecho */
      .ir-stats-block--burgundy {
        background: linear-gradient(to bottom, var(--ir-burgundy) 0%, var(--ir-burgundy-end) 153%);
        border-bottom-right-radius: 100px;
      }

      /* Foto lateral: ocupa el ancho restante con object-fit: cover */
      .ir-stats-photo {
        flex: 1 0 0;
        min-width: 1px;
        position: relative;
        align-self: stretch;
        overflow: hidden;
      }

      .ir-stats-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
      }

      /* Fila interna de 2 stats (2 rows × 2 cols) */
      .ir-stats-block__row {
        display: flex;
        gap: 56px;
        align-items: flex-end;
        position: relative;
        z-index: 1;
      }

      /* Cada stat ocupa la misma anchura */
      .ir-stats-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 4px;
        position: relative;
        z-index: 1;
      }

      p.ir-stats-item__number {
        font-family: var(--ir-font-family) !important;
        font-size: 1.6em !important;
        font-weight: 500 !important;
        letter-spacing: -0.5px !important;
        color: var(--ir-white) !important;
        margin: 0 !important;
        line-height: 1 !important;
      }

      .ir-stats-item__label {
        font-family: var(--ir-font-family);
        font-size: 16px;
        font-weight: 300;
        letter-spacing: -0.1px;
        color: var(--ir-white);
        margin: 0;
        line-height: 1.2;
      }

      /* Stat mixto con pre/post (Ch1 "4 reducciones") */
      .ir-stats-item__pre,
      .ir-stats-item__post {
        font-family: var(--ir-font-family);
        font-size: 16px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.85);
        margin: 0;
        line-height: 1.2;
      }

      /* ---- Hero navigation dots ---- */
      .ir-hero__nav {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 10;
      }
      .ir-hero__nav-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: 1.5px solid rgba(255, 255, 255, 0.7);
        background: transparent;
        cursor: pointer;
        padding: 0;
        transition: background 0.2s, border-color 0.2s;
        touch-action: manipulation;
      }

      @media (max-width: 900px) {
        .ir-hero__nav-dot {
          width: 14px;
          height: 14px;
          border-width: 2px;
        }
      }
      .ir-hero__nav-dot--active {
        background: rgba(255, 255, 255, 0.9);
        border-color: white;
      }

      /* Wave decorations inside stats blocks */
      .ir-stats-block__wave {
        position: absolute;
        pointer-events: none;
        z-index: 0;
      }

      .ir-stats-block__wave--1 {
        top: 0;
        left: -8%;
        height: 100%;
        width: 115px;
        opacity: 0.25;
        transform: rotate(-90deg) scaleY(-1);
        transform-origin: center;
      }

      .ir-stats-block__wave--2 {
        top: 30%;
        right: -8%;
        height: 100%;
        width: 115px;
        opacity: 0.25;
        transform: rotate(90deg) scaleY(-1);
        transform-origin: center;
      }

      .ir-stats-block__wave img {
        width: 100%;
        display: block;
      }

      /* ================================================================
         SHARED: DOWNLOAD BUTTON
         ================================================================ */
      .ir-download-btn {
        display: inline-block;
        background: var(--ir-burgundy);
        color: var(--ir-white) !important;
        font-family: var(--ir-font-family);
        font-size: 15px;
        font-weight: 500;
        letter-spacing: -0.2px;
        padding: 14px 36px;
        border-radius: 30px;
        text-decoration: none !important;
        margin: 28px 0 12px;
        border: none;
      }

      .ir-download-btn--teal {
        background: var(--ir-teal-start);
      }

      @media (hover: hover) {
        .ir-download-btn:hover { background: #6a002b; color: var(--ir-white) !important; text-decoration: none !important; }
        .ir-download-btn--teal:hover { background: #013550; color: var(--ir-white) !important; text-decoration: none !important; }
      }

      .ir-footer-bg {
        width: 100%;
        height: 140px;
        flex-shrink: 0;
        overflow: hidden;
        position: relative;
      }

      .ir-footer-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .ir-footer-bg .ir-download-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        white-space: nowrap;
      }

      /* ================================================================
         RESPONSIVE ADJUSTMENTS
         ================================================================ */
      @media (max-width: 900px) {
        .ir-wrapper {
          max-width: 100%;
        }

        .ir-main {
          border-left: none;
          border-right: none;
          gap: 40px;
        }

        /* Hero */
        .ir-hero {
          border-bottom-right-radius: 48px;
          height: 560px;
        }

        .ir-hero__leader {
          padding: 24px;
          height: 560px;
        }

        .ir-hero__leader-photo {
          width: 140px;
          height: 140px;
        }

        .ir-hero__leader-quote {
          font-size: 15px;
          max-width: 100%;
        }

        /* Section title */
        .ir-section-title__line {
          font-size: 35px;
        }

        .ir-acciones .ir-section-title,
        .ir-ciudadania .ir-section-title,
        .ir-recursos .ir-section-title {
          max-width: 100%;
        }

        .ir-recursos .ir-section-title {
          white-space: normal;
        }

        /* Títulos y taglines: quitar padding-left en móvil para alinear con el texto inferior */
        .ir-section-title {
          padding-left: 0;
        }

        .ir-acciones__tagline,
        .ir-ciudadania__tagline,
        .ir-recursos__tagline {
          padding-left: 0;
        }

        /* Chapter sections */
        .ir-acciones,
        .ir-ciudadania,
        .ir-recursos {
          padding: 0 20px 0 30px;
        }

        .ir-acciones__content {
          height: auto;
          overflow: visible;
        }

        .ir-acciones__content-inner {
          position: relative;
          width: 100%;
          flex-direction: column;
        }

        .ir-acciones__card {
          width: 100%;
        }

        .ir-acciones__card-content {
          padding: 20px;
        }

        .ir-acciones__card-details {
          width: 100%;
        }

        p.ir-acciones__card-title {
          font-size: 26px !important;
          max-width: none;
        }

        .ir-acciones__tabs {
          flex-direction: row;
          width: 100%;
          height: 72px;
        }

        .ir-acciones__tab {
          flex: 1;
          flex-direction: row;
          justify-content: center;
          gap: 8px;
          padding: 0 12px;
        }

        .ir-acciones__tab-title {
          display: none;
        }

        /* Stats */
        .ir-stats-row {
          flex-direction: column;
        }

        .ir-stats-block {
          width: 100% !important;
          padding: 40px 28px 52px !important;
          border-radius: 0 0 48px 0 !important; /* default: burgundy (Ch2) — right */
        }

        /* Teal blocks (Ch1 left, Ch3 left) keep left-side radius on mobile */
        .ir-stats-block--teal {
          border-radius: 0 0 0 48px !important;
        }

        /* Ch2: foto primero en columna → la foto va arriba, stats abajo */
        .ir-stats-row--photo-left {
          flex-direction: column-reverse;
        }

        .ir-stats-photo {
          height: 220px;
          flex: none;
          width: 100%;
        }

        .ir-stats-block__row {
          flex-direction: column;
          gap: 28px;
          align-items: stretch;
        }

        /* Separador visual entre el 1er y 2º grupo de stats */
        .ir-stats-block__row + .ir-stats-block__row {
          border-top: 1px solid rgba(255, 255, 255, 0.2);
          padding-top: 32px;
          margin-top: -14px;
        }

        p.ir-stats-item__number {
          font-size: 1.4em !important;
        }

        .ir-stats-block__wave {
          display: none;
        }

        .ir-chapter-number {
          font-size: 90px !important;
          font-weight: 100 !important;
          right: 12px !important;
          top: 40px !important;
          width: auto !important;
          height: auto !important;
          transform: translateX(0) !important;
          z-index: 0 !important;
          pointer-events: none !important;
        }

        .ir-download-btn {
          font-size: 14px;
          padding: 12px 28px;
          margin: 20px 0 8px;
        }
      }