        /* Journal-specific styles */
        .journal-hero {
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .journal-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .journal-hero-text {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
            color: white;
            padding: 4rem 2rem 2rem;
            text-align: left;
        }

        .journal-hero-text h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
            line-height: 1.2;
        }

        .journal-hero-text .meta {
            display: flex;
            gap: 2rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .journal-hero-text .excerpt {
            font-size: 1.3rem;
            line-height: 1.6;
            opacity: 0.9;
            max-width: 800px;
        }

        /* Journal content styling */
        .journal-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 10px 20px;
        }

        .journal-article {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
        }

        .journal-article h2 {
            font-size: 2.2rem;
            font-weight: 600;
            margin: 3rem 0 1.5rem 0;
            color: #333;
            border-bottom: 3px solid #667eea;
            padding-bottom: 0.5rem;
        }

        .journal-article h3 {
            font-size: 1.8rem;
            font-weight: 600;
            margin: 2.5rem 0 1rem 0;
            color: #444;
        }

        .journal-article p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }

        .journal-article blockquote {
            background: #f8f9fa;
            border-left: 4px solid #667eea;
            padding: 1.5rem 2rem;
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.2rem;
            color: #555;
        }

        .journal-article ul, .journal-article ol {
            margin: 1.5rem 0;
            padding-left: 2rem;
        }

        .journal-article li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }

        .journal-article .highlight-box {
            background: linear-gradient(135deg, #667eea10, #764ba210);
            border: 1px solid #667eea30;
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 8px;
        }

        .journal-article .highlight-box h4 {
            color: #667eea;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Author bio section */
        .author-bio {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border-top: 3px solid #667eea;
        }

        .author-bio h3 {
            color: #333;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .author-bio p {
            color: #666;
            line-height: 1.6;
        }

        /* Share and navigation */
        .journal-footer {
            border-top: 1px solid #eee;
            padding-top: 2rem;
            margin-top: 3rem;
        }

        .journal-tags {
            margin-bottom: 2rem;
        }

        .journal-tags h4 {
            color: #333;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .tag {
            display: inline-block;
            background: #667eea;
            color: white;
            padding: 0.3rem 0.8rem;
            margin: 0.2rem;
            border-radius: 20px;
            font-size: 0.9rem;
            text-decoration: none;
        }

        .tag:hover {
            background: #764ba2;
            color: white;
        }

        .journal-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 2rem;
        }

        .nav-link {
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border: 1px solid #667eea;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            background: #667eea;
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .journal-hero-text {
                padding: 2rem 1rem 1rem;
            }

            .journal-hero-text h1 {
                font-size: 2.5rem;
            }

            .journal-hero-text .meta {
                flex-direction: column;
                gap: 0.5rem;
            }

            .journal-hero-text .excerpt {
                font-size: 1.1rem;
            }

            .journal-content {
                padding: 40px 20px;
            }

            .journal-article h2 {
                font-size: 1.8rem;
            }

            .journal-article h3 {
                font-size: 1.5rem;
            }

            .journal-nav {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .journal-hero-text h1 {
                font-size: 2rem;
            }

            .journal-content {
                padding: 15px 15px;
            }

            .journal-article blockquote {
                padding: 1rem;
                margin: 1rem 0;
            }

            .journal-article .highlight-box {
                padding: 1.5rem;
            }
        }