/*
Theme Name: Bloggingpro
Theme URI: https://www.idtheme.com/bloggingpro/
Author: Gian MR
Author URI: http://www.gianmr.com/
Description: Clean design for Blog and news wordpress theme. By FADLI-BATAM
Version: 1.2.6
Requires at least: 5.5
Tested up to: 5.8
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bloggingpro
Tags: two-columns, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, featured-images, microformats, sticky-post, theme-options, threaded-comments, translation-ready, blog, e-commerce

Bloggingpro is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.

*/
/* =========================
   YouTube Style Post Feed
========================= */

.post-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.post-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-card-thumb {
    position: relative;
}

.post-card-thumb img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.post-card-category {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e60023;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

.post-card-body {
    padding: 12px;
}

.post-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
}

.post-card-meta {
    font-size: 12px;
    color: #777;
}
/* Remove sidebar spacing on homepage */
@media (max-width: 768px) {
    #primary {
        width: 100% !important;
        max-width: 100% !important;
        padding-right: 0 !important;
    }
}
/* =========================
   Search Results Layout
========================= */

/* Search layout like YouTube */

.search-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-card {
    display: flex;
    gap: 15px;
	margin:20px;
}

.search-thumb img {
    width: 220px;
    height: 124px;
    object-fit: cover;
    border-radius: 6px;
}

/* Konten kanan */
.search-body {
    flex: 1;
}

/* Judul di atas */
.search-title {
    font-size: 18px;
    margin: 0 0 5px;
}

/* Meta di bawah judul */
.search-meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 6px;
}

/* Excerpt paling bawah */
.search-excerpt {
    font-size: 14px;
    color: #444;
}
/* Bikin seluruh card jadi horizontal */
.search-card-link {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-decoration: none;
}

/* Thumbnail kiri */
.search-thumb {
    flex: 0 0 220px;
}

.search-thumb img {
    width: 100%;
    height: 124px;
    object-fit: cover;
    border-radius: 6px;
}

