/* Subpage Styles (News Detail, etc.) */
.sub-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sub-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-header .logo img {
    height: 40px;
}

.sub-header .nav-link-custom {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.breadcrumb-section {
    padding: 20px 0;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.breadcrumb-custom {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb-custom a {
    color: #0055FF;
    text-decoration: none;
}

.breadcrumb-custom span {
    margin: 0 10px;
    color: #ccc;
}

.news-detail-wrapper {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.news-detail-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.news-detail-title {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 20px;
}

.news-detail-meta {
    font-size: 14px;
    color: #999;
    display: flex;
    gap: 20px;
}

.news-detail-meta span i {
    margin-right: 5px;
}

.news-detail-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.news-detail-content p {
    margin-bottom: 25px;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 4px;
}

.news-detail-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-back {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.btn-back:hover {
    color: #0055FF;
}

/* Share icons or other elements can go here */
