<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Fix for site header background */
.site-header-content {
    /* Exact gradient from left bottom #F0946D to right up #F5BF8B */
    background: linear-gradient(45deg, #F0946D 0%, #F5BF8B 100%);
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6vw 3vw;
    min-height: 200px;
    max-height: 340px;
    text-align: center;
    color: #fff;
}

/* Ensure the site title and description are visible */
.site-header-content .site-title {
    z-index: 10;
    margin: 0 0 .15em;
    padding: 0;
    color: #fff;
    font-size: 4.8rem;
    font-weight: 700;
    letter-spacing: -.015em;
}

.site-header-content p {
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.2em;
    opacity: .9;
    color: #fff;
    font-size: 2rem;
}

/* Make header navigation visible only on post pages */
.post-template .gh-head {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.post-template .gh-head .gh-head-inner {
    background: transparent;
}

/* Author avatar styling */
.author-avatar img,
.author-profile-image img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar svg,
.author-profile-image svg {
    width: 40px;
    height: 40px;
}

@media (max-width: 600px) {
    .site-header-content .site-title {
        font-size: 2.8rem;
    }
    
    .site-header-content p {
        max-width: 80vmin;
        font-size: 1.8rem;
    }
} </pre></body></html>