/*
Theme Name: The Batch Lady
Theme URI: https://thebatchlady.com
Description: The Batch Lady Theme
Author: Strive Digital
Author URI: https://strive.digital/
Version: 1.0
License: Copyright Strive Digital Ltd. Use only under license.
Text Domain: strive
*/

/*===============================
*  Search Style
================================*/
body.search .posts-holder {
    border-top: 4px solid #f9f9f9;
    padding-top: 30px;
}

body.search .posts-holder .post-holder {
    border-bottom: 4px solid #f9f9f9;
    padding-bottom: 30px;
}

body.search article.search-result {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}

body.search article.search-result .post-thumb {
    width: 15%;
    max-width: 170px;
    margin-right: 30px;
}

body.search article.search-result .post-thumb img {
    max-width: max-content;
}

body.search article.search-result #post-content {
    max-width: 100%;
}

body.search article.search-result .post-thumb+div#post-content {
    width: 85%;
}


@media only screen and (max-width: 768px) {

    /* For mobile phones: */
    body.search article.search-result .post-thumb {
        width: 25%;
        max-width: 120px;
        margin-right: 10px;
    }

    body.search article.search-result #post-content {
        width: 100%;
    }

    body.search article.search-result .post-thumb img {
        max-width: 100%;
    }

    body.search article.search-result .post-thumb+div#post-content {
        width: 75%;
    }

    body.search article.search-result #post-content a.title-link {
        font-size: 16px;
    }

    body.search article.search-result #post-content .excerpt {
        font-size: 14px;
        margin-top: 5px;
    }

    body.search article.search-result #post-content .meta {
        display: none;
    }

}