/* ==========================================================================
   SINGLE BLOG POST STYLES (Shared across individual blog pages)
   ========================================================================== */

.blog-single-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.blog-single-meta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-faded);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.blog-single-meta span.separator {
    color: var(--green-pale);
}

.blog-hero {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 50px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.blog-hero img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.blog-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--ink-soft);
}

.blog-content p {
    margin-bottom: 28px;
}

.blog-content h3 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: var(--ink);
}

.blog-content blockquote {
    font-family: var(--font-hand);
    font-size: 1.4rem;
    color: var(--green);
    line-height: 1.5;
    margin: 40px 0;
    padding-left: 24px;
    border-left: 3px solid var(--green-pale);
}

.blog-footer {
    max-width: 700px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--ink-faded);
    transition: color 0.3s var(--ease);
}

.back-to-blog:hover {
    color: var(--green);
}

.back-to-blog svg {
    transform: scaleX(-1);
    transition: transform 0.3s var(--ease);
}

.back-to-blog:hover svg {
    transform: scaleX(-1) translateX(-4px);
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 768px) {
    .blog-single-header {
        margin-bottom: 30px;
    }
    
    .blog-hero {
        margin-bottom: 36px;
        border-radius: 2px;
    }
    
    .blog-hero img {
        aspect-ratio: 3/2;
    }
    
    .blog-content h3 {
        font-size: 1.4rem;
        margin: 32px 0 16px;
    }
    
    .blog-content blockquote {
        font-size: 1.25rem;
        margin: 32px 0;
        padding-left: 20px;
    }
    
    .blog-footer {
        margin-top: 48px;
        padding-top: 32px;
    }
}

@media (max-width: 520px) {
    .blog-single-header {
        margin-bottom: 24px;
    }
    
    .blog-single-meta {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }
    
    .blog-hero {
        margin-bottom: 28px;
    }
    
    .blog-hero img {
        aspect-ratio: 4/3;
    }
    
    .blog-content {
        font-size: 1.05rem;
        line-height: 1.75;
    }
    
    .blog-content p {
        margin-bottom: 20px;
    }
    
    .blog-content blockquote {
        font-size: 1.15rem;
        margin: 24px 0;
        padding-left: 16px;
        border-left-width: 2px;
    }
    
    .blog-footer {
        margin-top: 40px;
        padding-top: 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}
