/* --- THEME: WHITE MEDIUM SEO --- */
:root {
    --primary: #2e7d32; /* Warna aksen hijau untuk kategori/tombol */
    --dark: #1a1a1a;    /* Warna teks utama */
    --gray: #6b6b6b;    /* Warna meta data */
    --white: #ffffff;   /* Warna background utama */
    --border: #eeeeee;  /* Warna garis tipis */
    --font-heading: 'Merriweather', serif;
    --font-body: 'Inter', sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Merriweather:wght@700&display=swap');

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: var(--white); color: var(--dark); line-height: 1.8; display: flex; flex-direction: column; min-height: 100vh; }

/* Link Style: Medium (Black with Underline) */
a { text-decoration: none; color: inherit; transition: 0.2s; }
.content-body a { 
    border-bottom: 1px solid #ccc; 
    padding-bottom: 1px;
    font-weight: 500;
}
.content-body a:hover { 
    border-bottom: 1px solid var(--dark); 
    color: var(--primary); 
}

.container { max-width: 800px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* Header & Nav (Non-Sticky) */
header { background: var(--white); border-bottom: 1px solid var(--border); padding: 1.5rem 0; position: relative; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.3rem; color: var(--dark); }
nav { display: flex; gap: 20px; font-size: 0.9rem; font-weight: 500; }

/* Hero Post (All Vertical) */
.post-hero {
    width: 100%; min-height: 400px; padding: 80px 0; text-align: center; color: var(--white);
    background-size: cover; background-position: center; display: flex; align-items: center;
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)); /* Sangat Gelap */
}
.post-hero .container { display: flex; flex-direction: column; align-items: center; }
.post-hero h1 { font-family: var(--font-heading); font-size: 2.8rem; line-height: 1.2; margin-bottom: 25px; max-width: 750px; }

/* Info Stack di Kotak Merah (Vertikal) */
.hero-info-stack { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.hero-cat { background: var(--primary); color: var(--white); padding: 5px 15px; border-radius: 4px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.hero-meta-vertical { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 0.9rem; color: #ccc; }

/* Content Body (Clean White) */
.content-body { padding: 40px 0; font-size: 1.2rem; background: var(--white); }
.content-body p { margin-bottom: 2rem; }
.content-body h2 { font-family: var(--font-heading); margin: 3rem 0 1rem; color: var(--dark); }
.content-body img:first-of-type { display: none; } /* Hindari gambar dobel */

/* Footer */
footer { border-top: 1px solid var(--border); padding: 50px 0; text-align: center; color: var(--gray); font-size: 0.85rem; margin-top: auto; }

/* Mobile */
@media (max-width: 768px) { 
    .post-hero h1 { font-size: 2rem; } 
    .hero-meta-vertical { font-size: 0.8rem; }
}