.wp-show-posts {
    .wp-show-posts-single {


        .wp-show-posts-image {
            overflow: hidden;
            z-index: 1;
            position: relative;

            img {
                transition: all 0.4s ease-in;
            }
        }

        header.wp-show-posts-entry-header {
            transform: translateY(-67px);
            opacity: 0;
            z-index: 0;
            position: relative;
            transition: all 0.3s ease-in;

            h2.wp-show-posts-entry-title, h3.wp-show-posts-entry-title {
                font-family: var(--font-cuerpo);
                font-size: 28px !important;
                text-transform: uppercase;
                text-align: center !important;
            }
        }

        &:hover {
            .wp-show-posts-image img {
                transform: scale(1.02);
            }

            header.wp-show-posts-entry-header {
                transform: translateY(0px);
                opacity: 1;
        
            }
        }

        
    }

}

.entry-meta, .comments-area {
    display: none;
}
