.blog-page,
.blog-detail-page {
    background: linear-gradient(180deg, #f8f6f2 0%, #ffffff 280px);
}

.blog-hero {
    max-width: 760px;
    margin: 0 auto;
}

.blog-title {
    font-size: clamp(2rem, 2.6vw, 3rem);
    font-weight: 700;
    color: #1f2d1f;
    margin-bottom: 0.75rem;
}

.blog-subtitle {
    color: #5f6b5f;
    font-size: 1.05rem;
}

.blog-card {
    background: #fff;
    border: 1px solid rgba(140, 132, 108, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(38, 49, 38, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(38, 49, 38, 0.12);
}

.blog-card-image-link {
    display: block;
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: #ece9df;
}

.blog-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #5e695e;
    letter-spacing: 0.04em;
}

.blog-card-body {
    padding: 1rem 1rem 1.2rem;
}

.blog-meta {
    font-size: 0.85rem;
}

.blog-date {
    color: #6a746a;
}

.blog-category {
    background: rgba(67, 112, 72, 0.12);
    color: #2d6a33;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-weight: 600;
}

.blog-card-title {
    font-size: 1.18rem;
    line-height: 1.4;
    margin-bottom: 0.55rem;
}

.blog-card-title a {
    color: #1f2d1f;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #2b7a3f;
}

.blog-card-excerpt {
    color: #5a645a;
    line-height: 1.62;
    margin-bottom: 0.85rem;
}

.blog-read-more {
    color: #2b7a3f;
    font-weight: 600;
    text-decoration: none;
}

.blog-read-more:hover {
    text-decoration: underline;
}

.blog-empty {
    background: #fff;
    border: 1px dashed rgba(133, 126, 106, 0.5);
    border-radius: 14px;
}

.blog-article {
    background: #fff;
    border: 1px solid rgba(140, 132, 108, 0.2);
    border-radius: 18px;
    padding: clamp(1.1rem, 2.2vw, 2rem);
    box-shadow: 0 16px 30px rgba(38, 49, 38, 0.08);
}

.blog-article-title {
    font-size: clamp(1.5rem, 2.6vw, 2.4rem);
    line-height: 1.3;
    color: #1f2d1f;
    margin-bottom: 0;
}

.blog-article-cover {
    border-radius: 14px;
    overflow: hidden;
}

.blog-article-cover-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.blog-article-content {
    color: #2f3f30;
    line-height: 1.78;
    font-size: 1.04rem;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    color: #1f2d1f;
    margin-top: 1.4rem;
    margin-bottom: 0.8rem;
}

.blog-article-content img {
    max-width: 100%;
    border-radius: 12px;
    height: auto;
}

.related-blogs {
    border-top: 1px solid rgba(136, 128, 108, 0.22);
}

@media (max-width: 767px) {
    .blog-card-body {
        padding: 0.9rem;
    }

    .blog-article {
        padding: 1rem;
        border-radius: 14px;
    }
}
