<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 * Blog System Styling
 * HomilyWriterAI Blog
 * This CSS file contains all styles specific to the blog section of the site
 */

:root {
    --blog-text-color: #333;
    --blog-primary: #4e81bc;
    --blog-primary-dark: #2a6b9d;
    --blog-secondary: #f5f7ff;
    --blog-border: #d2c4e4;
    --blog-card-shadow: 0 3px 10px rgba(42, 107, 157, 0.1);
    --blog-heading-color: #2a6b9d;
    --blog-meta-color: #6490d3;
    --blog-tag-bg: #e9e3f3;
    --blog-tag-text: #4e81bc;
    --blog-cta-bg: #f0ebf7;
    --blog-cta-border: #d2c4e4;
    --primary-light: #d2c4e4;
    --primary-medium: #a4b6e5;
    --primary: #6490d3;
    --primary-dark: #4e81bc;
    --primary-darker: #2a6b9d;
    --white: #ffffff;
    --footer-bg: #2a6b9d;
    --footer-text: #ffffff;
    --footer-link: #e9e3f3;
    --footer-link-hover: #ffffff;
    --footer-border: rgba(255, 255, 255, 0.1);
    --footer-bottom-bg: rgba(0, 0, 0, 0.2);
}

/* Blog Site Header */
.site-header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    overflow: visible;
    transition: padding 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.logo img {
    max-height: 40px;
    width: auto;
}

/* Site Footer */
.site-footer {
    background-color: var(--primary-darker);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    margin-top: 80px;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(135deg, transparent 50%, var(--primary-darker) 50%);
}

/* Completely reset all list styling in footer */
.site-footer ul,
.site-footer ol,
.footer-links ul,
.footer-links ol,
.footer-column ul,
.footer-column ol {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.site-footer li,
.footer-links li,
.footer-column li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    display: block !important;
    position: relative !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    background: none !important;
}

.site-footer li:before,
.site-footer li::before,
.footer-links li:before,
.footer-links li::before,
.footer-column li:before,
.footer-column li::before {
    content: none !important;
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 100%;
    max-width: 300px;
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex: 1;
    max-width: 100%;
}

.footer-column {
    flex: 0 0 calc(33.333% - 20px);
    margin-bottom: 20px;
}

.footer-column h3 {
    color: var(--footer-text);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--blog-border);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--footer-text);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--blog-primary);
    color: white;
    transform: translateY(-3px);
}

/* Blog Header - Main Blog Page */
.blog-header {
    background-color: #f8f9ff;
    padding: 5rem 0 3rem;
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--blog-border);
}

.blog-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-header h1 {
    font-size: 2.8rem;
    color: var(--blog-heading-color);
    margin-bottom: 1rem;
}

.blog-header p {
    font-size: 1.2rem;
    color: var(--blog-meta-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Featured Post Section */
.featured-post {
    margin-bottom: 4rem;
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--blog-card-shadow);
}

.featured-post-image {
    width: 50%;
    position: relative;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-content {
    width: 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-tag {
    display: inline-block;
    background-color: var(--blog-primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.featured-post-title {
    font-size: 2rem;
    color: var(--blog-heading-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-post-meta {
    display: flex;
    margin-bottom: 1.5rem;
    color: var(--blog-meta-color);
    font-size: 0.9rem;
}

.featured-post-meta &gt; span {
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
}

.featured-post-meta i {
    margin-right: 0.5rem;
}

.featured-post-excerpt {
    color: var(--blog-text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.featured-post-link {
    color: var(--blog-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.2s;
}

.featured-post-link:hover {
    color: var(--blog-primary-dark);
}

.featured-post-link i {
    margin-left: 0.3rem;
    font-size: 0.85rem;
    transition: transform 0.2s;
}

.featured-post-link:hover i {
    transform: translateX(3px);
}

/* Blog Grid */
.blog-main {
    padding: 0 1.5rem 5rem;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--blog-card-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 20, 0.15);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: var(--blog-meta-color);
    margin-bottom: 0.8rem;
    display: flex;
    flex-wrap: wrap;
}

.blog-card-meta span {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.blog-card-meta i {
    margin-right: 0.4rem;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--blog-heading-color);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: var(--blog-primary);
}

.blog-card-excerpt {
    color: var(--blog-text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.blog-card-readings {
    color: var(--blog-meta-color);
    font-style: italic;
}

.blog-card-link {
    color: var(--blog-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-link:hover {
    color: var(--blog-primary-dark);
}

.blog-card-link i {
    margin-left: 0.3rem;
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.blog-card-link:hover i {
    transform: translateX(3px);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin: 3rem 0 4rem;
}

.blog-pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 0.3rem;
    text-decoration: none;
    color: var(--blog-text-color);
    font-weight: 500;
    transition: all 0.2s;
}

.blog-pagination a:hover {
    background-color: var(--blog-secondary);
}

.blog-pagination a.active {
    background-color: var(--blog-primary);
    color: white;
}

.blog-pagination a.nav-arrow {
    color: var(--blog-primary);
}

/* Call to Action Section */
.blog-bottom-cta {
    background-color: var(--blog-cta-bg);
    padding: 4rem 2rem;
    border-radius: 10px;
    margin-bottom: 4rem;
    text-align: center;
    border: 1px solid var(--blog-cta-border);
}

.blog-bottom-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.blog-bottom-cta h2 {
    font-size: 2.2rem;
    color: var(--blog-heading-color);
    margin-bottom: 1rem;
}

.blog-bottom-cta p {
    font-size: 1.1rem;
    color: var(--blog-text-color);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.blog-bottom-cta-btn {
    display: inline-block;
    background-color: var(--blog-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
    margin: 0 0.5rem 1rem;
}

.blog-bottom-cta-btn:hover {
    background-color: var(--blog-primary-dark);
}

.blog-bottom-cta-btn-secondary {
    background-color: white;
    color: var(--blog-primary);
    border: 1px solid var(--blog-primary);
}

.blog-bottom-cta-btn-secondary:hover {
    background-color: var(--blog-secondary);
}

/* Blog Post Page Styles */
.blog-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
}

.breadcrumb {
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--blog-meta-color);
}

.breadcrumb a {
    color: var(--blog-meta-color);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--blog-primary);
}

.blog-post-full {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--blog-card-shadow);
    margin-bottom: 3rem;
}

.blog-post-image {
    margin: -2rem -2rem 2rem;
    height: 400px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-header {
    margin-bottom: 2rem;
}

.blog-post-title {
    font-size: 2.5rem;
    color: var(--blog-heading-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.blog-post-meta-item {
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: var(--blog-meta-color);
}

.blog-post-meta-item i {
    margin-right: 0.5rem;
}

.blog-post-readings {
    color: var(--blog-text-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--blog-border);
}

.blog-post-content {
    color: var(--blog-text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    color: var(--blog-heading-color);
    margin: 2.5rem 0 1rem;
}

.blog-post-content h3 {
    font-size: 1.4rem;
    color: var(--blog-heading-color);
    margin: 2rem 0 1rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content blockquote {
    background-color: var(--blog-secondary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--blog-primary);
    font-style: italic;
    color: #444;
}

.blog-post-content blockquote p:last-child {
    margin-bottom: 0;
}

.blog-post-content ul, .blog-post-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 2rem 0;
}

.blog-post-content a {
    color: var(--blog-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.blog-post-content a:hover {
    border-color: var(--blog-primary);
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--blog-border);
}

.blog-tag {
    display: inline-block;
    background-color: var(--blog-tag-bg);
    color: var(--blog-tag-text);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.blog-tag:hover {
    background-color: #e5e5ff;
}

.blog-share {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.blog-share span {
    margin-right: 1rem;
    font-weight: 500;
    color: var(--blog-meta-color);
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.linkedin {
    background-color: #0077b5;
}

.email {
    background-color: #ea4335;
}

.print {
    background-color: #333;
}

/* Blog CTA Styling */
.blog-cta {
    background-color: var(--blog-cta-bg);
    border-radius: 8px;
    margin: 3rem 0;
    overflow: hidden;
    border: 1px solid var(--blog-cta-border);
}

.blog-cta-container {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.blog-cta-content {
    flex: 1;
    min-width: 250px;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.blog-cta-title {
    font-size: 1.5rem;
    color: var(--blog-heading-color);
    margin-bottom: 0.5rem;
}

.blog-cta-text {
    color: var(--blog-text-color);
    margin-bottom: 0;
}

.blog-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-cta-btn {
    display: inline-block;
    background-color: var(--blog-primary);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s;
}

.blog-cta-btn:hover {
    background-color: var(--blog-primary-dark);
}

.blog-cta-btn-secondary {
    background-color: white;
    color: var(--blog-primary);
    border: 1px solid var(--blog-primary);
}

.blog-cta-btn-secondary:hover {
    background-color: var(--blog-secondary);
}

/* Related Posts */
.related-posts {
    margin-bottom: 4rem;
}

.related-posts-title {
    font-size: 1.8rem;
    color: var(--blog-heading-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1150px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .featured-post {
        flex-direction: column;
    }
    
    .featured-post-image, .featured-post-content {
        width: 100%;
    }
    
    .featured-post-image {
        height: 300px;
    }
    
    .featured-post-content {
        padding: 2rem;
    }
    
    .header-content {
        padding: 0 1.5rem;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -80%;
        width: 80%;
        height: 100vh;
        background-color: white;
        z-index: 1000;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        overflow-y: auto;
        padding: 4rem 1.5rem 1.5rem;
    }
    
    .main-nav.mobile-active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-nav ul li a {
        padding: 1rem 0;
        display: block;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
    
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s;
    }
    
    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-header {
        padding: 3rem 1rem 2rem;
    }
    
    .blog-header h1 {
        font-size: 2.2rem;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-image {
        height: 250px;
    }
    
    .blog-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-cta-content {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-logo {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-links {
        justify-content: space-around;
    }
    
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom p {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .footer-column {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-column h3 {
        padding-bottom: 10px;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .blog-post-meta {
        flex-direction: column;
    }
    
    .blog-post-meta-item {
        margin-bottom: 0.5rem;
    }
    
    .blog-post-content {
        font-size: 1rem;
    }
    
    .blog-post-full {
        padding: 1.5rem;
    }
    
    .blog-post-image {
        margin: -1.5rem -1.5rem 1.5rem;
        height: 200px;
    }
    
    .footer-column {
        width: 100%;
        min-width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Search and Filtering */
.blog-search-container {
    margin: 0 auto 3rem;
    max-width: 800px;
}

.blog-search-form {
    display: flex;
}

.blog-search-input {
    flex-grow: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--blog-border);
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.blog-search-button {
    background-color: var(--blog-primary);
    color: white;
    border: none;
    padding: 0 1.5rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.blog-search-button:hover {
    background-color: var(--blog-primary-dark);
}

.blog-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.blog-filter-tag {
    display: inline-block;
    background-color: white;
    color: var(--blog-meta-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid var(--blog-border);
    text-decoration: none;
    transition: all 0.2s;
}

.blog-filter-tag:hover, .blog-filter-tag.active {
    background-color: var(--blog-primary);
    color: white;
    border-color: var(--blog-primary);
}

/* Print Styles */
@media print {
    header, footer, .blog-cta, .blog-share, .related-posts {
        display: none !important;
    }
    
    .blog-post-full {
        box-shadow: none;
        padding: 0;
    }
    
    .blog-post-content {
        font-size: 12pt;
        line-height: 1.6;
    }
    
    .blog-post-title {
        font-size: 18pt;
    }
    
    .blog-post-image {
        height: auto;
        margin: 0 0 20pt;
    }
}

/* Mobile Navigation */
.mobile-menu-toggle {
    background: none;
    border: none;
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 24px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--blog-primary);
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li {
    margin-left: 2rem;
}

.main-nav ul li a {
    color: var(--blog-text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav ul li a:hover, .main-nav ul li a.active {
    color: var(--blog-primary);
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn-secondary, .btn-primary {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--blog-primary);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--blog-primary);
    border: 1px solid var(--blog-primary);
}

.btn-primary:hover {
    background-color: var(--blog-primary-dark);
}

.btn-secondary:hover {
    background-color: var(--blog-secondary);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--blog-primary);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--blog-primary-dark);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
    }
}

/* Extra fixes for footer bullet points */
.site-footer ul {
    list-style-type: none !important;
    list-style-image: none !important;
}

.site-footer ul li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    padding-left: 0 !important;
    background-image: none !important;
}

.site-footer ul li:before {
    content: none !important;
    display: none !important;
}

/* Fix for all bullet points in the footer */
.footer-column ul li:before,
.footer-column ul li::before,
.footer-links ul li:before,
.footer-links ul li::before {
    display: none !important;
    content: none !important;
}

/* Ensure footer has correct spacing */
@media (max-width: 768px) {
    .footer-column {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-column h3 {
        padding-bottom: 10px;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
} </pre></body></html>