/* News Detail Page Styles */
.news-detail-header {
    padding: 30px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.news-detail-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #6c757d;
}

.news-detail-breadcrumb a {
    color: #0f3460;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-detail-breadcrumb a:hover {
    color: #e94560;
}

.news-detail-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3436;
    line-height: 1.4;
}

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

.news-detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-detail-content {
    padding: 50px 0;
    max-width: 850px;
    margin: 0 auto;
}

.news-detail-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.news-detail-body {
    font-size: 16px;
    line-height: 2.0;
    color: #495057;
}

.news-detail-body p {
    margin-bottom: 28px;
    text-align: justify;
    text-indent: 2em;
}

.news-detail-body h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #0f3460;
    padding-bottom: 12px;
    border-bottom: 3px solid #e94560;
}

.news-detail-body h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #2d3436;
}

.news-detail-body ul {
    margin-left: 28px;
    margin-bottom: 28px;
}

.news-detail-body li {
    list-style: disc;
    margin-bottom: 12px;
    padding-left: 10px;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.news-tag {
    padding: 8px 18px;
    background: #f8f9fa;
    border-radius: 20px;
    font-size: 14px;
    color: #6c757d;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.news-tag:hover {
    background: #0f3460;
    color: #fff;
    border-color: #0f3460;
}

.news-share {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
}

.share-text {
    font-weight: 600;
    color: #2d3436;
    font-size: 15px;
}

.share-links {
    display: flex;
    gap: 10px;
}

.share-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #e9ecef;
    color: #6c757d;
    transition: all 0.3s ease;
}

.share-link:hover {
    background: #0f3460;
    border-color: #0f3460;
    color: #fff;
    transform: translateY(-2px);
}

.related-news {
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
}

.related-news-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2d3436;
    padding-bottom: 12px;
    border-bottom: 2px solid #e94560;
}

.related-news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.related-news-item {
    padding: 22px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.related-news-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-3px);
    border-color: #0f3460;
}

.related-news-title-link {
    font-size: 16px;
    font-weight: 600;
    color: #2d3436;
    line-height: 1.5;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.related-news-title-link:hover {
    color: #e94560;
}

.related-news-date {
    font-size: 14px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .news-detail-title { font-size: 24px; }
    .news-detail-image { height: 250px; }
    .news-detail-content { padding: 30px 15px; }
    .news-detail-body { font-size: 15px; line-height: 1.8; }
    .news-detail-body p { text-indent: 1em; }
    .news-share { flex-direction: column; gap: 15px; padding: 20px; }
    .related-news-list { grid-template-columns: 1fr; }
}
