.blog-detail-hero {
    background: linear-gradient(90deg, rgba(45, 80, 22, 1) 24%, rgba(99, 133, 99, 1) 80%, rgba(143, 176, 138, 1) 92%, rgba(232, 245, 224, 1) 100%);
    min-height: 340px;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.blog-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px, 70px 70px;
    opacity: 0.5;
}

.blog-detail-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.detail-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 0.95rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-detail-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.blog-detail-hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 760px;
    opacity: 0.95;
}

.blog-detail-section {
    padding: 80px 0;
    background: var(--off-white);
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
    align-items: start;
}

.blog-article {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.article-intro-box {
    background: var(--extra-light-green);
    border-left: 4px solid var(--soft-green);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.blog-article h2 {
    font-size: 1.9rem;
    color: var(--primary-green);
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.blog-article h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 0.9rem;
    font-weight: 700;
}

.blog-article p {
    font-size: 1.06rem;
    line-height: 1.85;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.blog-article ul {
    margin: 1rem 0 1.5rem 1.25rem;
}

.blog-article ul li {
    margin-bottom: 0.8rem;
    line-height: 1.75;
    color: var(--gray-dark);
}

.article-cta-box {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white);
    border-radius: 20px;
    padding: 2rem;
}

.article-cta-box h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.article-cta-box p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.5rem;
}

.article-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 110px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card ul li {
    margin-bottom: 0.9rem;
}

.sidebar-card ul li:last-child {
    margin-bottom: 0;
}

.sidebar-card a {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.sidebar-card a:hover {
    color: var(--primary-green);
}

@media (max-width: 1024px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-detail-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-detail-hero {
        min-height: auto;
        padding: 60px 0;
    }

    .blog-detail-hero-content h1 {
        font-size: 2.1rem;
    }

    .blog-detail-hero-content p {
        font-size: 1.05rem;
    }

    .blog-article {
        padding: 1.5rem;
    }

    .blog-article h2 {
        font-size: 1.5rem;
    }

    .article-cta-buttons {
        flex-direction: column;
    }

    .article-cta-buttons a {
        width: 100%;
        justify-content: center;
    }
}