.popular-posts .popular-post{
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid #c3c3c3;
}

.popular-posts .popular-post .popular-post-structure{
    display: flex;
    width: 100%;
}

.popular-posts .popular-post .popular-post-structure .imagen-post{
    width: 268px;
    flex-shrink: 0;
    padding-right: 10px;
}

.popular-posts .popular-post .popular-post-structure .imagen-post img{
    max-height: 250px;
    margin-bottom: 0px;
}

.popular-posts .popular-post .popular-post-structure  .contenido-post{
    flex-grow: 1; /* Ocupa el resto del espacio */
}

.popular-posts .popular-post .popular-post-structure .contenido-post .entry-header .entry-title{
    margin-bottom: 5px !important;
    font-size: 22px !important;
    line-height: 24px !important;
}

.popular-posts .popular-post .popular-post-structure .contenido-post .entry-header .entry-meta{
    margin-bottom: 5px !important;
}

.paginationpost ul li{
    margin-left: 0px !important;
}

@media (max-width: 480px) {
    .popular-posts .popular-post .popular-post-structure{
        flex-direction: column;
    }
    .popular-posts .popular-post .popular-post-structure .imagen-post{
        width: 100%;
        padding-bottom: 10px;
    }
}