/* ==========================================================================
   CSS GLOBAL UNTUK KONTEN WIDGET POPULER
   ========================================================================== */
.diy-popular-posts-container {
    list-style: none;
    padding: 0;
    margin: 0;
}
.diy-popular-post-title {
    display: block;
    text-decoration: none;
    color: #222;
    font-weight: 600;
}
.diy-popular-post-meta {
    font-size: 11px;
    color: #777;
}

/* ==========================================================================
   STYLE 1: DEFAULT LIST (Gambar dan Teks Berdampingan)
   ========================================================================== */
.diy-layout-list-default .diy-popular-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}
.diy-layout-list-default .diy-popular-post-thumb img {
    width: 65px; height: 65px; object-fit: cover; border-radius: 4px;
}

/* ==========================================================================
   STYLE 2: MINIMAL GRID (2 Kolom - Sangat Cocok untuk Area Footer)
   ========================================================================== */
.diy-layout-grid-minimal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.diy-layout-grid-minimal .diy-popular-post-thumb img {
    width: 100%; height: 100px; object-fit: cover; border-radius: 4px;
    margin-bottom: 6px;
}

/* ==========================================================================
   STYLE 3: CARD GRID (Kotak Modern Full Background)
   ========================================================================== */
.diy-layout-grid-card .diy-popular-post-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
    height: 120px;
}
.diy-layout-grid-card .diy-popular-post-thumb img {
    width: 100%; height: 100%; object-fit: cover;
}
.diy-layout-grid-card .diy-popular-post-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 10px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85)); /* Efek gelap agar teks terbaca */
}
.diy-layout-grid-card .diy-popular-post-title { color: #fff; font-size: 13px; }
.diy-layout-grid-card .diy-popular-post-meta { color: #ddd; }

/* ==========================================================================
   STYLE 4: NUMBERED LIST (Daftar Populer Bernomor Urut Tanpa Gambar)
   ========================================================================== */
.diy-layout-list-number .diy-popular-post-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.diy-layout-list-number .diy-post-badge {
    background: #0073aa;
    color: #fff;
    font-weight: bold;
    min-width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    font-size: 12px;
}
