/* ============================= */
/* KHUSUS HOMEPAGE SAJA */
/* ============================= */
body:not(.item){
/* BACKGROUND HALAMAN */
background:#022c22;
}
/* ============================= */
/* POSTINGAN BOX */
/* ============================= */
body:not(.item) .post-outer{
background:linear-gradient(135deg,#064e3b,#065f46);
padding:10px;
border-radius:12px;
margin-bottom:8px;
border:1px solid rgba(255,255,255,0.06);
box-shadow:0 2px 6px rgba(0,0,0,0.25);
transition:0.3s;
}
/* HOVER HALUS */
body:not(.item) .post-outer:hover{
transform:translateY(-2px);
box-shadow:0 4px 10px rgba(0,0,0,0.35);
}
/* ============================= */
/* JUDUL */
/* ============================= */
body:not(.item) .post-title,
body:not(.item) .entry-title{
color:#ecfdf5;
font-size:15px;
margin:6px 0;
line-height:1.3;
}
/* ============================= */
/* TEKS RINGKAS */
/* ============================= */
body:not(.item) .post-snippet{
color:#d1fae5;
font-size:13px;
margin:5px 0;
line-height:1.4;
}
/* ============================= */
/* GAMBAR */
/* ============================= */
body:not(.item) .post-outer img{
width:100%;
border-radius:10px;
margin:5px 0;
}
/* ============================= */
/* PEMBATAS HALUS */
/* ============================= */
body:not(.item) .post-outer::after{
content:"";
display:block;
height:1px;
background:rgba(255,255,255,0.07);
margin-top:8px;
}
/* ============================= */
/* HILANGKAN JARAK BERLEBIH */
/* ============================= */
body:not(.item) .blog-posts{
margin:0;
padding:0;
}
/* ============================= */
/* RESPONSIF HP */
/* ============================= */
@media(max-width:768px){
body:not(.item) .post-outer{
padding:8px;
margin-bottom:6px;
}
body:not(.item) .post-title{
font-size:14px;
}
body:not(.item) .post-snippet{
font-size:12px;
}
}