.seccion_trabajo {
    display: grid;
    justify-items: center;
    align-items: center;
    grid-template-rows:     70px;
    grid-template-columns:  1fr  350px         1fr;
    grid-template-areas: "  .    trabajo_box  .";
    background:#FFF; 
    border: 3px solid #FC90;
}
 .trabajo_box {
    grid-area: trabajo_box;
    height:70px;
    width:100%;
    display: grid;
    grid-template-rows:  30px  30px;
    grid-template-columns:  10px  auto      1fr  auto     7px 20px     10px;
    grid-template-areas: "  .     trabajo   .    tiraje   .   tamanio  ."
                         "  .     empresa   .    number   .   copias   .";
    background:#FFF4D4; 
    border: 3px solid #FC9;
    padding-top:3px;
} 
.trabajo {
    grid-area: trabajo;
    display: grid;
    justify-items: start;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 19px; 
    color: #000; 
}
.empresa {
    grid-area: empresa;
    display: grid;
    justify-items: start;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 16px; 
    color: #C7A983;
}
.tiraje {
    grid-area: tiraje;
    display: grid;
    justify-items: start;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 16px; 
    color: #6E4019;
    font-weight:bold;
}
.tamanio {
    grid-area: tamanio;
    display: grid;
    justify-items: start;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 14px; 
    color: #555;
}
.number {
    grid-area: number;
    display: grid;
    justify-items: end;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 16px; 
    color: #9AA546; 
}
.copias {
    grid-area: copias;
    display: grid;
    justify-items: end;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 16px; 
    color: #C7A983; 
}