:root {
            --primary-maroon: #7A1C1C;
            --secondary-maroon: #5A1212;
            --bg-cream: #FFF9F3;
            --text-dark: #333333;
            --text-muted: #666666;
            --border-color: #F3E5D8;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: #ffffff;
            line-height: 1.8;
        }

        h1, h2, h3, h4, h5, h6, .serif-font {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        .btn-maroon {
            background-color: var(--primary-maroon);
            color: white;
            border-radius: 8px;
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s;
        }
        .btn-maroon:hover {
            background-color: var(--secondary-maroon);
            color: white;
        }

        /* Article Content Styling */
        .article-title {
            font-size: 2.5rem;
            line-height: 1.3;
            color: #1a1a1a;
        }
        .article-meta {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .featured-image-container {
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 35px;
            border: 1px solid var(--border-color);
        }
        .featured-image {
            width: 100%;
            max-height: 450px;
            object-fit: cover;
        }
        .article-body {
            font-size: 1.1rem;
            color: #444444;
        }
        .article-body p {
            margin-bottom: 1.5rem;
        }
        
        /* Blockquote ala STIFIn */
        .article-blockquote {
            background-color: var(--bg-cream);
            border-left: 4px solid var(--primary-maroon);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
            font-style: italic;
        }

        /* Sidebar Widget */
        .sidebar-widget {
            background: var(--bg-cream);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
        }
        .tag-badge {
            background-color: white;
            color: var(--text-dark);
            border: 1px solid var(--border-color);
            text-decoration: none;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8rem;
            display: inline-block;
            margin: 4px;
            transition: all 0.2s;
        }
        .tag-badge:hover {
            background-color: var(--primary-maroon);
            color: white;
            border-color: var(--primary-maroon);
        }

        /* Share Buttons */
        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .share-btn:hover {
            opacity: 0.8;
            color: white;
        }

        /* Footer */
        .footer-bottom {
            background-color: var(--secondary-maroon);
            color: rgba(255,255,255,0.7);
            padding: 15px 0;
            font-size: 0.85rem;
        }