
        :root {
            --bg-parchment: #EDE6D3;
            --green-tile: #1F3A34;
            --green-tile-light: #2C5048;
            --brass-accent: #A8823D;
            --brass-light: #C9A24B;
            --text-dark: #2C2C2C;
            --text-muted: #6B6558;
            --card-bg: #F5EFE1;
            --shadow-soft: rgba(31, 58, 52, 0.14);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            background-color: var(--bg-parchment);
            color: var(--text-dark);
            font-family: 'Work Sans', sans-serif;
            line-height: 1.6;
        }

        /* Motif ubin geometris — elemen ciri khas, dipakai di header & footer */
        .pattern-border {
            height: 14px;
            background-image:
                linear-gradient(45deg, var(--brass-accent) 25%, transparent 25%),
                linear-gradient(-45deg, var(--brass-accent) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, var(--brass-accent) 75%),
                linear-gradient(-45deg, transparent 75%, var(--brass-accent) 75%);
            background-size: 18px 18px;
            background-position: 0 0, 0 9px, 9px -9px, -9px 0px;
            opacity: 0.55;
        }

        /* Header */
        header {
            background-color: var(--green-tile);
            color: var(--bg-parchment);
            padding: 1.6rem 1rem 1.4rem;
            text-align: center;
            position: sticky;
            top: 0;
            z-index: 10;
            position: relative;
        }

        .bismillah {
            font-family: 'Amiri', serif;
            font-style: italic;
            font-size: 0.95rem;
            color: var(--brass-light);
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        header h1 {
            font-family: 'Amiri', serif;
            font-weight: 700;
            font-size: clamp(1.5rem, 4vw, 2rem);
            margin-bottom: 0.3rem;
        }

        header .subtitle {
            font-size: 0.9rem;
            color: var(--brass-light);
        }

        .back-btn {
            position: absolute;
            left: 1rem;
            top: 1.2rem;
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid rgba(237, 230, 211, 0.35);
            color: var(--bg-parchment);
            text-decoration: none;
            transition: background-color 0.15s ease, border-color 0.15s ease;
            z-index: 10;
            cursor: pointer;
        }
        .back-btn:hover { background-color: rgba(237, 230, 211, 0.12); border-color: var(--brass-light); }
        .back-btn svg { width: 16px; height: 16px; }

        /* Kontainer Utama */
        .container { max-width: 800px; margin: 0 auto; padding: 2rem 1rem; }

        .intro {
            color: var(--text-muted);
            font-size: 0.98rem;
            max-width: 620px;
            margin-bottom: 1.5rem;
        }

        /* Judul Kategori */
        .category-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Amiri', serif;
            font-weight: 700;
            color: var(--green-tile);
            font-size: 1.4rem;
            border-bottom: 2px solid var(--brass-accent);
            padding-bottom: 0.5rem;
            margin-top: 2.2rem;
            margin-bottom: 1rem;
        }
        .category-title svg { width: 20px; height: 20px; color: var(--brass-accent); flex-shrink: 0; }

        /* Grid Artikel */
        .article-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
        @media (min-width: 600px) {
            .article-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* Kartu Artikel */
        .article-card {
            background-color: var(--card-bg);
            border-left: 4px solid var(--brass-accent);
            border-radius: 6px;
            padding: 1.2rem;
            text-decoration: none;
            color: var(--text-dark);
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            box-shadow: 0 1px 3px var(--shadow-soft);
            transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
        }
        .article-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 14px var(--shadow-soft);
            background-color: #FDF9F1;
        }
        .article-card:focus-visible {
            outline: 2px solid var(--brass-accent);
            outline-offset: 2px;
        }

        .card-top { display: flex; align-items: center; gap: 0.6rem; }
        .card-icon {
            width: 30px;
            height: 30px;
            padding: 6px;
            border-radius: 50%;
            background-color: rgba(168, 130, 61, 0.12);
            color: var(--brass-accent);
            flex-shrink: 0;
        }

        .article-number {
            font-size: 0.75rem;
            color: var(--brass-accent);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .article-card h3 { font-size: 1.05rem; color: var(--green-tile); }
        .article-card p { font-size: 0.85rem; color: var(--text-muted); flex-grow: 1; }

        .card-cta {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--brass-accent);
            margin-top: 0.2rem;
        }
        .article-card:hover .card-cta { color: var(--green-tile); }

        /* Footer */
        footer {
            background-color: var(--green-tile);
            color: var(--bg-parchment);
            padding: 2rem 1rem;
            text-align: center;
        }
        .footer-site {
            font-family: 'Amiri', serif;
            font-size: 1.1rem;
            color: var(--brass-light);
            margin-bottom: 0.3rem;
        }
        .footer-tagline {
            font-size: 0.85rem;
            color: rgba(237, 230, 211, 0.75);
            max-width: 420px;
            margin: 0 auto 1rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: var(--bg-parchment);
            text-decoration: none;
            font-size: 0.88rem;
            border-bottom: 1px solid transparent;
            transition: border-color 0.15s ease, color 0.15s ease;
        }
        .footer-links a:hover { border-color: var(--brass-light); color: var(--brass-light); }
        .footer-copy { font-size: 0.78rem; color: rgba(237, 230, 211, 0.55); }

        @media (prefers-reduced-motion: reduce) {
            .article-card, .back-btn, .footer-links a, .card-cta { transition: none; }
        }
    