.home,.posts-page{display:flex;height:100vh;width:100%;position:relative;overflow:hidden}.home .hero-section,.posts-page .hero-section{position:fixed;left:0;top:0;width:40%;height:100vh;background-color:#000;padding:2rem;overflow:hidden;background-image:url("../images/backgrounds/background_misaels_blog.jpg");background-size:cover;background-position:center;display:flex;flex-direction:column;align-items:flex-start;transform:translateY(0);transition:transform 0.1s ease-out;z-index:1;box-sizing:border-box}.home .hero-section::before,.posts-page .hero-section::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.3);z-index:0}.home .hero-section .header-content,.posts-page .hero-section .header-content{position:relative;width:100%;display:flex;justify-content:space-between;align-items:center;z-index:2;margin-bottom:auto;box-sizing:border-box;padding:0 1rem}.home .hero-section .header-content .site-title,.posts-page .hero-section .header-content .site-title{color:white;font-size:2.2rem;text-align:left;text-shadow:2px 2px 4px rgba(0,0,0,0.5);font-weight:bold;max-width:60%;line-height:1.2;word-break:break-word}.home .hero-section .header-content .avatar-container,.posts-page .hero-section .header-content .avatar-container{cursor:pointer;margin-right:3rem;flex-shrink:0;display:flex;align-items:center}.home .hero-section .header-content .avatar-container .avatar,.posts-page .hero-section .header-content .avatar-container .avatar{width:2.2rem;height:2.2rem;border-radius:50%;border:2px solid white;box-shadow:0 2px 4px rgba(0,0,0,0.3);transition:transform 0.3s ease;background-image:url("../images/avatar.jpg");background-size:cover;background-position:center}.home .hero-section .header-content .avatar-container .avatar:hover,.posts-page .hero-section .header-content .avatar-container .avatar:hover{transform:scale(1.1)}.home .hero-section .copyright,.posts-page .hero-section .copyright{position:relative;width:100%;color:white;font-size:0.8rem;opacity:0.7;z-index:2;text-align:left;margin-top:auto;padding-top:1rem;box-sizing:border-box;display:flex;justify-content:space-between;align-items:center}.home .hero-section .copyright .signature,.posts-page .hero-section .copyright .signature{color:white;font-size:0.8rem;opacity:0.7;font-style:italic;text-align:right}.home .content-section,.posts-page .content-section{position:fixed;right:0;top:0;width:60%;height:100vh;background-color:#f5f5f5;z-index:1;overflow-x:hidden;box-sizing:border-box}.home .content-section .content-wrapper,.posts-page .content-section .content-wrapper{position:absolute;top:0;left:0;width:100%;height:100%;padding:2rem;overflow-y:auto;overflow-x:hidden;box-sizing:border-box}.home .content-section .content-wrapper .post-list,.posts-page .content-section .content-wrapper .post-list{width:100%;display:flex;flex-direction:column;gap:1.5rem;box-sizing:border-box}.home .content-section .content-wrapper .post-list .post-item,.posts-page .content-section .content-wrapper .post-list .post-item{position:relative;background:var(--background-color);border-radius:8px;overflow:visible;transition:transform 0.3s ease;min-height:100px;display:flex;flex-direction:column;justify-content:center;padding:1rem;color:var(--text-color);text-decoration:none;box-shadow:0 2px 4px rgba(0,0,0,0.1)}.home .content-section .content-wrapper .post-list .post-item .category-label,.posts-page .content-section .content-wrapper .post-list .post-item .category-label{position:absolute;top:0.75rem;right:0.75rem;background:var(--primary-color);color:white;padding:0.25rem 0.75rem;border-radius:4px;font-size:0.8rem;font-weight:500;z-index:2}.home .content-section .content-wrapper .post-list .post-item .post-background,.posts-page .content-section .content-wrapper .post-list .post-item .post-background{position:absolute;top:0;left:0;right:0;bottom:0;background-size:cover;background-position:center;background-repeat:no-repeat;opacity:0;transition:all 0.3s ease;z-index:0;background-color:#f5f5f5;border-radius:8px;overflow:hidden}.home .content-section .content-wrapper .post-list .post-item .post-background::after,.posts-page .content-section .content-wrapper .post-list .post-item .post-background::after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(45deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.6) 100%);z-index:1}.home .content-section .content-wrapper .post-list .post-item:hover .post-background,.posts-page .content-section .content-wrapper .post-list .post-item:hover .post-background{opacity:0.4;transform:scale(1.02)}.home .content-section .content-wrapper .post-list .post-item .post-label,.posts-page .content-section .content-wrapper .post-list .post-item .post-label{position:absolute;top:1rem;right:1rem;padding:0.4rem 1rem;border-radius:20px;font-size:0.75rem;font-weight:500;text-transform:capitalize;letter-spacing:0.3px;z-index:2;background-color:rgba(255,255,255,0.9);color:#555;border:1px solid rgba(0,0,0,0.1);backdrop-filter:blur(10px);box-shadow:0 2px 8px rgba(0,0,0,0.1);transition:all 0.3s ease}.home .content-section .content-wrapper .post-list .post-item .post-label:hover,.posts-page .content-section .content-wrapper .post-list .post-item .post-label:hover{background-color:#fff;transform:translateY(-1px);box-shadow:0 4px 12px rgba(0,0,0,0.15)}.home .content-section .content-wrapper .post-list .post-item h2,.posts-page .content-section .content-wrapper .post-list .post-item h2{word-break:break-word;margin:0;padding-right:4rem;position:relative;z-index:2;text-align:left;font-family:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;font-size:1.4rem;line-height:1.4;font-weight:600;color:#2c3e50;transition:color 0.3s ease}.home .content-section .content-wrapper .post-list .post-item h2 a,.posts-page .content-section .content-wrapper .post-list .post-item h2 a{color:inherit;text-decoration:none}.home .content-section .content-wrapper .post-list .post-item h2 a:hover,.posts-page .content-section .content-wrapper .post-list .post-item h2 a:hover{color:#3498db}.home .content-section .content-wrapper .post-list .post-item .post-meta,.posts-page .content-section .content-wrapper .post-list .post-item .post-meta{color:#666;font-size:0.8rem;position:absolute;right:1rem;bottom:1rem;z-index:2;display:flex;align-items:center;gap:0.5rem;padding:0.25rem 0.75rem;background:rgba(255,255,255,0.8);border-radius:12px;width:fit-content;backdrop-filter:blur(2px)}.home .content-section .content-wrapper .post-list .post-item .post-meta::before,.posts-page .content-section .content-wrapper .post-list .post-item .post-meta::before{content:'📅';display:inline-block;font-size:0.9rem;opacity:0.7}.home .content-section .content-wrapper .load-more-container,.posts-page .content-section .content-wrapper .load-more-container{display:flex;justify-content:center;margin:2rem 0}.home .content-section .content-wrapper .load-more-container .load-more-button,.posts-page .content-section .content-wrapper .load-more-container .load-more-button{display:inline-flex;align-items:center;gap:0.5rem;padding:0.75rem 1.5rem;background-color:#2a7ae2;color:white;border-radius:8px;font-weight:600;text-decoration:none;transition:all 0.3s ease;box-shadow:0 2px 4px rgba(42,122,226,0.2)}.home .content-section .content-wrapper .load-more-container .load-more-button:hover,.posts-page .content-section .content-wrapper .load-more-container .load-more-button:hover{background-color:#1a6ad2;transform:translateY(-2px);box-shadow:0 4px 8px rgba(42,122,226,0.3)}.home .content-section .content-wrapper .load-more-container .load-more-button:hover .arrow-icon,.posts-page .content-section .content-wrapper .load-more-container .load-more-button:hover .arrow-icon{transform:translateX(4px)}.home .content-section .content-wrapper .load-more-container .load-more-button .arrow-icon,.posts-page .content-section .content-wrapper .load-more-container .load-more-button .arrow-icon{transition:transform 0.3s ease}.home .content-section .content-wrapper .rss-subscribe,.posts-page .content-section .content-wrapper .rss-subscribe{width:100%;text-align:center;box-sizing:border-box;padding:1.5rem 0;margin-top:2rem;border-top:1px solid #f0f0f0}.home .content-section .content-wrapper .rss-subscribe a,.posts-page .content-section .content-wrapper .rss-subscribe a{display:inline-flex;align-items:center;gap:0.5rem;color:#3498db;text-decoration:none;font-weight:500;font-size:0.9rem;padding:0.5rem 1rem;border-radius:1rem;background-color:#f8f9fa;transition:all 0.3s ease}.home .content-section .content-wrapper .rss-subscribe a::before,.posts-page .content-section .content-wrapper .rss-subscribe a::before{content:'';display:inline-block;width:16px;height:16px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233498db'%3E%3Cpath d='M6.18 15.64a2.18 2.18 0 0 1 2.18 2.18C8.36 19 7.38 20 6.18 20a2.18 2.18 0 0 1-2.18-2.18 2.18 2.18 0 0 1 2.18-2.18zM4 4.44A15.56 15.56 0 0 1 19.56 20h-2.22A13.34 13.34 0 0 0 4 6.66V4.44zm0 5.66a9.9 9.9 0 0 1 9.9 9.9h-2.22A7.68 7.68 0 0 0 4 12.32V10.1z'/%3E%3C/svg%3E");background-size:contain;background-repeat:no-repeat;opacity:0.8}.home .content-section .content-wrapper .rss-subscribe a:hover,.posts-page .content-section .content-wrapper .rss-subscribe a:hover{background-color:#e3f2fd;color:#2980b9;transform:translateY(-1px)}@media (max-width: 1024px){.home .hero-section,.posts-page .hero-section{width:35%}.home .hero-section .header-content .site-title,.posts-page .hero-section .header-content .site-title{font-size:2rem}.home .hero-section .header-content .avatar-container,.posts-page .hero-section .header-content .avatar-container{margin-right:2rem}.home .content-section,.posts-page .content-section{width:65%}}@media (max-width: 768px){.home,.posts-page{flex-direction:column;height:auto;overflow:visible}.home .hero-section,.posts-page .hero-section{position:relative;width:100%;height:40vh;padding:1.5rem}.home .hero-section .header-content,.posts-page .hero-section .header-content{padding:0 0.5rem}.home .hero-section .header-content .site-title,.posts-page .hero-section .header-content .site-title{font-size:1.8rem;max-width:70%}.home .hero-section .header-content .avatar-container,.posts-page .hero-section .header-content .avatar-container{margin-right:1.5rem}.home .hero-section .copyright,.posts-page .hero-section .copyright{font-size:0.7rem}.home .content-section,.posts-page .content-section{position:relative;width:100%;height:auto}.home .content-section .content-wrapper,.posts-page .content-section .content-wrapper{position:relative;height:auto;overflow:visible;padding:1rem}.home .content-section .content-wrapper .post-list,.posts-page .content-section .content-wrapper .post-list{gap:1rem}.home .content-section .content-wrapper .post-list .post-item,.posts-page .content-section .content-wrapper .post-list .post-item{padding:1rem;min-height:90px}.home .content-section .content-wrapper .post-list .post-item:hover,.posts-page .content-section .content-wrapper .post-list .post-item:hover{transform:none}.home .content-section .content-wrapper .post-list .post-item .post-label,.posts-page .content-section .content-wrapper .post-list .post-item .post-label{font-size:0.6rem;padding:0.3rem 0.8rem}.home .content-section .content-wrapper .post-list .post-item h2,.posts-page .content-section .content-wrapper .post-list .post-item h2{font-size:1.2rem;line-height:1.3}.home .content-section .content-wrapper .post-list .post-item .post-meta,.posts-page .content-section .content-wrapper .post-list .post-item .post-meta{font-size:0.75rem}.modal-content{width:90%;margin:10% auto;padding:15px}.modal-content .about-header{flex-direction:column;align-items:center;gap:1.5rem;text-align:center}.modal-content .about-header .about-avatar{width:100px;height:100px}.modal-content .about-header .about-content{text-align:left}}@media (max-width: 480px){.home .hero-section,.posts-page .hero-section{height:35vh;padding:1rem}.home .hero-section .header-content .site-title,.posts-page .hero-section .header-content .site-title{font-size:1.5rem;max-width:80%}.home .hero-section .header-content .avatar-container,.posts-page .hero-section .header-content .avatar-container{margin-right:1rem}.home .hero-section .header-content .avatar-container .avatar,.posts-page .hero-section .header-content .avatar-container .avatar{width:1.8rem;height:1.8rem;font-size:1rem}.home .hero-section .copyright,.posts-page .hero-section .copyright{font-size:0.65rem}.home .content-section .content-wrapper,.posts-page .content-section .content-wrapper{padding:0.75rem}.home .content-section .content-wrapper .post-list,.posts-page .content-section .content-wrapper .post-list{gap:0.75rem}.home .content-section .content-wrapper .post-list .post-item,.posts-page .content-section .content-wrapper .post-list .post-item{padding:0.75rem;min-height:80px}.home .content-section .content-wrapper .post-list .post-item .post-label,.posts-page .content-section .content-wrapper .post-list .post-item .post-label{font-size:0.55rem;padding:0.2rem 0.6rem}.home .content-section .content-wrapper .post-list .post-item h2,.posts-page .content-section .content-wrapper .post-list .post-item h2{font-size:1.1rem;line-height:1.3}.home .content-section .content-wrapper .post-list .post-item .post-meta,.posts-page .content-section .content-wrapper .post-list .post-item .post-meta{font-size:0.7rem}.modal-content{width:95%;margin:5% auto;padding:12px}.modal-content .about-header .about-avatar{width:80px;height:80px;font-size:1.5rem}}.modal-content{background-color:#fefefe;margin:15% auto;padding:20px;border-radius:8px;width:80%;max-width:600px;position:relative}.modal-content .about-header{display:flex;align-items:flex-start;gap:2rem;margin-bottom:1.5rem}.modal-content .about-header .about-avatar{width:120px;height:120px;border-radius:50%;border:3px solid var(--primary-color);overflow:hidden;flex-shrink:0;background-color:#f0f0f0;display:flex;align-items:center;justify-content:center;color:#999;font-size:2rem}.modal-content .about-header .about-avatar::before{content:'👤'}.modal-content .about-header .about-avatar img{width:100%;height:100%;object-fit:cover;display:none}.modal-content .about-header .about-content{flex:1;margin:0;line-height:1.6}.modal-content .linkedin-footer{margin-top:2rem;text-align:center}.modal-content .linkedin-footer .linkedin-link{display:inline-flex;align-items:center;gap:0.5rem;color:#0077b5;text-decoration:none;font-size:0.9rem;transition:opacity 0.3s ease}.modal-content .linkedin-footer .linkedin-link:hover{opacity:0.8}.modal-content .linkedin-footer .linkedin-link::before{content:'';display:inline-block;width:16px;height:16px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230077b5'%3E%3Cpath d='M20.5 2h-17A1.5 1.5 0 002 3.5v17A1.5 1.5 0 003.5 22h17a1.5 1.5 0 001.5-1.5v-17A1.5 1.5 0 0020.5 2zM8 19H5v-9h3zM6.5 8.25A1.75 1.75 0 118.3 6.5a1.78 1.78 0 01-1.8 1.75zM19 19h-3v-4.74c0-1.42-.6-1.93-1.38-1.93A1.74 1.74 0 0013 14.19a.66.66 0 000 .14V19h-3v-9h2.9v1.3a3.11 3.11 0 012.7-1.4c1.55 0 3.36.86 3.36 3.66z'/%3E%3C/svg%3E");background-size:contain;background-repeat:no-repeat;opacity:0.8}.posts-page .content-section .content-wrapper .posts-header{margin-bottom:2rem}.posts-page .content-section .content-wrapper .posts-header h2{font-size:1.8rem;color:#2c3e50;font-weight:600;margin:0;padding-bottom:1rem;border-bottom:2px solid #f0f0f0}.posts-page .content-section .content-wrapper .post-list .post-item{margin-bottom:1.5rem}.posts-page .content-section .content-wrapper .post-list .post-item:last-child{margin-bottom:0}.home,.posts-page{width:90%;max-width:1200px;margin:0 auto;padding:2rem 1rem;box-sizing:border-box}.page-heading{font-size:2.5rem;font-weight:700;margin-bottom:2rem;text-align:center;color:#333;position:relative;padding-bottom:1rem}.page-heading::after{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:100px;height:3px;background:#2a7ae2;border-radius:3px}.post-list{display:grid;grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));gap:2rem;margin-bottom:3rem}.post-item{background:#fff;border-radius:8px;padding:1.5rem;box-shadow:0 2px 4px rgba(0,0,0,0.05);transition:transform 0.2s ease, box-shadow 0.2s ease;display:flex;flex-direction:column;gap:1rem}.post-item:hover{transform:translateY(-4px);box-shadow:0 4px 8px rgba(0,0,0,0.1)}.post-item h2{margin:0;font-size:1.5rem;line-height:1.3}.post-item .post-link{color:#333;text-decoration:none;transition:color 0.2s}.post-item .post-link:hover{color:#2a7ae2}.post-item .post-meta{color:#666;font-size:0.9rem;margin-top:auto}.rss-subscribe{text-align:center;margin-top:3rem;padding:2rem;background:#f8f9fa;border-radius:8px}.rss-subscribe a{color:#2a7ae2;text-decoration:none;font-weight:500;display:inline-flex;align-items:center;gap:0.5rem;transition:color 0.2s}.rss-subscribe a::before{content:"📰";font-size:1.2rem}.rss-subscribe a:hover{color:#1a5ab2}@media (max-width: 768px){.home,.posts-page{width:95%;padding:1.5rem 1rem}.page-heading{font-size:2rem}.post-list{grid-template-columns:1fr;gap:1.5rem}.post-item{padding:1.25rem}}.welcome{text-align:center;margin-bottom:40px}.welcome h1{font-size:2.5em;margin-bottom:20px}.welcome p{font-size:1.2em;color:#333}.recent-posts{margin-bottom:40px}.recent-posts .post-list-heading{font-size:1.8em;margin-bottom:20px}.recent-posts .post-list{list-style:none;padding:0}.recent-posts .post-list li{margin-bottom:30px;padding-bottom:20px;border-bottom:1px solid #e8e8e8}.recent-posts .post-list li:last-child{border-bottom:none}.recent-posts pre{background-color:#f8f8f8;border:1px solid #ddd;padding:10px;overflow-x:auto;border-radius:4px}.recent-posts code{font-family:'Courier New', Courier, monospace;background-color:#f0f0f0;padding:2px 4px;border-radius:4px}.recent-posts .post-meta{display:block;font-size:0.9em;color:#666;margin-bottom:5px}.recent-posts .post-link{color:#333;text-decoration:none}.recent-posts .post-link:hover{color:#2a7ae2}.recent-posts .post-category{display:inline-block;font-size:0.9em;color:#2a7ae2;margin-top:5px}.post{display:flex;max-width:1200px;margin:0 auto;padding:2rem;position:relative;gap:2rem}.post-header{position:fixed;top:0;left:0;right:0;z-index:200;background:rgba(255,255,255,0.95);backdrop-filter:blur(8px);padding:0.75rem 0;border-bottom:1px solid rgba(0,0,0,0.1);box-shadow:0 2px 4px rgba(0,0,0,0.05);text-align:center;box-sizing:border-box}.post-header .post-title{font-size:1.4rem;font-weight:600;margin:0;line-height:1.2;text-align:left;flex:1;overflow-wrap:break-word;word-wrap:break-word;hyphens:none;word-break:normal;font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;letter-spacing:-0.3px;color:#333;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.post-header-content{width:90%;max-width:1200px;margin:0 auto;padding:0 1rem;box-sizing:border-box;display:flex;align-items:center;gap:1rem}@media (max-width: 1024px){.post-header-content{width:95%}}.post-header-content .progress-pipe{width:2px;height:1.2rem;background:#464646;margin:0 0.75rem;border-radius:1px;opacity:0.5}.blog-title{font-size:0.9rem;color:#666;margin-bottom:0.25rem;font-weight:500;font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif}.blog-title a{color:inherit;text-decoration:none;transition:color 0.2s;display:flex;align-items:center;gap:0.5rem;letter-spacing:0.3px}.blog-title a::before{content:none}.blog-m{font-size:1.5rem;font-weight:700;font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;letter-spacing:-1px;line-height:1;transition:color 0.3s, text-shadow 0.3s;display:inline-block}.post-title{font-size:2.2rem;font-weight:700;margin:0;line-height:1.2;text-align:left;flex:1;overflow-wrap:break-word;word-wrap:break-word;hyphens:none;word-break:normal;font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;letter-spacing:-0.5px;color:#333}.post-meta{color:#666;font-size:0.9rem;display:flex;justify-content:center;align-items:center;gap:1rem;flex-wrap:wrap;max-width:100%;overflow:hidden;font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;letter-spacing:0.2px}.post-date{display:flex;align-items:center;padding:0.25rem 0.5rem;border-radius:4px;background:#f5f5f5;transition:all 0.2s;white-space:nowrap;flex-shrink:0;height:100%;line-height:1}.post-categories,.categories-modal,.modal-overlay{display:none}.post-content{flex:1;min-width:0;max-width:800px;margin:0;padding:0;padding-top:5rem;font-size:1.1rem;line-height:1.8;color:#333;font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif}.post-content h2,.post-content h3,.post-content h4,.post-content h5,.post-content h6{margin-top:2rem;margin-bottom:1rem;font-weight:600;letter-spacing:-0.3px}.post-content h2{font-size:1.8rem;color:#535353}.post-content h3{font-size:1.5rem;color:#535353}.post-content h4{font-size:1.1rem;color:#333;font-weight:500;letter-spacing:0.1px;margin-top:1.5rem;margin-bottom:0.75rem;line-height:1.4}.post-content p{margin-bottom:1.5rem;letter-spacing:0.1px}.post-content code{background:#f5f5f5;padding:0.2rem 0.4rem;border-radius:4px;font-size:0.9em;font-family:'Fira Code', 'Consolas', 'Monaco', 'Andale Mono', monospace}.post-content pre{background:#1e1e1e;padding:1rem;border-radius:8px;margin:1.5rem 0;position:relative;counter-reset:line;overflow:hidden}.post-content pre code{background:none;padding:0;display:block;font-family:'Fira Code', 'Consolas', 'Monaco', 'Andale Mono', monospace;font-size:0.9em;line-height:1.5;color:#d4d4d4;white-space:pre-wrap;word-wrap:break-word}.post-content img{max-width:100%;height:auto;display:block;margin:1.5rem auto;transition:transform 0.3s ease;cursor:zoom-in}.post-content img:hover{transform:scale(1.1)}.post-content img+em{display:block;text-align:center;font-size:0.8em;color:#666;margin-top:-0.5rem;margin-bottom:1.5rem;font-style:italic;line-height:1.4;max-width:80%;margin-left:auto;margin-right:auto}.post-sidebar{position:sticky;top:3.9rem;margin-top:5rem;right:2rem;width:300px;max-height:calc(100vh - 4.2rem);overflow-y:visible;background:#fff;border-radius:8px;box-shadow:0 2px 8px rgba(0,0,0,0.1);z-index:100;padding:1rem;margin-left:auto;align-self:start;transform:translateY(0)}.table-of-contents{display:flex;flex-direction:column;height:fit-content;overflow-y:visible;font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif}.table-of-contents h2{font-size:1.1rem;margin-bottom:0;color:#333;position:sticky;top:0;background:#fff;padding:0.75rem 0;z-index:2;border-bottom:1px solid #eee;font-weight:600;letter-spacing:-0.3px;margin-top:0}.table-of-contents nav{flex:1 1 auto;overflow-y:visible;min-height:0;max-height:none}.table-of-contents ul{list-style:none;padding:0;margin:0}.table-of-contents ul ul{margin-left:1rem;margin-top:0.25rem;margin-bottom:0.5rem}.table-of-contents li{margin-bottom:0.25rem;line-height:1.3}.table-of-contents a{color:#666;text-decoration:none;display:block;padding:0.25rem 0.5rem;border-radius:4px;transition:all 0.2s ease;border-left:3px solid transparent;font-size:0.9rem;letter-spacing:0.1px}.table-of-contents a:hover{color:#333;background:#f5f5f5}.table-of-contents a.active{color:#333;background:#f5f5f5;border-left-color:#2a7ae2;font-weight:500}.table-of-contents .toc-level-2>a{font-weight:500}.table-of-contents .toc-level-3>a{font-size:0.85rem}body{margin:0;padding:0;overflow-x:hidden;overflow-y:visible}.page-content{min-height:100vh;padding-top:0}.post .page-content{padding-top:0}.site-footer{background-color:#f5f5f5;padding:2rem 0;margin-top:4rem;border-top:1px solid #eee}.site-footer .wrapper{max-width:1200px;margin:0 auto;padding:0 1rem}.site-footer .footer-content{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}.site-footer .footer-content p{margin:0;color:#666}.site-footer .footer-links{display:flex;gap:1.5rem}.site-footer .footer-links a{color:#666;text-decoration:none;transition:color 0.2s}.site-footer .footer-links a:hover{color:#333}.site-header{background-color:#fff;padding:1rem 0;border-bottom:1px solid #e8e8e8;position:sticky;top:0;z-index:100;display:none}.post .site-header{display:block}.site-header .wrapper{max-width:1200px;margin:0 auto;padding:0 1rem;display:flex;justify-content:space-between;align-items:center}.site-header .site-title{font-family:'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;font-size:1.2rem;font-weight:800;color:#2a7ae2;text-shadow:0 0 8px rgba(42,122,226,0.2),0 0 15px rgba(42,122,226,0.1);letter-spacing:-1px}.comments-spacing{height:6rem;width:100%}#disqus_thread{margin-top:4rem;padding-top:3rem;border-top:1px solid #eee;max-width:800px;margin-left:auto;margin-right:auto;padding:0 1rem}#disqus_thread .disqus-container{background:#fff;border-radius:8px;box-shadow:0 2px 4px rgba(0,0,0,0.05)}.about-modal-overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.5);z-index:1000;justify-content:center;align-items:center}.about-modal{background:white;border-radius:12px;width:90%;max-width:800px;max-height:90vh;overflow-y:auto;box-shadow:0 4px 20px rgba(0,0,0,0.15);animation:modalFadeIn 0.3s ease-out}.about-modal-content{display:flex;flex-direction:row;padding:2rem;gap:2rem}.about-text{flex:1}.about-text h2{color:#2a7ae2;margin-bottom:1.5rem;font-size:1.8rem}.about-text p{color:#333;line-height:1.6;margin-bottom:1.5rem}.linkedin-link{display:inline-flex;align-items:center;gap:0.5rem;color:#2a7ae2;text-decoration:none;font-weight:500;transition:color 0.2s}.linkedin-link:hover{color:#1a5cb8}.linkedin-link i{font-size:1.2rem}.about-image{flex:0 0 200px}.about-image img{width:100%;height:auto;border-radius:50%;box-shadow:0 4px 12px rgba(0,0,0,0.1)}@keyframes modalFadeIn{from{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}@media (max-width: 768px){.about-modal-content{flex-direction:column;padding:1.5rem}.about-image{flex:0 0 auto;width:150px;margin:0 auto}.about-text{text-align:center}}.comments-container{grid-column:1 / -1;max-width:800px;margin:0 auto;padding:2rem;background-color:var(--background-color);border-top:1px solid var(--border-color);margin-top:2rem;padding-top:2rem;border-top:1px solid #eee}.comments-container h2{margin-bottom:1.5rem;font-size:1.5rem;color:#333}@media (max-width: 1024px){.post{flex-direction:column;padding-right:2rem}.post-sidebar{position:static;width:100%;max-height:none;margin-top:2rem;top:auto}}.output-block{background-color:#f8f9fa;border-radius:4px;margin:1rem 0;padding:0.5rem;border:1px solid #e9ecef;font-size:0.9em}.output-block summary{cursor:pointer;padding:0.5rem;font-weight:500;color:#666;outline:none;user-select:none;font-size:0.9em}.output-block summary::-webkit-details-marker{color:#666;font-size:0.8em}.output-block pre{margin-top:0.5rem;padding:0.5rem;background-color:#fff;border-radius:4px;white-space:pre;overflow-x:auto;overflow-y:auto;max-height:400px;border:1px solid #e9ecef;font-family:'Fira Code', 'Consolas', 'Monaco', 'Andale Mono', monospace;font-size:0.85em;line-height:1.4;color:#444}.output-block pre::-webkit-scrollbar{height:8px;width:8px}.output-block pre::-webkit-scrollbar-track{background:#f1f1f1;border-radius:4px}.output-block pre::-webkit-scrollbar-thumb{background:#c1c1c1;border-radius:4px}.output-block pre::-webkit-scrollbar-thumb:hover{background:#a8a8a8}.header-pipe{display:inline-block;margin:0 1rem;color:#bbb;font-size:1.3rem;font-weight:400;vertical-align:middle;letter-spacing:0.1em;user-select:none;transition:color 0.2s}.footer-signature{margin-left:1.2rem;color:#2a7ae2;font-size:1.1rem;vertical-align:middle;opacity:0.7;letter-spacing:0.05em;user-select:none}
