/* BLOG */
.wp-show-posts-single {
    padding-bottom: 50px;
    margin-bottom: 50px !important;
    border-bottom: 1px solid var(--c-gris-medio);
    position: relative;
}

.wp-show-posts-single::before {
    content: "";
    height: 62px;
    width: 62px;
    right: 10px;
    position: absolute;
    top: 30%;
    background-image: url('/wp-content/uploads/2024/08/flecha-blog.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: var(--all-transition);
}

.wp-show-posts-single:hover::before{
    right: 0px;
    transition: var(--all-transition);
}

.wp-show-posts-single:last-child {
    border: none !important;
}

.wp-show-posts-single .wp-show-posts-image {
    margin-bottom: 0px;
}

.wp-show-posts-single .wp-show-posts-entry-title {
    padding-top: 50px;
}

.wp-show-posts-single .wp-show-posts-entry-title a {
    color: var(--c-primario);
    transition: var(--all-transition);
}

.wp-show-posts-inner {
    align-items: center;
}

.wp-show-posts-single .wp-show-posts-entry-title a:hover {
    color: var(--c-secundario);
    transition: var(--all-transition);
}

.wp-show-posts-image img {
    border-radius: 150px;
}   

.wp-show-posts-image.wpsp-image-left{
    margin-right: 50px !important;
    width: 40%;
}

.wp-show-posts-entry-summary {
    padding-right: 100px;
}