            /* ══════════════════════════════════════
                SECCIÓN PULSO JURÍDICO 
                Autor: jorge.torres@durango.gob.mx
            ══════════════════════════════════════ */
            .pulso-section {
                width: 100%;
                padding: 50px 0 40px;
                background: #f4f6f9;
            }

            .pulso-header {
                text-align: center;
                margin-bottom: 36px;
                padding: 0 20px;
            }

            .pulso-section-title {
                font-family: 'PT Serif', serif;
                font-size: 2rem;
                font-weight: 700;
                color: #1a1a2e;
                margin-bottom: 10px;
            }

            .pulso-divider {
                width: 60px;
                height: 3px;
                background: #42737e;
                margin: 0 auto;
                border-radius: 2px;
            }

            /* ── Grid 4 columnas full width ── */
            .pulso-grid-full {
                display: grid;
                grid-template-columns: 1.4fr 1fr 1fr 1fr;
                gap: 6px;
                width: 100%;
                align-items: center;
                /* ← cada celda crece según su propio contenido */
                background: #f4f6f9;
            }

            /* ── Revista: contenedor ── */
            .pulso-revista {
                position: relative;
                overflow: hidden;
                display: block;
                text-decoration: none;
                cursor: pointer;
                background: #fff;
                border-radius: 6px;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

            .pulso-revista:hover {
                transform: translateY(-4px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
            }

            /* ── Imagen: completa, sin recorte ── */
            .pulso-revista img {
                width: 100%;
                height: auto;
                /* ← altura automática = imagen completa */
                display: block;
                object-fit: contain;
                /* ← nunca recorta */
                transition: transform 0.4s ease;
            }

            .pulso-revista:hover img {
                transform: scale(1.03);
            }

            /* ── Overlay hover ── */
            .pulso-overlay {
                position: absolute;
                inset: 0;
                background: rgba(66, 115, 126, 0.80);
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                transition: opacity 0.3s ease;
            }

            .pulso-revista:hover .pulso-overlay {
                opacity: 1;
            }

            .pulso-overlay span {
                color: #fff;
                font-weight: 700;
                font-size: 0.9rem;
                letter-spacing: 2px;
                text-transform: uppercase;
                border: 2px solid rgba(255, 255, 255, 0.75);
                padding: 7px 18px;
                border-radius: 4px;
            }

            /* ── Col 2: dos revistas apiladas ── */
            .pulso-col-stack {
                display: flex;
                flex-direction: column;
                gap: 6px;
            }

            /* ── Col 4: panel info ── */
            .pulso-info-panel {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 22px;
                text-align: center;
                padding: 36px 24px;
                background: #fff;
                border-radius: 6px;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
                height: 100%;
            }

            .pulso-logo {
                max-width: 200px;
                width: 100%;
            }

            .pulso-link-lineamientos {
                display: inline-block;
                padding: 10px 26px;
                border: 2px solid #42737e;
                border-radius: 4px;
                color: #42737e;
                font-weight: 700;
                font-size: 0.88rem;
                letter-spacing: 2px;
                text-decoration: none;
                transition: background 0.25s, color 0.25s;
            }

            .pulso-link-lineamientos:hover {
                background: #42737e;
                color: #fff;
                text-decoration: none;
            }

            .pulso-correo-block {
                display: flex;
                flex-direction: column;
                gap: 6px;
            }

            .pulso-correo-label {
                font-weight: 700;
                font-size: 0.78rem;
                letter-spacing: 1.5px;
                color: #c0392b;
                text-transform: uppercase;
            }

            .pulso-correo-email {
                color: #333;
                font-size: 0.88rem;
                word-break: break-all;
                text-decoration: none;
            }

            .pulso-correo-email:hover {
                color: #c0392b;
            }

            /* ── Aviso Visitaduría ── */
            .pulso-aviso-wrap {
                padding: 22px 40px 0;
            }

            .pulso-aviso {
                background: #fff;
                border-left: 4px solid #42737e;
                padding: 15px 20px;
                border-radius: 0 8px 8px 0;
                font-size: 0.9rem;
                color: #555;
                line-height: 1.7;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
            }

            .pulso-aviso i {
                color: #42737e;
                margin-right: 6px;
            }

            .pulso-aviso a {
                color: #c0392b;
                font-weight: 600;
            }

            .pulso-aviso a:hover {
                text-decoration: underline;
            }

            /* ── Responsive ── */
            @media (max-width: 992px) {
                .pulso-grid-full {
                    grid-template-columns: 1fr 1fr;
                }

                .pulso-info-panel {
                    grid-column: span 2;
                }
            }

            @media (max-width: 576px) {
                .pulso-grid-full {
                    grid-template-columns: 1fr;
                }

                .pulso-info-panel {
                    grid-column: span 1;
                }

                .pulso-aviso-wrap {
                    padding: 18px 16px 0;
                }
            }