/* ===================================
   GAZHAL DOF
   =================================== */

/* contenedor principal */

.gzl-dof-container{
    max-width:1100px;
    margin:auto;
    background:white;
    border-radius:var(--gzl-radius);
    box-shadow:var(--gzl-shadow-sm);
    padding:18px 22px;
}

/* ================================
   ESTRUCTURA DOF
================================ */

.dof-seccion{
    background:#eef2f7;
    padding:8px 12px;
    margin-top:18px;
    font-weight:600;
    border-left:4px solid var(--gzl-primary);
}

.dof-poder{
    background:#f7f9fc;
    padding:6px 12px;
    font-weight:600;
    color:#2c3e50;
}

.dof-dep{
    color:var(--gzl-primary);
    font-weight:600;
    margin-top:6px;
}

/* ================================
   PUBLICACIONES
================================ */

.dof-item{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.dof-item:hover{
    background:#f9fbfd;
}

.dof-titulo{
    flex:1;
    font-size:13px;
    line-height:1.4;
    color:#2c3e50;
}

/* ================================
   LINKS
================================ */

.link-dof{
    color:#2c3e50;
    text-decoration:none;
}

.link-dof:hover{
    text-decoration:underline;
}

.link-gazhal{
    text-decoration:none;
}

/* ================================
   ICONOS
================================ */

/* ===============================
   ICONOS DOF GAZHAL
================================ */

.cloud-wrap,
.book-wrap{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:28px;
    height:28px;

    border-radius:50%;

    background:#eaf2f8;

    transition:.2s;
}

/* nube web */

.cloud-wrap i{
    color:#0f2f76;
}

/* libro interno */

.book-wrap i{
    color:#0093C9;
}

.cloud-wrap:hover,
.book-wrap:hover{
    background:#dde7f1;
    transform:scale(1.08);
}


/* ================================
   BOTÓN DOF OFICIAL
================================ */

.dof-oficial{
    white-space:nowrap;
    font-size:12px;
    color:var(--gzl-primary);
    text-decoration:none;
}

.dof-oficial:hover{
    text-decoration:underline;
}

/* ================================
   FECHA / HEADER
================================ */

.dof-fecha{
    text-align:center;
    font-size:14px;
    margin:10px 0;
    color:#2c3e50;
}
.indicador-wrap{
display:inline-flex;
align-items:center;
justify-content:center;

width:28px;
height:28px;

border-radius:50%;

background:#eaf2f8;
}

.indicador-wrap i{
color:#0093C9;
}
/* titulo normal */

.dof-titulo{
    flex:1;
    font-size:13px;
    line-height:1.4;
    color:#2c3e50;
}

/* titulo clickeable */

.dof-link{
    color:#0f2f76;
    text-decoration:none;
    font-weight:500;
}

.dof-link:hover{
    color:#0093C9;
    text-decoration:underline;
}
/* HEADER */
.dof-header{
    background:#f1f5f9;
    color:#0f2f76;
    padding:15px 18px;
    border-radius:10px;
    margin-bottom:15px;
    border-left:4px solid #0093C9;
}

.dof-titulo{
    font-size:15px;
    font-weight:600;
    line-height:1.5;
    text-transform:none; /* š„ QUITA MAYĆSCULAS */
}

.dof-meta{
    font-size:13px;
    opacity:.85;
}