.wp-block .linea-productos{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 30px;
}
.wp-block .linea-productos a{
    pointer-events: none;
}
.linea-productos{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 80%;
}
.linea-productos a{
    flex-basis: 48%;
    box-shadow: 0 0px 10px rgb(0 0 0 / 10%);
    margin-bottom: 5%;
    border: 1px solid rgba(0, 0, 0, 0.125);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}
.linea-productos a:hover{
    top: -2px;
    box-shadow: 0 10px 26px rgb(0 0 0 / 30%)
}
.linea-productos a img{
    width: 100%;
    height: auto;
}