:root {
            --noble-dark: #1e1e1e;
            --deep-red: #8b0000;
            --accent-gold: #c5a059;
            --soft-bg: #f4f1ea;
        }

        body.custom-independence-page {
            background-color: var(--soft-bg) !important;
            margin: 0; padding: 0;
            font-family: 'Georgia', serif;
            display: block;
            overflow-x: hidden;
        }

        body.custom-independence-page::before {
            content: "";
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('https://www.transparenttextures.com/patterns/old-paper.png');
            opacity: 0.3;
            pointer-events: none;
            z-index: 1;
        }

        .page-main-wrapper {
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-banner {
            width: 100%;
            height: 60vh;
            background-image: url('https://gorgasliani.com/wp-content/uploads/2026/02/ზვიადი-და-მერაბბი.jpg');
            background-size: cover;
            background-position: center 20%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .content-container {
            max-width: 1100px;
            margin: 20px auto 0;
            padding: 0 15px 60px;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        /* ჩარჩოს ლინკის სტილი */
        .card-link {
            text-decoration: none !important;
            color: inherit !important;
            display: block;
            transition: transform 0.3s ease;
        }

        .article-card {
            background: rgba(255, 255, 255, 0.96);
            padding: 30px;
            height: 100%;
            border-top: 5px solid var(--deep-red);
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
            box-sizing: border-box;
        }

        .card-link:hover {
            transform: translateY(-8px);
        }

        .card-link:hover .article-card {
            box-shadow: 0 12px 35px rgba(139, 0, 0, 0.15);
            background: #fff;
        }

        .badge {
            background: var(--accent-gold);
            color: white;
            padding: 4px 12px;
            font-size: 0.8rem;
            font-weight: bold;
            margin-bottom: 15px;
            display: inline-block;
            width: fit-content;
        }

        .article-card h2, .article-card h3 { 
            color: var(--deep-red); 
            margin: 0 0 15px 0;
            font-size: 1.5rem;
        }

        .article-card p { 
            line-height: 1.8; 
            text-align: justify; 
            color: #333; 
            font-size: 1rem; 
            margin: 0;
        }

        .quote-block {
            text-align: center;
            padding: 40px 15px;
            border-top: 1px solid var(--accent-gold);
            border-bottom: 1px solid var(--accent-gold);
            margin: 40px 0;
        }

        .quote-block blockquote {
            font-size: clamp(1.2rem, 5vw, 2rem);
            font-style: italic;
            color: var(--deep-red);
            margin: 0;
        }

        @media (max-width: 600px) {
            .hero-banner { height: 40vh; }
            .articles-grid { grid-template-columns: 1fr; }
        }
