/* ---------------------------------------------
   ESTILOS BASE PARA PUBLICACIONES

--------------------------------------------- */

.hz-publicaciones {
  padding: 5rem 0rem 0rem; /*altura con respecto ala barra de menu*/
  background: #fafafa;
  font-family: "Segoe UI", sans-serif;
  line-height: 1.65;
  color: #1c1c1c;
}

.hz-header h1 {
  font-size: 2rem;
  color: #003366;
  text-align: center;
  margin-bottom: 0.3rem;
}

.hz-subtitulo {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 760px;
  margin-inline: auto;
}

/* CONTENEDOR PRINCIPAL */
.hz-publicacion {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}


/* CUERPO PRINCIPAL */
.hz-publicacion-cuerpo {
  flex: 3;
}

.hz-noticia {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.hz-imagen-principal img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/* TITULAR Y METADATA */
.hz-titulo-noticia {
  font-size: 1.6rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 0.8rem;
}

.hz-meta {
  font-size: 0.9rem;
  color: #666;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* CUERPO DEL ARTÍCULO */
.hz-contenido p {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: justify;
}

.hz-contenido h2,
.hz-contenido h3 {
  font-size: 1.2rem;
  color: #004080;
  margin-top: 2rem;
  border-left: 4px solid #cce0f5;
  padding-left: 0.8rem;
}

.hz-contenido ul,
.hz-contenido ol {
  margin-top: 1rem;
  margin-left: 2rem;
  padding-left: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.hz-contenido ul li {
  list-style-type: disc;
}

.hz-contenido ol li {
  list-style-type: upper-roman;
}

.hz-contenido li::marker {
  color: #003366;
  font-weight: bold;
}

/* SIDEBAR LATERAL */
.hz-sidebar {
  flex: 1;
  background: #f5f7fa;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.hz-sidebar h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 1rem;
}

/* BOTONES O LLAMADAS A LA ACCIÓN */
.hz-btn {
  background-color: #003366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hz-btn:hover {
  background-color: #00549c;
}

/* SEPARADOR */
.hz-divider {
  border: none;
  border-top: 2px dashed #ccc;
  margin: 40px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hz-publicacion {
    flex-direction: column;
  }

  .hz-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hz-sidebar {
    position: static;
    margin-top: 2rem;
  }
}



/* 
 video se muestre igual que una imagen */
.hz-video-principal {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 24px;
}

.hz-video-principal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* ver documento Asociado de ser una imagen*/
.hz-documento-oculto {
  display: none;
  margin-top: 20px;
  text-align: center;
}
.hz-documento-oculto img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.hz-ver-documento {
  text-align: center;
  margin: 20px 0;
}
.hz-ver-documento button {
  background-color: #002b5e;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.hz-ver-documento button:hover {
  background-color: #003b85;
}


/*slider de navegacion de mas de dos imagenes*/
.hz-doc-preview {
  text-align: center;
  margin-top: 3rem;
}

.hz-btn-doc {
  background-color: #f0f4f8;
  color: #003366;
  border: 1px solid #cce0f5;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.hz-btn-doc:hover {
  background-color: #e2efff;
}

.hz-slider-container {
  margin: 2rem auto 0;
  max-width: 100%;
  width: 600px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
}

.hz-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: max-content;
}

.hz-slides img {
  width: 100%;
  max-width: 600px;
  flex-shrink: 0;
  object-fit: contain;
}

.hz-indicators {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 8px;
}

.hz-indicator {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.hz-indicator.active {
  background: #003366;
}

/* Estilo exclusivo para el header de la portada de Publicaciones */
.hz-header-publicaciones {
  padding: 10px 0 5px;
}

.hz-header-publicaciones-flex {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.hz-header-publicaciones-titulo {
  font-size: 1.9rem;
  font-weight: 700;
  color: #003366;
  text-align: left;
  margin-bottom: 5px;
}

.hz-header-publicaciones-subtitulo {
  font-size: 1.2rem;
  color: #666;
  text-align: left;
  margin-top: -15px;
  margin-bottom: 10px;
}

/*galeria inferir pagina 69*/

.hz-evidencia-documental {
  max-width: 500px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.hz-evidencia-documental h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 1.5rem;
  text-align: left;
}

.hz-doc-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.hz-doc-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hz-evidencia-documental {
    max-width: 100%;
  }
}



/* ============================================
   NUEVOS COMPONENTES PARA PUBLICACIÓN N.° 96
   ============================================ */

/* CASE BOX */
.hz-case-box {
    background: #0B2240;
    border-radius: 3px;
    padding: 24px 30px;
    margin: 28px 0;
    border-left: 3px solid #C8A030;
    position: relative;
    overflow: hidden;
}

.hz-case-box::after {
    content: '⚖';
    position: absolute;
    bottom: -14px;
    right: 16px;
    font-size: 80px;
    opacity: .05;
    pointer-events: none;
}

.hz-case-title {
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #C8A030;
    font-weight: 600;
    margin-bottom: 16px;
}

.hz-case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
}

.hz-case-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0;
}

.hz-case-row:last-child {
    border-bottom: none;
}

.hz-case-k {
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(200, 160, 48, 0.5);
    margin-bottom: 3px;
    font-weight: 400;
}

.hz-case-v {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
}

.hz-case-v.reserved {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: .05em;
}

/* CHIPS */
.hz-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0;
}

.hz-chip {
    background: #0B2240;
    color: rgba(255, 255, 255, 0.65);
    padding: 4px 12px;
    border-radius: 2px;
    font-size: 11px;
    letter-spacing: .04em;
    font-weight: 300;
    border: 1px solid rgba(200, 160, 48, 0.2);
}

/* ACTIONS GRID */
.hz-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.hz-action-card {
    background: #ffffff;
    border: 1px solid #EDE8DF;
    border-radius: 6px;
    padding: 18px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.hz-action-card:hover {
    box-shadow: 0 4px 14px rgba(11, 34, 64, 0.08);
    border-color: rgba(200, 160, 48, 0.4);
}

.hz-ac-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0B2240;
    color: #C8A030;
    display: flex;
    align-items: center;
    justify-content: center;
  
    flex-shrink: 0;
    margin-top: 2px;
}

.hz-ac-text {
    font-size: 13px;
    line-height: 1.65;
    color: #3d5268;
    font-weight: 300;
}

.hz-ac-text strong {
    font-weight: 600;
    color: #1a2a3a;
}

/* TIMELINE */
.hz-timeline {
    margin: 28px 0;
    position: relative;
    padding-left: 28px;
}

.hz-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 1.5px;
    background: linear-gradient(to bottom, #C8A030, rgba(200, 160, 48, 0.1));
}

.hz-tl-i {
    position: relative;
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.hz-tl-dot {
    position: absolute;
    left: -20px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #C8A030;
    background: #F8F5EF;
    flex-shrink: 0;
}

.hz-tl-dot.on {
    background: #C8A030;
}

.hz-tl-date {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #C8A030;
    font-weight: 600;
    min-width: 65px;
    margin-top: 2px;
    flex-shrink: 0;
}

.hz-tl-desc {
    font-size: 13px;
    line-height: 1.65;
    color: #3d5268;
    font-weight: 300;
}

.hz-tl-desc strong {
    font-weight: 600;
    color: #1a2a3a;
}

/* VOUCHER */
.hz-voucher-section {
    margin: 28px 0;
}

.hz-v-caption {
    text-align: center;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #6b87a0;
    margin-bottom: 10px;
}

.hz-voucher-wrap {
    max-width: 400px;
    margin: 0 auto;
}

.hz-voucher {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(11, 34, 64, 0.12);
    overflow: hidden;
    font-family: "Source Sans 3", "Helvetica Neue", sans-serif;
}

.hz-vhdr {
    background: #004A97;
    padding: 12px 18px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hz-vhdr-logo {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
    font-family: Arial, sans-serif;
}

.hz-vhdr-info {
    text-align: right;
}

.hz-vhdr-tag {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hz-vhdr-type {
    font-size: 11px;
    color: #fff;
    font-weight: 600;
}

.hz-vbody {
    padding: 12px 18px;
}

.hz-vr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 10px;
}

.hz-vr:last-child {
    border-bottom: none;
}

.hz-vr-k {
    font-size: 9px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 400;
    white-space: nowrap;
}

.hz-vr-v {
    font-size: 11px;
    color: #1a1a1a;
    font-weight: 500;
    text-align: right;
}

.hz-vr-v.rb {
    background: #d4d4d4;
    color: transparent;
    border-radius: 3px;
    padding: 2px 8px;
    user-select: none;
    font-size: 10px;
    min-width: 100px;
}

.hz-vr-v.amount {
    font-size: 17px;
    font-weight: 800;
    color: #004A97;
    font-family: Arial, sans-serif;
}

.hz-vr-monto {
    padding-top: 8px;
    margin-top: 4px;
    border-top: 1px solid #e0e0e0;
}

.hz-vfoot {
    background: #f7f9fc;
    border-top: 1px solid #e8ecf2;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hz-vf-status-label {
    font-size: 8px;
    color: #aaa;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.hz-vf-status {
    font-size: 11px;
    color: #1db954;
    font-weight: 700;
}

.hz-stamp {
    width: 48px;
    height: 48px;
    border: 2px solid #1db954;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #1db954;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
    transform: rotate(-12deg);
}

.hz-v-note {
    text-align: center;
    font-size: 9px;
    color: #6b87a0;
    margin-top: 8px;
    font-style: italic;
}

/* RESULT BLOCK */
.hz-result-block {
    background: #0B2240;
    border-radius: 6px;
    padding: 32px 40px;
    margin: 32px 0;
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hz-result-block::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 160, 48, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hz-rb-text {
    flex: 1;
}

.hz-rb-label {
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #C8A030;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hz-rb-label::before {
    content: '';
    width: 16px;
    height: 1.5px;
    background: #C8A030;
}

.hz-rb-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 10px;
}

.hz-rb-title em {
    font-style: italic;
    color: #dbb84a;
}

.hz-rb-p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}

.hz-rb-p strong {
    color: rgba(255, 255, 255, 0.85);
}

.hz-rb-nums {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.hz-rn {
    text-align: center;
}

.hz-rn-big {
   

    color: #C8A030;
    line-height: 1;
    display: block;
}

.hz-rn-lbl {
    font-size: 8px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(200, 160, 48, 0.45);
    display: block;
    margin-top: 3px;
}

.hz-rn-sep {
    width: 1px;
    height: 24px;
    background: rgba(200, 160, 48, 0.2);
    margin: 0 auto;
}

/* Responsive para nuevos componentes */
@media (max-width: 768px) {
    .hz-case-grid {
        grid-template-columns: 1fr;
    }
    
    .hz-actions-grid {
        grid-template-columns: 1fr;
    }
    
    .hz-result-block {
        flex-direction: column;
        padding: 24px;
    }
    
    .hz-rb-nums {
        flex-direction: row;
        justify-content: center;
    }
    
    .hz-rn-sep {
        width: 20px;
        height: 1px;
    }
    
    .hz-tl-i {
        flex-wrap: wrap;
    }
    
    .hz-tl-date {
        min-width: 100%;
        margin-bottom: 4px;
    }
    
    .hz-tl-dot {
        top: 2px;
    }
}