/**
 * Single blog post — article typography (loads outside Vite).
 */

.blog-post-page {
    width: 100%;
}

.blog-article {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #44403c;
}

.blog-article > * + * {
    margin-top: 1.25rem;
}

.blog-article h2 {
    margin-top: 2.25rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: #1c1917;
}

.blog-article h2:first-child {
    margin-top: 0;
}

.blog-article p {
    margin-top: 1rem;
}

.blog-article p:first-child {
    margin-top: 0;
}

.blog-article a {
    font-weight: 500;
    color: #83582c;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(131, 88, 44, 0.35);
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.blog-article a:hover {
    color: #6d4829;
    text-decoration-color: rgba(109, 72, 41, 0.55);
}

.blog-article strong {
    font-weight: 600;
    color: #292524;
}

.blog-article ul,
.blog-article ol {
    margin-top: 1rem;
    padding-left: 1.35rem;
}

.blog-article li {
    margin-top: 0.5rem;
}

.blog-post-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #83582c;
    text-decoration: none;
    transition: color 0.15s ease;
}

.blog-post-back:hover {
    color: #6d4829;
}

.blog-post-cta {
    margin-top: 3rem;
    padding: 1.75rem 1.5rem;
    border-radius: 4px;
    border: 1px solid #e7e5e4;
    background: linear-gradient(135deg, #fafaf9 0%, #ffffff 100%);
}

.blog-post-cta p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #57534e;
}

.blog-post-cta a {
    font-weight: 600;
    color: #83582c;
}

.blog-post-cta a:hover {
    color: #6d4829;
}
