 :root {
            --primary-color: #193669;
            --text-color: #333;
            --light-gray: #f4f4f4;
            --meta-color: #777;
        }

        body {
            margin: 0;
            padding-top: 80px; /* Jarak untuk header */
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #fff;
        }
         * {
            box-sizing: border-box; 
        }

        /* --- Article Header Section --- */
        .article-header {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
            text-align: center;
        }

        .back-link {
            display: inline-block;
            text-decoration: none;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 20px;
            transition: 0.3s;
        }

        .article-meta {
            font-size: 0.9rem;
            color: var(--meta-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .article-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            line-height: 1.2;
            color: #111;
            margin-bottom: 30px;
        }

        .featured-image {
            width: 100%;
            max-width: 1000px;
            height: 500px;
            margin: 0 auto 50px;
            display: block;
            object-fit: cover;
            border-radius: 15px;
        }

        /* --- Article Content --- */
        .article-body {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            font-size: 1.15rem;
            text-align: justify;
        }

        .article-body p { margin-bottom: 25px; }
        .article-body img { 
            max-width: 100%; 
            border-radius: 8px; 
            margin: 20px 0; 
        }

        /* --- Latest Posts Section (Gambar 3) --- */
        .latest-section {
            background-color: var(--light-gray);
            padding: 80px 20px;
            margin-top: 80px;
        }

        .section-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .latest-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .latest-header h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
        }

        .latest-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .post-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s;
        }

        .post-card:hover { transform: translateY(-10px); }

        .post-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .post-card-content { padding: 20px; }
        .post-card-content h4 {
            margin: 0 0 10px;
            font-size: 1.1rem;
            line-height: 1.4;
        }

        .post-stats {
            font-size: 0.8rem;
            color: var(--meta-color);
        }

        /* --- Responsive Poco X7 Pro / Mobile --- */
        @media (max-width: 768px) {
            .article-title { font-size: 2rem; }
            .featured-image { height: 300px; }
            .latest-grid { grid-template-columns: 1fr; }
            .article-header { padding: 20px; }
        }