.blog-detail {
    padding: 3rem 0 4rem;
}

.blog-detail-header {
    max-width: 920px;
    margin: 0 auto 2rem;
}

.blog-detail-header .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.24em;
    font-weight: 700;
    text-transform: uppercase;
    color: #7e604f;
}

.blog-detail-header h1 {
    font-size: clamp(2.6rem, 4vw, 3.6rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.blog-detail-header .intro {
    max-width: 760px;
    margin: 0 auto;
    color: #5b4638;
    font-size: 1.05rem;
    line-height: 1.9;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    color: #8c6c55;
    margin-top: 1.25rem;
    font-size: 0.95rem;
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.blog-detail-image {
    max-width: 980px;
    margin: 0 auto 2.5rem;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 42px rgba(35, 22, 14, 0.08);
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.blog-detail-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-detail-body p {
    color: #4f3f34;
    line-height: 1.9;
    margin-bottom: 1.6rem;
    font-size: 1rem;
}

.blog-detail-body h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.65rem;
    margin: 2.5rem 0 1rem;
    color: #2f231c;
}

.blog-detail-body blockquote {
    margin: 2rem 0;
    padding: 1.4rem 1.5rem;
    background: #fbf3e8;
    border-left: 4px solid #d7b89e;
    color: #5f4a3d;
    font-style: italic;
    line-height: 1.8;
}

.blog-detail-body ul {
    margin: 1.5rem 0;
    padding-left: 1.3rem;
    color: #5b4638;
    line-height: 1.85;
}

.blog-detail-body li {
    margin-bottom: 0.75rem;
}

.detail-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(75, 52, 36, 0.12);
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.detail-tags a {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: #f4e7dc;
    color: #8b6f5a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
}

.detail-share a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #5d483b;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 992px) {
    .blog-detail-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .blog-detail {
        padding: 2rem 0 3rem;
    }

    .blog-detail-body {
        padding: 0 0.75rem;
    }

    .detail-footer {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 576px) {
    .blog-detail-header h1 {
        font-size: 2.4rem;
    }

    .blog-detail-meta {
        justify-content: center;
        text-align: center;
    }
}
