<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Blog Post Global Styles */

/* Fix sticky header */
.main-nav {
    position: static !important;
    top: auto !important;
    z-index: auto !important;
}

/* White background for blog posts */
html,
body {
    background: white !important;
    background-image: none !important;
}

/* Blog content areas white background (preserve outros/footers) */
.container-wide,
.bread-crumbs-wrapper,
.blog-post-full,
.container:has(.blog-post-full),
.blog-post-full *:not(.blog-tags li):not(.btn):not(.cta-btn):not(.text-black-purple-center):not(.blog-post-full-title) {
    background: white !important;
    background-image: none !important;
}

/* Blog Post Layout */
.container-wide {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: static !important;
    z-index: auto !important;
}

.blog-post-full-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    display: block;
    position: static !important;
    transform: none !important;
}

/* Breadcrumbs */
.bread-crumbs-wrapper {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.bread-crumbs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 0.9rem;
    color: #666;
}

.bread-crumbs a {
    color: #bd60a5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bread-crumbs a:hover {
    color: #3a3b3c;
}

#blog h2 {
    font-size: 1.5rem;
}

/* Article Styles */
.blog-post-full {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    line-height: 1.7;
}

/* Left align all blog text */
.blog-post-full,
.blog-post-full * {
    text-align: left !important;
}

/* Typography */
.blog-post-full-title {
    font-size: 2.25rem !important;
    font-weight: 600 !important;
    margin: 1.25rem 0 !important;
    line-height: 1.3;
}

.text-black-purple-center,
h1.text-black-purple-center,
.blog-post-full-title.text-black-purple-center {
    background: linear-gradient(#3a3b3c 50%, #bd60a5 100%) !important;
    filter: saturate(1.5);
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

.blog-post-full-overview {
    font-size: 1.5rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
    font-family: 'Syne', sans-serif !important;
}

.blog-post-full-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #3a3b3c;
    margin: 2.5rem 0 1rem 0;
    border-left: 4px solid #bd60a5;
    padding-left: 1rem;
}

/* Tags */
.blog-tags {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.blog-tags img {
    width: 16px;
    height: 16px;
}

.blog-tags li {
    background: #f5f3ff;
    color: #bd60a5;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Content Styles */
.blog-post-full p {
    margin-bottom: 1.5rem;
    color: #444;
    font-size: 1rem;
}

.blog-post-full ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #444;
}

.blog-post-full li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.blog-post-full section {
    margin: 2rem 0;
}

.blog-post-full strong {
    color: #3a3b3c;
    font-weight: 600;
}

/* Highlight boxes */
.box-highlight {
    background: linear-gradient(60deg, rgba(255, 203, 5, 0.1), rgba(39, 195, 234, 0.1));
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffcb05;
    margin: 1.5rem 0;
    font-weight: 600;
    color: #3a3b3c;
}

/* Plugin/Example Lists */
.blog-post-full ol {
    list-style: decimal;
    margin: 2rem 0;
    padding-left: 2rem;
}

.blog-post-full ol li {
    margin: 3rem 0;
    line-height: 1.6;
}

.blog-post-full ol li a {
    color: #bd60a5;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-post-full ol li a:hover {
    color: #3a3b3c;
    text-decoration: underline;
}

/* Images */
.box-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .blog-post-full-image {
        height: 250px;
        margin: 1rem 0;
    }

    .blog-post-full {
        padding: 2rem 1rem;
    }

    .blog-post-full-title {
        font-size: 2rem !important;
    }

    .blog-post-full-subtitle {
        font-size: 1.2rem;
    }

    .blog-post-full-overview {
        font-size: 1.3rem;
    }

    .container-wide,
    .bread-crumbs {
        padding: 0 1rem;
    }

    .blog-post-full ol {
        padding-left: 1rem;
    }

    .blog-post-full ol li a {
        font-size: 1.1rem;
    }

    .box-image {
        max-width: 100%;
    }
}
</pre></body></html>