.bloque-ultimos-documentos {
    background: #ffffff;
    border-radius: 6px;
    padding: 28px 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* HEADER */
.ultimos-doc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #0d5cab;
    padding-bottom: 10px;
}

.ultimos-doc-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #005BBB;
}

/* BOTÓN */
.btn-ver-todos-docs {
    border: 1px solid #0d5cab;
    color: #0d5cab;
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-ver-todos-docs:hover {
    background: #0d5cab;
    color: #fff;
}

.lista-documentos-home {
    display: flex;
    flex-direction: column;
}

/* ITEM MÁS LIMPIO */
.item-documento-home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0; /* 🔥 sin padding lateral */
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
    transition: all 0.2s ease;
}


.item-documento-home {
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}

/* HOVER MÁS SUTIL */
.item-documento-home:hover {
    background: transparent;
}

/* FECHA MÁS INSTITUCIONAL */
.item-documento-fecha {
    font-size: 13px;
    color: #005BBB; /* 🔥 color institucional */
    font-weight: 600;
    margin-bottom: 3px;
}

/* TÍTULO MÁS LEGIBLE */
.item-documento-titulo {
    font-size: 15px;
    color: #222;
    line-height: 1.5;
}

/* ICONO MÁS LIMPIO */
.item-documento-icono {
    font-size: 18px;
    color: #d32f2f;
}