.grilla-post{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 70px;
}
.grilla-post .grilla-post-item{
    gap: 24px;
}
.grilla-post .grilla-post-item .grilla-post__imagen,
.grilla-post .grilla-post-item .grilla-post__texto{
    flex-basis: 50%;
}
.grilla-post .grilla-post-item .grilla-post__texto h2{
    font-size: 23px;
    line-height: 28px;
}
.grilla-post .grilla-post-item .grilla-post__texto h2 a{
    font-weight: 700;
    font-size: 23px;
    line-height: 28px;
    color: #A9107B;
    text-decoration: none;
}
.grilla-post .grilla-post-item .grilla-post__texto p{
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #4D4C4D;
}
.grilla-post .grilla-post-item .grilla-post__texto .ver-mas{
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: #A9107B;
    text-decoration: none;
}
.grilla-post .grilla-post-item img{
    max-width: 100%;
    height: auto;
}

@media (max-width: 576px){
    .grilla-post{
        gap: 15px;
        grid-template-columns: repeat(2,calc(52% - 15px));
    }
    .grilla-post .grilla-post-item{
        margin-bottom: 30px;
    }
    .grilla-post .grilla-post-item .grilla-post__texto{
        word-break: break-word;
    }
    .grilla-post .grilla-post-item .grilla-post__texto h2,
    .grilla-post .grilla-post-item .grilla-post__texto h2 a{
        font-size: 19px;
        line-height: 23px;
    }
    .grilla-post .grilla-post-item .grilla-post__texto .ver-mas{
        font-size: 16px;
    }
}
@media (min-width: 577px) and (max-width: 768px){
    .grilla-post{
        gap: 15px;
    }
    .grilla-post .grilla-post-item{
        margin-bottom: 30px;
    }
    .grilla-post .grilla-post-item .grilla-post__texto h2,
    .grilla-post .grilla-post-item .grilla-post__texto h2 a{
        font-size: 21px;
        line-height: 25px;
    }
    .grilla-post .grilla-post-item .grilla-post__texto .ver-mas{
        font-size: 16px;
    }
}
@media (min-width: 769px) and (max-width: 991px){
    .grilla-post{
        gap: 15px;
    }
    .grilla-post .grilla-post-item .grilla-post__imagen{
        flex-basis: 35% !important;
    }
    .grilla-post .grilla-post-item .grilla-post__texto{
        flex-basis: 65% !important;
    }
}