/* REVO Agency - Blog Single Post Styles */
/* Post Hero Section */
        .post-hero {
            padding: 11rem 5% 5rem;
            text-align: center;
            background: linear-gradient(180deg, rgba(124, 77, 255, 0.02) 0%, rgba(8, 7, 13, 0) 100%);
            border-bottom: 1px solid var(--card-border);
        }

        .post-hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .post-badge {
            background: rgba(0, 229, 255, 0.1);
            border: 1px solid rgba(0, 229, 255, 0.3);
            color: #f16102;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .post-hero h1 {
            font-size: 3.2rem;
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 2rem;
            background: linear-gradient(to bottom, #ffffff 60%, #a0aec0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .post-meta {
            display: flex;
            justify-content: center;
            gap: 25px;
            color: var(--text-muted);
            font-size: 0.9rem;
            flex-wrap: wrap;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1rem 0;
        }

        .post-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .post-meta i {
            color: #f16102;
        }

        /* Main Content Layout */
        .post-layout {
            max-width: 1200px;
            margin: 4rem auto 7rem;
            padding: 0 5%;
            display: grid;
            grid-template-columns: 2.2fr 1fr;
            gap: 4rem;
        }

        @media (max-width: 991px) {
            .post-layout {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
        }

        /* Article content styling */
        .article-content {
            font-size: 1.1rem;
            color: #e2e8f0;
        }

        .article-content p {
            margin-bottom: 1.8rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .article-content .lead {
            font-size: 1.25rem;
            color: var(--text-main);
            font-weight: 500;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            border-right: 4px solid #f16102;
            padding-right: 1.5rem;
        }

        .article-content h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin: 3rem 0 1.5rem;
            color: #ffffff;
            background: linear-gradient(135deg, #ffffff 70%, #f16102 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .article-content h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin: 2.5rem 0 1.2rem;
            color: #ffffff;
        }

        .article-content ul, .article-content ol {
            margin: 1.5rem 0 2rem 2rem;
            padding-right: 1rem;
        }

        .article-content li {
            margin-bottom: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .article-content li strong {
            color: #ffffff;
        }

        /* Quote Box */
        .article-quote {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-right: 4px solid #4a6fa5;
            border-radius: 16px;
            padding: 2.2rem;
            margin: 2.5rem 0;
            backdrop-filter: blur(10px);
        }

        .article-quote p {
            font-size: 1.2rem;
            font-style: italic;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .article-quote cite {
            font-size: 0.9rem;
            color: #f16102;
            font-weight: 700;
            font-style: normal;
        }

        .post-visual {
            background: linear-gradient(135deg, #1b1733 0%, #0d0c18 100%);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            height: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin: 3rem 0;
        }

        .post-visual i {
            font-size: 5rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .post-visual span {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-muted);
            letter-spacing: 1px;
            font-family: 'Outfit', sans-serif;
        }

        /* Sidebar Widgets */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .widget {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 24px;
            padding: 2rem;
            backdrop-filter: blur(10px);
        }

        .widget-title {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .widget-title::after {
            content: '';
            position: absolute;
            bottom: -1px;
            right: 0;
            width: 50px;
            height: 2px;
            background: var(--primary-gradient);
        }

        /* CTA Widget (Free Audit) */
        .widget-cta {
            background: linear-gradient(180deg, rgba(124, 77, 255, 0.06) 0%, rgba(0, 0, 0, 0) 100%);
            border-color: rgba(124, 77, 255, 0.25);
            text-align: center;
        }

        .widget-cta i {
            font-size: 2.5rem;
            color: #f16102;
            margin-bottom: 1.2rem;
        }

        .widget-cta h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 0.8rem;
        }

        .widget-cta p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 1.8rem;
        }

        .widget-cta .cta-btn {
            width: 100%;
            justify-content: center;
        }

        /* Popular Posts Widget */
        .popular-posts-list {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }

        .popular-post-item {
            display: flex;
            gap: 12px;
            align-items: center;
            text-decoration: none;
            color: var(--text-main);
            transition: var(--transition);
        }

        .popular-post-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--card-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f16102;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .popular-post-item:hover .popular-post-icon {
            background: var(--primary-gradient);
            color: #000;
            border-color: transparent;
        }

        .popular-post-info h4 {
            font-size: 0.88rem;
            font-weight: 700;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: var(--transition);
        }

        .popular-post-item:hover h4 {
            color: #f16102;
        }

        .popular-post-info span {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* Share Widget */
        .share-buttons {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }

        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.02);
            border: 1px solid var(--card-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.95rem;
        }

        .share-btn:hover {
            color: #000;
            border-color: transparent;
            transform: translateY(-3px);
        }

        .share-btn.fb:hover { background: #1877f2; }
        .share-btn.tw:hover { background: #1da1f2; }
        .share-btn.ln:hover { background: #0a66c2; }
        .share-btn.wa:hover { background: #25d366; }

@media (max-width: 768px) {
    .post-hero h1 {
        font-size: 2.3rem;
    }
}