/* =====================================================
   TIMESNEWSPLUS HOME SEARCH RESULTS
===================================================== */

#tnp-home-search-results {

    width: 700px;
    max-width: 92%;

    margin: -10px auto 35px;

    background: #fff;

    border: 1px solid #e5e5e5;

    border-radius: 16px;

    box-shadow: 0 20px 50px rgba(0,0,0,.16);

    overflow: hidden;

    box-sizing: border-box;

    position: relative;

    z-index: 99999;
}


/* =====================================================
   INDIVIDUAL SEARCH RESULT
===================================================== */

#tnp-home-search-results .tnp-search-item {

    display: flex;

    align-items: center;

    gap: 22px;

    width: 100%;

    min-height: 130px;

    padding: 18px 22px;

    box-sizing: border-box;

    background: #fff;

    border-bottom: 1px solid #eeeeee;

    text-decoration: none;

    color: inherit;

    transition: background .25s ease;
}

#tnp-home-search-results .tnp-search-item:last-child {

    border-bottom: none;
}

#tnp-home-search-results .tnp-search-item:hover {

    background: #f7f9fc;
}


/* =====================================================
   NEWSPAPER IMAGE
===================================================== */

#tnp-home-search-results .tnp-search-item img,
#tnp-home-search-results .tnp-search-placeholder {

    width: 82px;

    height: 108px;

    min-width: 82px;

    object-fit: cover;

    display: block;

    border-radius: 8px;

    background: #eeeeee;

    box-shadow: 0 5px 15px rgba(0,0,0,.12);
}


/* =====================================================
   SEARCH CONTENT
===================================================== */

#tnp-home-search-results .tnp-search-content {

    flex: 1;

    min-width: 0;
}


/* =====================================================
   SEARCH TITLE
===================================================== */

#tnp-home-search-results .tnp-search-title {

    margin: 0 0 10px;

    color: #111;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.4;
}


/* =====================================================
   SEARCH META
===================================================== */

#tnp-home-search-results .tnp-search-meta {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    color: #777;

    font-size: 13px;

    line-height: 1.5;
}

#tnp-home-search-results .tnp-search-meta span {

    display: inline-flex;

    align-items: center;

    padding: 4px 9px;

    background: #f1f4f8;

    border-radius: 999px;

    color: #555;

    font-size: 11px;

    font-weight: 600;
}


/* =====================================================
   SEARCH HIGHLIGHT
===================================================== */

#tnp-home-search-results mark.tnp-highlight {

    background: #fff1a8;

    color: #111;

    padding: 2px 4px;

    border-radius: 3px;
}


/* =====================================================
   EMPTY SEARCH
===================================================== */

#tnp-home-search-results .tnp-search-empty {

    padding: 25px;

    text-align: center;

    color: #777;

    font-size: 15px;
}



#tnp-home-live-search {
    display: block;

    width: 700px;
    max-width: 92%;

    height: 52px;

    margin: 25px auto;

    padding: 0 20px;

    box-sizing: border-box;

    border: 1px solid #dcdcdc;

    border-radius: 12px;

    background: #fff;

    color: #222;

    font-size: 16px;

    outline: none;

    box-shadow: 0 6px 20px rgba(0,0,0,.08);

    transition: .25s ease;
}

#tnp-home-live-search:focus {
    border-color: #0d47a1;

    box-shadow: 0 8px 25px rgba(13,71,161,.15);
}

#tnp-home-live-search::placeholder {
    color: #888;
    font-size: 15px;
}
/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    #tnp-home-search-results {

        width: 94%;

        max-width: 94%;
    }

    #tnp-home-search-results .tnp-search-item {

        gap: 15px;

        min-height: 105px;

        padding: 15px;
    }

    #tnp-home-search-results .tnp-search-item img,
    #tnp-home-search-results .tnp-search-placeholder {

        width: 65px;

        height: 86px;

        min-width: 65px;
    }

    #tnp-home-search-results .tnp-search-title {

        font-size: 15px;
    }

    #tnp-home-search-results .tnp-search-meta {

        gap: 5px;

        font-size: 11px;
    }

}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 480px) {

    #tnp-home-search-results {

        width: 94%;

        max-width: 94%;
    }

    #tnp-home-search-results .tnp-search-item {

        gap: 12px;

        padding: 12px;
    }

    #tnp-home-search-results .tnp-search-item img,
    #tnp-home-search-results .tnp-search-placeholder {

        width: 58px;

        height: 76px;

        min-width: 58px;
    }

    #tnp-home-search-results .tnp-search-title {

        font-size: 14px;
    }

}