    .idtp-page {
        background: #F5F6F8;
        color: #1A1E2E;
    }

    .idtp-page *,
    .idtp-page *::before,
    .idtp-page *::after {
        box-sizing: border-box;
    }

    /* Variables locales */
    .idtp-page {
        --primario: #00A788;
        --azulFuerte: #002855;
        --azul: #004ABA;
        --azulClaro: #0091CC;
        --verde: #36AC2F;
        --verdeClaro: #C0D401;
        --bg: #F5F6F8;
        --bg-white: #FFFFFF;
        --surface: #EDEEF1;
        --borde: #E0E2E8;
        --texto: #1A1E2E;
        --muted: #6B7280;
        --muted-lt: #9CA3AF;
        --r-sm: 8px;
        --r-md: 14px;
        --r-lg: 22px;
        --r-xl: 32px;
    }

    .idtp-page .wrap {
        max-width: 1260px;
        margin: 0 auto;
        padding: 0 28px;
    }

    .idtp-page .eyebrow {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--primario);
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 14px;
    }

    .idtp-page .eyebrow::before {
        content: '';
        width: 22px;
        height: 2px;
        background: var(--primario);
        border-radius: 2px;
    }

    .idtp-page h2.bloque {
        font-size: 3.7rem;
        font-weight: 800;
        line-height: 1.05;
        color: var(--texto);
        letter-spacing: -0.5px;
    }

    .idtp-page h2.bloque em {
        font-style: normal;
        color: var(--primario);
    }

    .idtp-page .divider {
        width: 48px;
        height: 3px;
        background: var(--verdeClaro);
        border-radius: 2px;
        margin: 18px 0 22px;
    }

    .idtp-page .prose {
        font-size: 16px;
        line-height: 1.75;
        color: var(--muted);
        align-items: center;
        text-align: justify
    }

    .idtp-page .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 100px;
        font-size: 1.4rem;
        font-weight: 600;
        cursor: pointer;
        border: none;
        text-decoration: none;
        transition: transform .18s, box-shadow .18s, background .18s;
    }

    .idtp-page .btn:hover {
        transform: translateY(-2px);
    }

    .idtp-page .btn-solid {
        background: var(--primario);
        color: #fff;
    }

    .idtp-page .btn-solid:hover {
        background: #009478;
        box-shadow: 0 6px 20px rgba(0, 167, 136, .28);
    }

    .idtp-page .btn-ghost {
        background: transparent;
        color: var(--texto);
        border: 1.5px solid var(--borde);
    }

    .idtp-page .btn-ghost:hover {
        border-color: var(--primario);
        color: var(--primario);
    }

    /* hero */
    .idtp-page .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: var(--azulFuerte);
    }

    .idtp-page .hero-foto {
        position: absolute;
        inset: 0;
        background: url('https://www.utsjr.edu.mx/build/img/posgrado/fondo2.jpg') top/cover no-repeat;
    }

    /* oscuro abajo donde va el texto, foto visible arriba */
    .idtp-page .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,
                rgba(0, 15, 40, .96) 0%,
                rgba(0, 15, 40, .55) 45%,
                rgba(0, 15, 40, .15) 100%);
    }

    .idtp-page .hero-topbar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primario), var(--verdeClaro), var(--azulClaro));
        z-index: 4;
    }

    .idtp-page .hero-spacer {
        flex: 1;
    }

    .idtp-page .hero-content {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .idtp-page .hero-texto {
        max-width: 780px;
        margin: 0 auto;
        padding: 0 28px 0;
        text-align: center;
    }

    .idtp-page .hero-h1 {
        font-size: clamp(2.6rem, 5.5vw, 4.8rem);
        font-weight: 800;
        line-height: .97;
        letter-spacing: -2px;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 32px;
    }

    .idtp-page .hero-h1 .verde {
        color: var(--primario);
    }

    .idtp-page .hero-h1 .lima {
        color: var(--verdeClaro);
    }

    .idtp-page .hero-btns {
        /*display: flex;*/
        display: none;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .idtp-page .hero-stats-bar {
        position: relative;
        z-index: 2;
        background: rgba(0, 10, 30, .8);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 255, 255, .08);
        display: flex;
        align-items: stretch;
    }

    .idtp-page .hstat {
        flex: 1;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 15px 16px;
        border-right: 1px solid rgba(255, 255, 255, .07);
        transition: background .18s;
    }

    .idtp-page .hstat:last-child {
        border-right: none;
    }

    .idtp-page .hstat:hover {
        background: rgba(0, 167, 136, .08);
    }

    .idtp-page .hstat-n {
        font-size: 5rem;
        font-weight: 800;
        /*color: var(--primario);*/
        color: rgb(247, 247, 247);
        line-height: 1;
    }

    .idtp-page .hstat-l {
        font-size: 1.2rem;
        font-weight: 600;
        color: rgba(255, 255, 255, .45);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        text-align: center;
    }

    /* maestria */
    .idtp-page .sec-maestria {
        padding: 100px 0;
        background: var(--bg-white);
    }

    .idtp-page .maestria-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
    }

    .idtp-page .badge-posgrado {
        display: inline-block;
        background: rgba(192, 212, 1, .1);
        border: 1px solid rgba(192, 212, 1, .35);
        color: #6e7d00;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 4px 12px;
        border-radius: 4px;
    }

    .idtp-page .maestria-texto .prose {
        margin: 14px 0 30px;
    }

    .idtp-page .especialidades {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 34px;
    }

    .idtp-page .esp {
        display: flex;
        gap: 18px;
        align-items: flex-start;
    }

    .idtp-page .esp-n {
        font-size: 3rem;
        font-weight: 800;
        color: var(--borde);
        line-height: 1;
        min-width: 32px;
        padding-top: 2px;
        user-select: none;
    }

    .idtp-page .esp-titulo {
        font-size: 16px;
        font-weight: 700;
        color: var(--texto);
        margin-bottom: 4px;
    }

    .idtp-page .esp-desc {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.55;
    }

    .idtp-page .maestria-panel {
        position: relative;
        border-radius: var(--r-xl);
        overflow: hidden;
        min-height: 420px;
        display: flex;
        align-items: flex-end;
        background: var(--azulFuerte);
    }

    .idtp-page .maestria-panel-img {
        position: absolute;
        inset: 0;
        background: url('https://www.utsjr.edu.mx/build/img/posgrado/planes.jpeg') center/cover no-repeat;
        transition: transform .4s ease;
    }

    .idtp-page .maestria-panel:hover .maestria-panel-img {
        transform: scale(1.04);
    }

    .idtp-page .maestria-panel-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 28, 60, .92) 0%, rgba(0, 28, 60, .3) 60%, transparent 100%);
    }

    .idtp-page .maestria-panel-content {
        position: relative;
        z-index: 1;
        padding: 36px;
        width: 100%;
    }

    .idtp-page .panel-nombre {
        font-size: 1.9rem;
        font-weight: 800;
        line-height: 1.05;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 6px;
        letter-spacing: -0.5px;
    }

    .idtp-page .panel-nombre span {
        color: var(--primario);
    }

    .idtp-page .panel-sub {
        font-size: .76rem;
        color: rgba(255, 255, 255, .5);
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin-bottom: 22px;
    }

    .idtp-page .panel-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        background: var(--primario);
        color: #fff;
        border-radius: 100px;
        font-size: 1.5rem;
        font-weight: 700;
        text-decoration: none;
        transition: background .18s, transform .18s;
    }

    .idtp-page .panel-btn:hover {
        background: #009478;
        transform: translateY(-2px);
    }

    /* snii */

    .idtp-page .sec-sni {
        padding: 50px 0;
        background: var(--bg);
    }

    .idtp-page .sni-layout {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 72px;
        align-items: center;
    }

    .idtp-page .sni-texto .prose {
        margin: 14px 0 32px;
    }

    .idtp-page .niveles {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .idtp-page .nivel-fila {
        display: grid;
        grid-template-columns: 100px 1fr 44px;
        align-items: center;
        gap: 14px;
    }

    .idtp-page .nivel-nombre {
        font-size: 14px;
        font-weight: 600;
        color: var(--muted);
    }

    .idtp-page .barra-bg {
        height: 8px;
        background: var(--surface);
        border-radius: 100px;
        overflow: hidden;
    }

    .idtp-page .barra-fill {
        height: 100%;
        border-radius: 100px;
        background: var(--primario);
    }

    .idtp-page .nivel-count {
        font-size: 14px;
        font-weight: 700;
        color: var(--texto);
        text-align: right;
    }

    .idtp-page .sni-panel {
        background: var(--bg-white);
        border: 1px solid var(--borde);
        border-radius: var(--r-xl);
        padding: 48px 40px;
        text-align: center;
    }

    .idtp-page .sni-n-grande {
        font-size: 5.5rem;
        font-weight: 800;
        color: var(--primario);
        line-height: 1;
        display: block;
        margin-bottom: 6px;
    }

    .idtp-page .sni-n-label {
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--muted-lt);
        display: block;
        margin-bottom: 28px;
    }

    .idtp-page .sni-areas {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .idtp-page .area-tag {
        background: rgba(0, 167, 136, .08);
        border: 1px solid rgba(0, 167, 136, .2);
        border-radius: 100px;
        padding: 5px 14px;
        font-size: 12px;
        font-weight: 600;
        color: var(--primario);
    }

    /* directorio */
    .idtp-page .sec-directorio {
        padding: 50px 0;
        background: var(--bg-white);
    }

    .idtp-page .dir-header {
        margin-bottom: 5px;
    }

    .idtp-page .dir-cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .idtp-page .dir-col-titulo {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--muted-lt);
        margin-bottom: 22px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--borde);
    }

    .idtp-page .persona-linea {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 14px 0;
        border-bottom: 1px solid var(--borde);
        transition: padding-left .15s;
    }

    .idtp-page .persona-linea:last-child {
        border-bottom: none;
    }

    .idtp-page .persona-linea:hover {
        padding-left: 6px;
    }

    .idtp-page .av {
        width: 88px;
        height: 88px;
        border-radius: 50%;
        background: var(--surface);
        border: 1.5px solid var(--borde);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .82rem;
        font-weight: 700;
        color: var(--muted);
        overflow: hidden;
    }

    .idtp-page .av img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 10%;
    }

    .idtp-page .av-lg {
        width: 88px;
        height: 88px;
    }

    .idtp-page .pers-nombre {
        font-size: 16px;
        font-weight: 600;
        color: var(--texto);
        margin-bottom: 3px;
    }

    .idtp-page .pers-cargo {
        font-size: 12px;
        color: var(--muted);
    }

    .idtp-page .badge-dir {
        margin-left: auto;
        flex-shrink: 0;
        background: rgba(0, 74, 186, .07);
        border: 1px solid rgba(0, 74, 186, .18);
        color: var(--azul);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 3px 10px;
        border-radius: 100px;
    }

    .idtp-page .badge-snii {
        margin-left: auto;
        flex-shrink: 0;
        background: rgba(0, 167, 136, .07);
        border: 1px solid rgba(0, 167, 136, .2);
        color: var(--primario);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 3px 10px;
        border-radius: 100px;
    }

    .idtp-page .idtp-paginacion {
        display: flex;
        align-items: center;
        gap: 10px;
        /*margin-top: 16px;
        padding-top: 14px;
        border-top: 1px solid var(--borde);*/
        width: 70%;
    }

    .idtp-page .pag-btn {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1.5px solid var(--borde);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 16px;
        transition: border-color .15s, color .15s, background .15s;
        line-height: 1;
        border-color: var(--primario);
        color: var(--primario);
        background: rgba(0, 167, 136, .06);
    }


    .idtp-page .pag-btn:hover {
        border-color: var(--borde);
        color: var(--muted);
        background: transparent;
    }

    .idtp-page .pag-info {
        font-size: 12px;
        color: var(--muted-lt);
        font-weight: 500;
        margin-left: 4px;
    }

    /* organigrama */
    .idtp-page .sec-organigrama {
        padding: 90px 0;
        background: var(--bg);
    }

    .idtp-page .org-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: center;
    }

    .idtp-page .org-texto .prose {
        margin: 14px 0 30px;
    }

    .idtp-page .dir-claustro-cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 48px;
    }

    .idtp-page .dir-claustro-cols .persona-linea:last-child {
        border-bottom: 1px solid var(--borde);
    }

    /* convocatorias */
    .idtp-page .sec-conv {
        padding: 100px 0;
        background: var(--bg-white);
    }

    .idtp-page .conv-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        margin-bottom: 40px;
        gap: 20px;
        flex-wrap: wrap;
    }

    .idtp-page .filtros {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .idtp-page .f-btn {
        padding: 6px 18px;
        border-radius: 100px;
        border: 1.5px solid var(--borde);
        background: transparent;
        font-size: 14px;
        font-weight: 600;
        color: var(--muted);
        cursor: pointer;
        transition: all .15s;
    }

    .idtp-page .f-btn:hover,
    .idtp-page .f-btn.on {
        border-color: var(--primario);
        color: var(--primario);
        background: rgba(0, 167, 136, .07);
    }

    .idtp-page .banners {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .idtp-page .banner {
        display: flex;
        align-items: center;
        background: var(--bg-white);
        border: 1px solid var(--borde);
        border-radius: var(--r-md);
        overflow: hidden;
        text-decoration: none;
        transition: border-color .18s, box-shadow .18s;
    }

    .idtp-page .banner:hover {
        border-color: var(--primario);
        box-shadow: 0 4px 18px rgba(0, 167, 136, .1);
    }

    .idtp-page .banner-acento {
        width: 5px;
        align-self: stretch;
        flex-shrink: 0;
    }

    .idtp-page .ac-verde {
        background: var(--primario);
    }

    .idtp-page .ac-azul {
        background: var(--azul);
    }

    .idtp-page .ac-claro {
        background: var(--azulClaro);
    }

    .idtp-page .ac-lima {
        background: var(--verdeClaro);
    }

    .idtp-page .banner-emoji {
        font-size: 40px;
        padding: 0 20px;
        flex-shrink: 0;
    }

    .idtp-page .banner-cuerpo {
        flex: 1;
        padding: 18px 12px 18px 0;
        min-width: 0;
    }

    .idtp-page .b-tipo {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--muted-lt);
        margin-bottom: 4px;
    }

    .idtp-page .b-titulo {
        font-size: 16px;
        font-weight: 700;
        color: var(--texto);
        margin-bottom: 4px;
    }

    .idtp-page .b-desc {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.45;
    }

    .idtp-page .banner-meta {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 18px 22px;
        flex-shrink: 0;
    }

    .idtp-page .b-fecha {
        text-align: right;
    }

    .idtp-page .b-fecha-lbl {
        font-size: 14px;
        color: var(--muted-lt);
        letter-spacing: 1px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 3px;
    }

    .idtp-page .b-fecha-val {
        font-size: 12px;
        font-weight: 700;
        color: var(--texto);
    }

    .idtp-page .b-badge {
        padding: 4px 12px;
        border-radius: 100px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .5px;
        white-space: nowrap;
    }

    .idtp-page .b-abierto {
        background: rgba(0, 167, 136, .1);
        color: var(--primario);
        border: 1px solid rgba(0, 167, 136, .25);
    }

    .idtp-page .b-proximo {
        background: rgba(0, 74, 186, .07);
        color: var(--azul);
        border: 1px solid rgba(0, 74, 186, .2);
    }

    .idtp-page .b-activo {
        background: rgba(192, 212, 1, .1);
        color: #6e7d00;
        border: 1px solid rgba(192, 212, 1, .3);
    }

    .idtp-page .b-arr {
        font-size: 20px;
        color: var(--muted-lt);
        transition: color .15s;
    }

    .idtp-page .banner:hover .b-arr {
        color: var(--primario);
    }

    /* recursos */
    .idtp-page .sec-recursos {
        padding: 90px 0;
        background: var(--bg);
    }

    .idtp-page .recursos-layout {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 72px;
        align-items: start;
    }

    .idtp-page .rec-texto .prose {
        margin: 14px 0;
    }

    .idtp-page .rec-lista {
        display: flex;
        flex-direction: column;
        gap: 0;
        border: 1px solid var(--borde);
        border-radius: var(--r-lg);
        overflow: hidden;
        background: var(--bg-white);
    }

    .idtp-page .rec-item {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 20px 24px;
        border-bottom: 1px solid var(--borde);
        text-decoration: none;
        transition: background .15s;
    }

    .idtp-page .rec-item:last-child {
        border-bottom: none;
    }

    .idtp-page .rec-item:hover {
        background: #f8f9fb;
    }

    .idtp-page .rec-icono {
        font-size: 22px;
        width: 44px;
        height: 44px;
        border-radius: var(--r-sm);
        background: var(--surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .idtp-page .rec-info {
        flex: 1;
    }

    .idtp-page .rec-titulo {
        font-size: .9rem;
        font-weight: 700;
        color: var(--texto);
        margin-bottom: 3px;
    }

    .idtp-page .rec-sub {
        font-size: .76rem;
        color: var(--muted);
    }

    .idtp-page .rec-tipo {
        font-size: .68rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--muted-lt);
    }

    /* cta final */
    .idtp-page .sec-cta {
        padding: 30px 0;
        background: var(--bg);
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .idtp-page .sec-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .idtp-page .cta-inner {
        position: relative;
        z-index: 1;
    }

    .idtp-page .cta-inner h2 {
        font-size: 3.2rem;
        font-weight: 800;
        color: var(--azulFuerte);
        margin-bottom: 12px;
    }

    .idtp-page .cta-inner h2 span {
        color: var(--primario);
    }

    .idtp-page .cta-inner p {
        font-size: 16px;
        color: black;
        margin-bottom: 34px;
    }

    .idtp-page .cta-btns {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .idtp-page .cta-btns .btn-ghost {
        color: rgba(255, 255, 255, .7);
        border-color: rgba(255, 255, 255, .25);
    }

    .idtp-page .cta-btns .btn-ghost:hover {
        color: #fff;
        border-color: rgba(255, 255, 255, .6);
        background: rgba(255, 255, 255, .07);
    }

    .idtp-page .cta-contactos {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        flex-wrap: wrap;
        margin-top: 8px;
        border: 1px solid var(--borde);
        border-radius: var(--r-lg);
        overflow: hidden;
        background: var(--bg-white);
        text-align: left;
        max-width: 900px;
        margin: auto;
    }

    .idtp-page .cta-contacto-card {
        flex: 1;
        min-width: 240px;
        padding: 28px 32px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .idtp-page .cta-contacto-sep {
        width: 1px;
        background: var(--borde);
        align-self: stretch;
    }

    .idtp-page .cta-contacto-nombre {
        font-size: 16px;
        font-weight: 700;
        color: var(--azulFuerte);
        margin-bottom: 4px;
    }

    .idtp-page .cta-contacto-dato {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: var(--muted);
    }

    .idtp-page .cta-contacto-dato a {
        color: var(--primario);
        text-decoration: none;
    }

    .idtp-page .cta-contacto-dato a:hover {
        text-decoration: underline;
    }

    .idtp-page .cta-contacto-dato strong {
        color: var(--texto);
        font-weight: 600;
    }

    .idtp-page .cta-dato-icon {
        font-size: 20px;
        flex-shrink: 0;
    }

    .idtp-page .dir-pie {
        margin-top: 16px;
        padding-top: 14px;
        /*border-top: 1px solid var(--borde);*/
        display: flex;
        flex-direction: row;
        gap: 14px;
        width: 100%;
    }

    .idtp-page .dir-accesos {
        display: flex;
        flex-direction: row;
        gap: 10px;
        /*margin-top: 20px;
        padding-top: 18px;
        border-top: 1px solid var(--borde);*/
        width: 30%;
    }

    .idtp-page .dir-acceso-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px;
        background: var(--bg);
        border: 1px solid var(--borde);
        border-radius: var(--r-md);
        text-decoration: none;
        transition: border-color .15s, background .15s;
        cursor: pointer;
        position: relative;
    }

    .idtp-page .dir-acceso-btn:hover {
        border-color: var(--primario);
        background: rgba(0, 167, 136, .04);
    }

    .idtp-page .dir-acceso-btn--disabled {
        opacity: .45;
        pointer-events: none;
    }

    .idtp-page .dir-acceso-icon {
        font-size: 20px;
        width: 38px;
        height: 38px;
        background: var(--bg-white);
        border: 1px solid var(--borde);
        border-radius: var(--r-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .idtp-page .dir-acceso-info {
        flex: 1;
    }

    .idtp-page .dir-acceso-titulo {
        font-size: 12px;
        font-weight: 700;
        color: var(--texto);
        /*margin-bottom: 3px;*/
        margin-left: 10px;
    }

    .idtp-page .dir-acceso-sub {
        font-size: 11px;
        color: var(--muted);
    }

    .idtp-page .dir-acceso-arrow {
        position: absolute;
        top: 5px;
        right: 15px;
        font-size: 18px;
        color: var(--muted-lt);
        transition: color .15s, transform .15s;
    }

    .idtp-page .dir-acceso-btn:hover .dir-acceso-arrow {
        color: var(--primario);
        transform: translate(2px, -2px);
    }

    .idtp-page .idtp-modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9999;
        background: rgba(0, 20, 50, .6);
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .idtp-page .idtp-modal-overlay.abierto {
        display: flex;
    }

    .idtp-page .idtp-modal-box {
        background: var(--bg-white);
        border-radius: var(--r-xl);
        width: 100%;
        max-width: 1000px;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
    }

    .idtp-page .idtp-modal-header {
        padding: 20px 24px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-shrink: 0;
    }

    .idtp-page .idtp-modal-eyebrow {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--primario);
        margin-bottom: 4px;
    }

    .idtp-page .idtp-modal-titulo {
        font-size: 18px;
        font-weight: 800;
        color: var(--azulFuerte);
    }

    .idtp-page .idtp-modal-titulo span {
        color: var(--primario);
    }

    .idtp-page .idtp-modal-cerrar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1.5px solid var(--borde);
        background: transparent;
        cursor: pointer;
        font-size: 20px;
        color: var(--muted);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border-color .15s, color .15s;
        flex-shrink: 0;
    }

    .idtp-page .idtp-modal-cerrar:hover {
        border-color: var(--primario);
        color: var(--primario);
    }

    .idtp-page .idtp-modal-body {
        padding: 16px 24px 24px;
        overflow: auto;
        flex: 1;
        min-height: 0;
    }

    /* proyectos */
    .idtp-page .idtp-modal-box--sm {
        max-width: 780px;
    }

    .idtp-page .art-tab-bar {
        display: flex;
        align-items: flex-end;
        background: var(--azulFuerte);
        border-radius: var(--r-md) var(--r-md) 0 0;
        padding: 10px 10px 0;
        gap: 4px;
    }

    .idtp-page .art-tab-btn {
        position: relative;
        padding: 9px 20px 11px;
        background: rgba(255, 255, 255, .08);
        border: none;
        border-radius: var(--r-sm) var(--r-sm) 0 0;
        font-size: 13px;
        font-weight: 500;
        color: rgba(255, 255, 255, .55);
        cursor: pointer;
        transition: background .15s, color .15s;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

    .idtp-page .art-tab-btn:hover:not(.activo) {
        background: rgba(255, 255, 255, .14);
        color: rgba(255, 255, 255, .85);
    }

    .idtp-page .art-tab-btn.activo {
        background: var(--bg-white);
        color: var(--azulFuerte);
        font-weight: 700;
        padding-bottom: 13px;
        margin-bottom: -2px;
        z-index: 2;
    }

    .idtp-page .art-tab-count {
        font-size: 10px;
        font-weight: 700;
        background: rgba(255, 255, 255, .12);
        color: rgba(255, 255, 255, .5);
        border-radius: 100px;
        padding: 1px 7px;
        line-height: 1.7;
        transition: all .15s;
    }

    .idtp-page .art-tab-btn.activo .art-tab-count {
        background: rgba(0, 167, 136, .12);
        color: var(--primario);
    }

    .idtp-page .art-panel {
        background: var(--bg-white);
        border: 1px solid var(--borde);
        border-top: none;
        border-radius: 0 0 var(--r-md) var(--r-md);
        overflow: hidden;
    }

    .idtp-page .art-toolbar {
        padding: 11px 14px;
        border-bottom: 1px solid var(--borde);
        background: var(--bg);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .idtp-page .art-input-wrap {
        position: relative;
        flex: 1;
        max-width: 300px;
    }

    .idtp-page .art-input-wrap svg {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 13px;
        height: 13px;
        color: var(--muted-lt);
        pointer-events: none;
    }

    .idtp-page .art-input-wrap input {
        width: 100%;
        padding: 7px 10px 7px 30px;
        border: 1px solid var(--borde);
        border-radius: var(--r-sm);
        font-size: 12px;
        background: var(--bg-white);
        color: var(--texto);
        outline: none;
        transition: border-color .15s, box-shadow .15s;
    }

    .idtp-page .art-input-wrap input:focus {
        border-color: var(--primario);
        box-shadow: 0 0 0 3px rgba(0, 167, 136, .08);
    }

    .idtp-page .art-input-wrap input::placeholder {
        color: var(--muted-lt);
    }

    .idtp-page .art-conteo {
        font-size: 12px;
        color: var(--muted);
        background: var(--surface);
        padding: 4px 12px;
        border-radius: 100px;
        border: 1px solid var(--borde);
        font-weight: 500;
        white-space: nowrap;
    }

    .idtp-page .art-scroll-outer {
        position: relative;
    }

    .idtp-page .art-scroll-wrap {
        max-height: 55vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .idtp-page .art-scroll-wrap::-webkit-scrollbar {
        width: 4px;
    }

    .idtp-page .art-scroll-wrap::-webkit-scrollbar-track {
        background: transparent;
    }

    .idtp-page .art-scroll-wrap::-webkit-scrollbar-thumb {
        background: var(--borde);
        border-radius: 10px;
    }

    .idtp-page .art-scroll-fade {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 48px;
        background: linear-gradient(to bottom, transparent, var(--bg-white));
        pointer-events: none;
        transition: opacity .2s;
    }

    .idtp-page .art-table {
        width: 100%;
        border-collapse: collapse;
        table-layout: fixed;
    }

    .idtp-page .art-table thead {
        position: sticky;
        top: 0;
        z-index: 2;
    }

    .idtp-page .art-table thead tr {
        background: var(--azulFuerte);
    }

    .idtp-page .art-table th {
        padding: 9px 12px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: rgba(255, 255, 255, .5);
        text-align: left;
        border-bottom: none;
    }

    .idtp-page .art-table th:first-child {
        border-left: 3px solid var(--primario);
    }

    .idtp-page .art-table td {
        /*padding: 0;*/
        border-bottom: 1px solid var(--borde);
        vertical-align: top;
    }

    .idtp-page .art-table tbody tr:last-child td {
        border-bottom: none;
    }

    .idtp-page .art-table tbody tr:nth-child(odd) {
        background: var(--bg-white);
    }

    .idtp-page .art-table tbody tr:nth-child(even) {
        background: #f7f9fc;
    }

    .idtp-page .art-table tbody tr:hover {
        background: #e8f7f3 !important;
    }

    .idtp-page .art-table tbody tr:hover td:first-child {
        border-left: 3px solid var(--primario);
    }

    .idtp-page .art-table td:first-child {
        border-left: 3px solid transparent;
        transition: border-color .12s;
    }

    .idtp-page .art-td-no {
        width: 5%;
        padding: 13px 10px;
        font-size: 11px;
        color: var(--muted-lt);
        text-align: center;
        vertical-align: middle;
    }

    .idtp-page .art-td-art {
        width: 50%;
        padding: 12px 12px 12px 4px;
    }

    .idtp-page .art-titulo {
        font-size: 14px;
        font-weight: 600;
        color: var(--azulFuerte);
        line-height: 1.4;
        margin-bottom: 5px;
        text-align: justify;
    }

    .idtp-page .art-docente {
        font-size: 12px;
        color: var(--muted);
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .idtp-page .art-av {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: rgba(0, 74, 186, .08);
        border: 1px solid rgba(0, 74, 186, .15);
        display: none;
        /*display: inline-flex;*/
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 8px;
        font-weight: 700;
        color: var(--azul);
    }

    .idtp-page .art-td-rev {
        width: 30%;
        padding: 13px 12px;
        font-size: 12px;
        color: var(--muted);
        vertical-align: top;
        line-height: 1.45;
    }

    .idtp-page .art-td-doi {
        width: 15%;
        padding: 12px 14px 12px 8px;
        vertical-align: top;
    }

    .idtp-page .art-doi-link {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        color: var(--primario);
        font-size: 11px;
        font-weight: 700;
        text-decoration: none;
        padding: 4px 9px;
        border: 1.5px solid rgba(0, 167, 136, .25);
        border-radius: var(--r-sm);
        background: rgba(0, 167, 136, .05);
        white-space: nowrap;
        transition: all .12s;
    }

    .idtp-page .art-doi-link:hover {
        background: rgba(0, 167, 136, .12);
        border-color: var(--primario);
    }

    .idtp-page .art-no-results {
        padding: 48px;
        text-align: center;
        color: var(--muted);
        font-size: 13px;
    }

    .idtp-page .art-footer {
        padding: 8px 14px;
        border-top: 1px solid var(--borde);
        background: var(--bg);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .idtp-page .art-badge {
        font-size: 11px;
        color: var(--muted);
    }

    .idtp-page .art-badge strong {
        color: var(--azulFuerte);
        font-weight: 700;
    }

    .idtp-page .art-scroll-progress {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .idtp-page .art-scroll-lbl {
        font-size: 11px;
        color: var(--muted-lt);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .idtp-page .art-scroll-track {
        width: 72px;
        height: 4px;
        background: var(--borde);
        border-radius: 10px;
        overflow: hidden;
    }

    .idtp-page .art-scroll-fill {
        height: 100%;
        width: 0%;
        background: var(--primario);
        border-radius: 10px;
        transition: width .15s;
    }

    .idtp-page .art-scroll-pct {
        font-size: 11px;
        color: var(--muted);
        min-width: 26px;
        text-align: right;
    }

    .idtp-page .art-ref-txt {
        font-size: 11px;
        color: var(--muted);
        line-height: 1.4;
        display: block;
        padding: 4px 0;
    }

    /* ── Organigrama ── */
    .idtp-page .sec-organigrama-admin {
        padding: 60px 0;
        background: var(--bg-white);
    }

    .idtp-page .org-personas-fila {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        align-items: stretch;
    }

    .idtp-page .org-card {
        background: var(--bg-white);
        border: 1px solid var(--borde);
        border-radius: var(--r-lg);
        padding: 20px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        transition: border-color .15s, box-shadow .15s;
        overflow: hidden;
    }

    .idtp-page .org-card:hover {
        border-color: var(--primario);
        box-shadow: 0 4px 16px rgba(0, 167, 136, .1);
    }

    .idtp-page .org-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--azulFuerte);
        border-radius: var(--r-lg) var(--r-lg) 0 0;
    }

    .idtp-page .org-card--azul::before {
        background: var(--azul);
    }

    .idtp-page .org-card--verde::before {
        background: var(--primario);
    }

    .idtp-page .org-av {
        width: 88px;
        height: 88px;
        border-radius: 50%;
        background: var(--surface);
        border: 2px solid var(--borde);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-bottom: 12px;
        overflow: hidden;
    }

    .idtp-page .org-av img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .idtp-page .org-nombre {
        font-size: 16px;
        font-weight: 700;
        color: var(--azulFuerte);
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .idtp-page .org-cargo {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.5;
        flex: 1;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin-bottom: 6px;
    }

    .idtp-page .org-badge {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 3px 10px;
        border-radius: 100px;
        margin-top: auto;
    }

    .idtp-page .org-badge--rector {
        background: rgba(0, 74, 186, .08);
        color: var(--azul);
        border: 1px solid rgba(0, 74, 186, .2);
    }

    .idtp-page .org-badge--dir {
        background: rgba(0, 167, 136, .08);
        color: var(--primario);
        border: 1px solid rgba(0, 167, 136, .2);
    }

    .idtp-page .org-badge--coord {
        background: rgba(0, 40, 85, .06);
        color: var(--azulFuerte);
        border: 1px solid rgba(0, 40, 85, .15);
    }

    /* responsive */
    @media (max-width: 1020px) {
        .idtp-page .org-personas-fila {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .idtp-page .org-personas-fila {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 1020px) {

        .idtp-page .maestria-layout,
        .idtp-page .sni-layout,
        .idtp-page .dir-cols,
        .idtp-page .org-layout,
        .idtp-page .recursos-layout {
            grid-template-columns: 1fr;
            gap: 36px;
        }

        .idtp-page .maestria-panel {
            min-height: 320px;
        }

        .idtp-page .hbar-sep {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .idtp-page .hero-h1 {
            font-size: 2.4rem;
            letter-spacing: -1px;
        }

        .idtp-page .hero-texto {
            padding-bottom: 36px;
        }

        .idtp-page .hstat-n {
            font-size: 1.6rem;
        }

        .idtp-page .hstat {
            padding: 16px 10px;
        }

        .idtp-page .hero-bottom-bar {
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
            padding: 12px 18px;
        }

        .idtp-page h2.bloque {
            font-size: 2rem;
        }

        .idtp-page .conv-head {
            flex-direction: column;
            align-items: flex-start;
        }

        .idtp-page .banner-meta {
            display: none;
        }

        .idtp-page .sec-maestria,
        .idtp-page .sec-sni,
        .idtp-page .sec-directorio,
        .idtp-page .sec-conv,
        .idtp-page .sec-recursos {
            padding: 64px 0;
        }

        .idtp-page .sec-organigrama {
            padding: 56px 0;
        }

        .idtp-page .sec-cta {
            padding: 64px 0;
        }
    }

    @media (max-width: 600px) {
        .idtp-page .cta-contacto-sep {
            width: 100%;
            height: 1px;
            align-self: auto;
        }

        .idtp-page .cta-contacto-card {
            padding: 22px 20px;
            align-items: center;
        }
    }

    @media (max-width: 480px) {
        .idtp-page .wrap {
            padding: 0 16px;
        }

        .idtp-page .hero-h1 {
            font-size: 4rem;
            letter-spacing: -.5px;
        }

        .idtp-page .hero-texto {
            padding: 0 16px 28px;
        }

        .idtp-page .hero-btns {
            flex-direction: column;
            align-items: center;
        }

        .idtp-page .hero-btns .btn {
            width: 100%;
            justify-content: center;
        }

        .idtp-page .hstat-n {
            font-size: 3.7rem;
        }

        .idtp-page .hstat-l {
            font-size: 1.4rem;
        }

        .idtp-page h2.bloque {
            font-size: 1.75rem;
        }

        .idtp-page .cta-inner h2 {
            font-size: 1.9rem;
        }

        .idtp-page .cta-btns {
            flex-direction: column;
            align-items: center;
        }

        .idtp-page .filtros {
            gap: 6px;
        }

        .idtp-page .f-btn {
            padding: 5px 14px;
            font-size: 14px;
        }

        .idtp-page .panel-nombre {
            font-size: 1.5rem;
        }

        .idtp-page .hero-foto {
            position: absolute;
            inset: 0;
            background: url('https://www.utsjr.edu.mx/build/img/posgrado/fondo2.jpg') left/cover no-repeat;
        }
    }