        .blog-hero {
            background: linear-gradient(135deg, rgb(241, 145, 61) 0%, rgb(214, 116, 28) 50%, rgb(139, 63, 0) 100%);
            padding: 46px 0;
            position: relative;
            overflow: hidden;
        }

        .blog-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: asset('{{ asset("images/section/bg-pattern.png") }}') repeat;
            opacity: 0.1;
        }

        .blog-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }

        .blog-hero h1 {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            text-shadow: rgba(0, 0, 0, 0.15) 0px 4px 8px;
            letter-spacing: -2.5px;
        }

        .blog-hero p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.95);
            max-width: 700px;
            line-height: 1.7;
            font-weight: 400;
            margin: 0px auto;
        }

        .blog-search-section {
            margin-top: 40px;
        }

        .blog-search-form {
            max-width: 500px;
            margin: 0 auto;
            position: relative;
        }

        .blog-search-input {
            width: 100%;
            padding: 18px 60px 18px 25px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            outline: none;
        }

        .blog-search-btn {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: #ff6b35;
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .blog-search-btn:hover {
            background: #e55a2b;
            transform: translateY(-50%) scale(1.05);
        }

        .blog-main-content {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .blog-grid {
            margin-bottom: 50px;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .blog-card-image {
            position: relative;
            overflow: hidden;
            height: 250px;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.1);
        }

        .blog-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .blog-card:hover .blog-card-overlay {
            opacity: 1;
        }
        .row > * {
            padding-left: 15px;
            padding-right: 15px;
            padding-bottom: 18px;
        }

        .blog-card-category {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 3;
        }

        .category-badge {
            padding: 8px 16px;
            border-radius: 20px;
            color: white;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .featured-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #ffd700;
            color: #333;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .blog-card-content {
            padding: 30px;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 13px;
            color: #888;
        }

        .blog-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .blog-card-title {
            font-size: 1.4rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 15px;
            color: #333;
        }

        .blog-card-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .blog-card-title a:hover {
            color: #ff6b35;
        }

        .blog-card-excerpt {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .blog-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .read-more-btn {
            color: #ff6b35;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            color: #e55a2b;
            gap: 12px;
        }

        .blog-sidebar {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 100px;
        }

        .sidebar-widget {
            margin-bottom: 40px;
        }

        .sidebar-widget:last-child {
            margin-bottom: 0;
        }

        .sidebar-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #333;
            position: relative;
            padding-bottom: 15px;
        }

        .sidebar-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(135deg, #ff6b35, #f7931e);
            border-radius: 2px;
        }

        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .category-item {
            margin-bottom: 12px;
        }

        .category-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
            background: #f8f9fa;
            border-radius: 10px;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
        }

        .category-link:hover {
            background: #ff6b35;
            color: white;
            transform: translateX(5px);
        }

        .category-name {
            font-weight: 500;
        }

        .category-count {
            background: white;
            color: #ff6b35;
            padding: 4px 8px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
        }

        .category-link:hover .category-count {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .pagination-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 60px;
        }

        .no-results {
            text-align: center;
            padding: 80px 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .no-results-icon {
            font-size: 4rem;
            color: #ddd;
            margin-bottom: 20px;
        }

        .no-results h3 {
            color: #333;
            margin-bottom: 15px;
        }

        .no-results p {
            color: #888;
            margin-bottom: 30px;
        }

        @media (max-width: 768px) {
            .blog-hero h1 {
                font-size: 2.5rem;
            }

            .blog-hero p {
                font-size: 1rem;
            }

            .blog-sidebar {
                margin-top: 50px;
                position: static;
            }

            .blog-meta {
                flex-wrap: wrap;
                gap: 10px;
            }
        }
        :root {
            --primary-color: #ff6b35;
            --secondary-color: #f7931e;
            --text-dark: #1a1a1a;
            --text-medium: #4a4a4a;
            --text-light: #7a7a7a;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-light: #e8eaed;
            --shadow-light: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
            --shadow-heavy: 0 15px 50px rgba(0,0,0,0.15);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 30px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.7;
            color: var(--text-medium);
            font-weight: 400;
        }

        .blog-detail-hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            position: relative;
            min-height: 40vh;
            max-height: 50vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            box-shadow: inset 0 -10px 30px rgba(0,0,0,0.1);
        }

        .blog-detail-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('{{ url("images/section/bg-pattern.png") }}') repeat;
            opacity: 0.05;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
            padding: 40px 0;
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .blog-breadcrumb {
            margin-bottom: 25px;
        }

        .breadcrumb-elegant {
            padding: 12px 24px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: -45px;
        }

        .breadcrumb-elegant a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .breadcrumb-elegant a:hover {
            color: white;
            text-shadow: 0 0 10px rgba(255,255,255,0.5);
        }

        .blog-category-hero {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border-radius: var(--radius-xl);
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .blog-category-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .hero-meta {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .blog-detail-hero {
                min-height: 35vh;
                max-height: 45vh;
            }
            
            .hero-content {
                padding: 30px 0;
            }
            
            .blog-breadcrumb {
                margin-bottom: 20px;
            }
            
            .blog-category-hero {
                margin-bottom: 15px;
            }
            
            .hero-meta {
                margin-bottom: 15px;
                gap: 15px;
            }
            
            .hero-meta-item {
                padding: 6px 12px;
                font-size: 12px;
            }
            
            .blog-hero-title {
                font-size: clamp(2rem, 4vw, 3rem);
            }
        }

        @media (max-width: 480px) {
            .blog-detail-hero {
                min-height: 30vh;
                max-height: 40vh;
            }
            
            .hero-content {
                padding: 25px 0;
            }
            
            .hero-meta {
                gap: 10px;
            }
            
            .hero-meta-item {
                padding: 5px 10px;
                font-size: 11px;
            }
        }

        .hero-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.9);
            font-size: 13px;
            font-weight: 500;
            padding: 8px 16px;
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .hero-meta-item:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-1px);
        }

        .hero-meta-item:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
        .hero-meta-item:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
        .hero-meta-item:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
        .hero-meta-item:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
        .hero-meta-item:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }

        .hero-meta-item i {
            font-size: 16px;
            opacity: 0.8;
        }

        .blog-hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .blog-hero-excerpt {
            font-size: 1.25rem;
            line-height: 1.6;
            opacity: 0.9;
            max-width: 800px;
            font-weight: 400;
        }

        .reading-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            z-index: 9999;
            transition: width 0.1s ease;
        }

        .blog-detail-content {
            padding: 100px 0;
            background: var(--bg-light);
        }

        .blog-article {
            background: var(--bg-white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            margin-bottom: 80px;
            position: relative;
        }

        .blog-article::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }

        .blog-featured-image {
            position: relative;
            height: 500px;
            overflow: hidden;
        }

        .blog-featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .blog-article:hover .blog-featured-image img {
            transform: scale(1.02);
        }

        .article-meta-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px 50px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-bottom: 1px solid var(--border-light);
            flex-wrap: wrap;
            gap: 20px;
        }

        .author-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 20px;
            box-shadow: var(--shadow-light);
        }

        .author-info h4 {
            margin: 0;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .author-info p {
            margin: 0;
            font-size: 13px;
            color: var(--text-light);
        }

        .article-stats {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-light);
            font-size: 14px;
            font-weight: 500;
        }

        .stat-item i {
            color: var(--primary-color);
            font-size: 16px;
        }

        .blog-content-wrapper {
            padding: 60px 50px;
        }

        .blog-content {
            font-size: 18px;
            line-height: 1.8;
            color: var(--text-medium);
            max-width: none;
        }

        .blog-content h1, .blog-content h2, .blog-content h3, .blog-content h4, .blog-content h5, .blog-content h6 {
            font-family: 'Playfair Display', serif;
            color: var(--text-dark);
            font-weight: 700;
            margin-top: 50px;
            margin-bottom: 25px;
            line-height: 1.3;
            position: relative;
        }

        .blog-content h1 { font-size: 2.5rem; }
        .blog-content h2 { 
            font-size: 2rem; 
            padding-bottom: 15px;
            border-bottom: 3px solid var(--primary-color);
            display: inline-block;
        }
        .blog-content h3 { font-size: 1.7rem; }
        .blog-content h4 { font-size: 1.4rem; }

        .blog-content p {
            margin-bottom: 30px;
            color: var(--text-medium);
            text-align: justify;
        }

        .blog-content p:first-of-type {
            font-size: 20px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .blog-content ul, .blog-content ol {
            margin-bottom: 30px;
            padding-left: 30px;
        }

        .blog-content li {
            margin-bottom: 12px;
            color: var(--text-medium);
            position: relative;
        }

        .blog-content ul li::marker {
            color: var(--primary-color);
        }

        .blog-content blockquote {
            background: linear-gradient(135deg, #fff8f5 0%, #fff4f0 100%);
            border-left: 6px solid var(--primary-color);
            margin: 40px 0;
            padding: 30px 40px;
            font-style: italic;
            font-size: 20px;
            color: var(--text-dark);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            position: relative;
            box-shadow: var(--shadow-light);
        }

        .blog-content blockquote::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 60px;
            color: var(--primary-color);
            opacity: 0.3;
            font-family: serif;
        }

        .blog-content img {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius-md);
            margin: 40px 0;
            box-shadow: var(--shadow-medium);
            transition: transform 0.3s ease;
        }

        .blog-content img:hover {
            transform: scale(1.02);
        }

        .blog-content a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .blog-content a:hover {
            border-bottom-color: var(--primary-color);
            background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(247,147,30,0.1));
            padding: 2px 4px;
            border-radius: 4px;
        }

        .blog-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background: white;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-light);
        }

        .blog-content table th,
        .blog-content table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid var(--border-light);
        }

        .blog-content table th {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            font-weight: 600;
        }

        .blog-content table tr:hover {
            background-color: #fafafa;
        }

        .blog-footer-section {
            padding: 40px 50px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            border-top: 1px solid var(--border-light);
        }

        .blog-tags-share {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .blog-tags {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .tags-label {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 16px;
        }

        .tag-item {
            padding: 8px 16px;
            background: white;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-xl);
            color: var(--text-medium);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .tag-item:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: var(--shadow-light);
        }

        .share-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .share-label {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 16px;
        }

        .share-buttons {
            display: flex;
            gap: 12px;
        }

        .share-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 18px;
            position: relative;
            overflow: hidden;
        }

        .share-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .share-btn:hover::before {
            opacity: 1;
        }

        .share-btn.facebook { background: linear-gradient(135deg, #3b5998, #2d4373); }
        .share-btn.twitter { background: linear-gradient(135deg, #1da1f2, #0d8bd9); }
        .share-btn.linkedin { background: linear-gradient(135deg, #0077b5, #005885); }
        .share-btn.whatsapp { background: linear-gradient(135deg, #25d366, #1ebe57); }

        .share-btn:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: var(--shadow-medium);
        }

        .related-posts {
            margin-top: 100px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .section-title p {
            color: var(--text-light);
            font-size: 16px;
            max-width: 500px;
            margin: 0 auto;
        }

        .related-post-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            position: relative;
        }

        .related-post-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .related-post-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-heavy);
        }

        .related-post-card:hover::before {
            transform: scaleX(1);
        }

        .related-post-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .related-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .related-post-card:hover .related-post-image img {
            transform: scale(1.1);
        }

        .related-post-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .related-post-card:hover .related-post-overlay {
            opacity: 1;
        }

        .related-post-content {
            padding: 30px;
        }

        .related-post-meta {
            font-size: 13px;
            color: var(--text-light);
            margin-bottom: 12px;
            font-weight: 500;
        }

        .related-post-title {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .related-post-title a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .related-post-title a:hover {
            color: var(--primary-color);
        }

        .related-post-excerpt {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.5;
        }

        .blog-sidebar {
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-light);
            position: sticky;
            top: 120px;
            overflow: hidden;
        }

        .sidebar-widget {
            padding: 1px !important;
            border-bottom: 1px solid var(--border-light);
        }

        .sidebar-widget:last-child {
            border-bottom: none;
        }

        .sidebar-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--text-dark);
            position: relative;
            padding-bottom: 15px;
        }

        .sidebar-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .category-list, .recent-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .category-item, .recent-item {
            margin-bottom: 15px;
        }

        .category-link, .recent-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: var(--bg-light);
            border-radius: var(--radius-md);
            text-decoration: none;
            color: var(--text-medium);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .category-link:hover, .recent-link:hover {
            background: var(--primary-color);
            color: white;
            transform: translateX(8px);
            border-color: var(--primary-color);
        }

        .category-name, .recent-title {
            font-weight: 600;
            font-size: 14px;
        }

        .category-count, .recent-date {
            background: white;
            color: var(--primary-color);
            padding: 6px 12px;
            border-radius: var(--radius-xl);
            font-size: 12px;
            font-weight: 700;
        }

        .category-link:hover .category-count,
        .recent-link:hover .recent-date {
            background: rgba(255,255,255,0.9);
            color: var(--primary-color);
        }

        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            box-shadow: var(--shadow-medium);
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: var(--shadow-heavy);
        }

        @media (max-width: 768px) {
            .blog-hero-title {
                font-size: 2.5rem;
            }

            .hero-meta {
                gap: 15px;
            }

            .blog-content-wrapper,
            .article-meta-bar,
            .blog-footer-section {
                padding: 30px 25px;
            }

            .blog-sidebar {
                margin-top: 60px;
                position: static;
            }

            .sidebar-widget {
                padding: 30px 25px;
            }

            .blog-tags-share {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .share-section {
                width: 100%;
                justify-content: space-between;
            }
        }

        @media (max-width: 480px) {
            .blog-hero-title {
                font-size: 2rem;
            }

            .blog-content {
                font-size: 16px;
            }

            .hero-meta {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }
