/* News Detail Section */
body{
    background: #fff;
}
img{
    max-width: 100%;
}
.news-detail-section {
    padding: 60px 0 80px;
    background-color: #fff;
}

.news-article {
    max-width: 900px;
    margin: 0 auto;
}

/* Article Title */
.article-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Article Meta */
.article-meta {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.publish-date {
    font-size: 13px;
    color: #999;
}

.publish-date span {
    color: #666;
}

/* Article Content */
.article-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content p:first-of-type {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Video Container */
.video-container {
    margin: 40px 0;
}

.video-placeholder {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background-color: #000;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.video-placeholder i.fa-play-circle {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder i.fa-play-circle:hover {
    color: #fff;
    transform: scale(1.1);
}

.video-placeholder > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-controls button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    padding: 5px;
    transition: color 0.3s;
}

.video-controls button:hover {
    color: #2850a0;
}

.video-controls .time {
    font-size: 12px;
    color: #fff;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.volume-control i {
    font-size: 14px;
    cursor: pointer;
}

/* Article Tags */
.article-tags {
    margin: 30px 0 20px;
}

.tag {
    display: inline-block;
    padding: 6px 15px;
    background-color: #f0f0f0;
    color: #2850a0;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.tag:hover {
    background-color: #2850a0;
    color: #fff;
}

/* Article Link */
.article-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background-color: #f8f8f8;
    border-left: 3px solid #2850a0;
    margin: 30px 0;
}

.article-link i {
    color: #2850a0;
    font-size: 16px;
}

.article-link a {
    color: #2850a0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.article-link a:hover {
    text-decoration: underline;
}

/* Article Navigation */
.article-navigation {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.nav-item {
    margin-bottom: 20px;
    padding: 15px 0;
}

.nav-label {
    font-size: 13px;
    color: #999;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.nav-item a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: color 0.3s;
    display: block;
}

.nav-item a:hover {
    color: #2850a0;
}

.nav-item.prev {
    border-bottom: 1px solid #f0f0f0;
}
@media (max-width: 768px) {
    .breadcrumb{
        width: 100%;
        overflow-x: auto;
    }
    .breadContainer{
        width: max-content;
        margin: 0;
    }
    .news-detail-section {
        padding: 30px 0 ;
    }
    .article-title{
        font-size: 24px;
    }
}