.archivo-estadisticas{
    box-sizing:border-box;
    width:100%;
    max-width:920px;
    margin:0 auto 24px;
    padding:0 24px;
}

.archivo-estadisticas__fila{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    overflow:hidden;
    background:#fff;
    border:1px solid #dfe3e8;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}

.archivo-estadisticas__elemento{
    box-sizing:border-box;
    flex:1 1 180px;
    min-width:180px;
    padding:20px 24px;
    color:inherit;
    text-align:center;
    text-decoration:none!important;
    transition:background-color .15s ease,color .15s ease;
}

.archivo-estadisticas__elemento + .archivo-estadisticas__elemento{
    border-left:1px solid #e5e7eb;
}

.archivo-estadisticas__elemento:hover,
.archivo-estadisticas__elemento:focus{
    background:#f5f6f8;
    text-decoration:none!important;
}

.archivo-estadisticas__elemento:hover .archivo-estadisticas__numero{
    color:#00507a;
}

.archivo-estadisticas__numero{
    display:block;
    color:#006b9f;
    font-size:30px;
    font-weight:700;
    line-height:1.15;
}

.archivo-estadisticas__etiqueta{
    display:block;
    margin-top:8px;
    color:#667085;
    font-size:15px;
    line-height:1.3;
}

@media(max-width:760px){

    .archivo-estadisticas{
        padding:0 12px;
    }

    .archivo-estadisticas__elemento{
        flex-basis:50%;
        min-width:50%;
    }

    .archivo-estadisticas__elemento:nth-child(3){
        border-left:0;
    }

    .archivo-estadisticas__elemento:nth-child(n+3){
        border-top:1px solid #e5e7eb;
    }

}

@media(max-width:440px){

    .archivo-estadisticas__elemento{
        flex-basis:100%;
        min-width:100%;
        border-left:0!important;
    }

    .archivo-estadisticas__elemento + .archivo-estadisticas__elemento{
        border-top:1px solid #e5e7eb;
    }

}