.news-detail-section {
    background: #f8fafc;
    padding: 3rem 0 2rem;
}

.news-detail-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.news-title {
    color: #1e40af;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.news-category {
    background: #2563eb;
    color: #fff;
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.news-date {
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

.news-author {
    color: #64748b;
    font-size: 1rem;
}

.news-short-desc {
    background: #f1f5f9;
    border-left: 4px solid #2563eb;
    padding: 1.5rem;
    border-radius: 0 10px 10px 0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.6;
}

.news-content {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.8;
}

.news-content h3 {
    color: #1e40af;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    font-size: 1.4rem;
}

.news-content h4 {
    color: #1e40af;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.2rem;
}

.news-content p {
    margin-bottom: 1.2rem;
}

.news-content ul, .news-content ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.news-content li {
    margin-bottom: 0.5rem;
}

.news-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    border: 2px dashed #cbd5e0;
}

.news-image i {
    font-size: 3rem;
    color: #94a3b8;
}

.breadcrumb-nav {
    background: none;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #64748b;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.share-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    text-decoration: none;
}

.related-news {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.related-news h4 {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.related-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.related-item:last-child {
    border-bottom: none;
}

.related-item a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.related-item a:hover {
    color: #2563eb;
}
ul.breadcrumb-menu {
    margin-left: 0px !important;
    padding-left: 0px !important;
}
.related-date {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}
nav .breadcrumb-menu li a,.breadcrumb-menu li::before{
    color: #1e40af !important;
    font-weight: bold;
}
.detail_single_page_custom .news-content{
    padding: 10px 5px !important;
}
.breadcrumb-menu li.active {
    color: #212529;
    font-weight: bold;
}
.share-buttons a {
    display: inline-block;
    text-decoration: none;
    border: 1px solid #0d6efd;
    padding: 5px 5px;
    font-size: 12px;
    border-radius: 7px;
    font-family: Montserrat-Regular;
}
@media (max-width: 768px) {
    .news-detail-card {
        padding: 2rem 1.5rem;
    }

    .news-title {
        font-size: 2rem;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .share-buttons {
        flex-wrap: wrap;
    }
}