.hero-bg {
    background: url(/public/images/banner/article_detail_banner.webp) center / cover !important;
}
/* ===== ARTICLE DETAIL SECTION ===== */
.article-detail-section {
    padding: 0px 10px;
}

.article-detail {
    background: rgba(20, 20, 25, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0px;
    overflow: hidden;
}

.article-header {
    padding: 30px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(232, 146, 58, 0.1) 0%, transparent 100%);
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.article-date {
    font-family: 'Playfair Display', serif;
    color: var(--orange);
}

.article-category {
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 12px;
    background: rgba(232, 146, 58, 0.2);
    border-radius: 0px;
    font-size: 12px;
}

.article-body {
    padding: 40px;
}

.article-lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--orange);
    margin: 30px 0 15px;
}

.article-body p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.article-body ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.article-body ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
}

.article-body ul li strong {
    color: #fff;
}

.article-body blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: rgba(232, 146, 58, 0.1);
    border-left: 4px solid var(--orange);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.article-footer {
    padding: 25px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--orange);
    color: #fff;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.share-link {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.share-link:hover {
    color: #fff;
}

/* Back to List Button */
.article-back {
    margin-top: 30px;
    display: none;
}
#bread-detail-subnav{
    background-color: #2d2d2d;
    
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.back-btn img {
    width: 20px;
    height: 20px;
    transform: rotate(180deg);
}

.back-btn:hover {
    background: var(--orange);
    color: #fff;
}

.back-btn:hover img {
    filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 768px) {
    .article-header {
        padding: 20px;
    }

    .article-title {
        font-size: 24px;
    }

    .article-body {
        padding: 20px;
    }

    .article-body h2 {
        font-size: 20px;
    }
    .article-detail-section{
        padding: 0px !important;
    }

    .article-footer {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

}
