/** Search Results Site */
.c-search-title{
    font-size: var(--wp--preset--font-size--x-large);
    text-align: center;
    font-weight: 500;
    margin: 0px;
    padding: 24px 0px;
}

.c-search-results {
    max-width: 90%;
    margin: 30px auto;
    min-height: 250px;
    border: solid 1px silver;
    padding: 25px;
    background: white;
}

.c-search-results__anchor{
    height: 100%;
}

.c-search-results__container {
    display: grid;
    grid-template-columns: 30% 67%;
    grid-gap: 3%;    
    min-height: 200px;
    align-items: center;
}

.c-search-results__imagen {
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.figure-imagen{
    margin: 0px;
    height: 100%;
}

.figure-imagen__imagen {
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: left;
}

.c-search-results__title {
    color: var(--wp--preset--color--negro);
    border-bottom: solid 2px;
    display: inline;
    font-weight: 500;
}

.c-search-results__excerpt, .c-search-results__excerpt a {
    color: var(--wp--preset--color--negro);
}

.read-more {
    color: var(--wp--preset--color--azul-pintuco);
    text-decoration: underline;
    font-weight: 500;
}


@media(max-width:780px) {



    .c-search-results{
        max-width: 80%;
        min-height: auto;
    }

    .c-search-results__container{
        display: block;
        min-height: auto;
    }
}