﻿.blog-detail-page {
    background: #fff;
    color: #302a26;
}


.blog-detail-header {
    padding: 48px 0 20px;
}

.blog-detail-title {
    max-width: 900px;
    margin: 0;
    font-size: clamp( 2.1rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #302a26;
}

.blog-detail-summary {
    max-width: 760px;
    margin-top: 22px;
    margin-bottom: 0;
    color: #746b65;
    font-size: 1.15rem;
    line-height: 1.75;
}


.blog-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee7e1;
}


.blog-detail-cover {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border-radius: 22px;
    background: #f3efeb;
}

.blog-content {
    color: #403934;
    font-size: 1.08rem;
    line-height: 1.9;
}

    .blog-content p {
        margin-bottom: 1.4rem;
    }

    .blog-content h2 {
        margin-top: 2.5rem;
        margin-bottom: 1rem;
        color: #302a26;
        font-size: 1.8rem;
        font-weight: 700;
    }

    .blog-content h3 {
        margin-top: 2rem;
        margin-bottom: .9rem;
        color: #302a26;
        font-size: 1.4rem;
        font-weight: 700;
    }

    .blog-content img {
        max-width: 100%;
        height: auto;
        margin: 24px 0;
        border-radius: 16px;
    }

    .blog-content blockquote {
        margin: 28px 0;
        padding: 20px 24px;
        background: #f7f3ef;
        border-left: 4px solid #8c674d;
        border-radius: 0 12px 12px 0;
        color: #62574f;
    }


.blog-author-card {
    padding: 24px;
    background: #f7f3ef;
    border: 1px solid #e9e0d8;
    border-radius: 18px;
}

.blog-author-card-avatar {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 50%;
}

.blog-related-section {
    background: #f7f3ef;
}

.blog-related-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ebe4de;
    border-radius: 16px;
    transition: transform .2s ease, box-shadow .2s ease;
}

    .blog-related-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 34px rgba(57, 45, 36, .08);
    }

.blog-related-image {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    background: #eee;
}


@@media (
            max-width: 767.98px) {
    .blog-detail-header {
        padding-top: 28px;
    }

    .blog-detail-title {
        font-size: 2.2rem;
    }

    .blog-detail-cover {
        border-radius: 14px;
    }

    .blog-content {
        font-size: 1rem;
    }
}
