.news-detail-page {
    background: #f8f9fa;
    min-height: 100vh;
}

/* News Details Ads Styles */
.news-details-ad {
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.news-details-ad-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-details-ad-image:hover {
    transform: scale(1.02);
}

.news-details-ad a {
    text-decoration: none;
    color: inherit;
    display: block;
}

@media (max-width: 768px) {
    .news-details-ad {
        padding: 15px;
    }
}


/* Sidebar Styles */
.sidebar-left, .sidebar-right {
    position: sticky;
    top: 20px;
}

.sidebar-section {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title.breaking {
    border-bottom-color: #dc3545;
    color: #dc3545;
}

.section-title.featured {
    border-bottom-color: #ffc107;
    color: #856404;
}

/* Main Content Styles */
.main-content {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.breadcrumb-nav {
    margin-bottom: 25px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #137df6;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Article Styles */
.article-header {
    margin-bottom: 25px;
}

.article-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 15px;
}

.article-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.article-meta .reporter-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.article-meta .reporter-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-meta .reporter-avatar i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: #6c757d;
    font-size: 18px;
}

.article-meta .reporter-details {
    flex: 1;
    min-width: 0;
}

.article-meta .reporter-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.article-meta .reporter-title {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.2;
}

.article-meta .reporter-date {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    color: #666;
    font-size: 14px;
}

.article-meta .reporter-date i {
    color: #007bff;
}

.article-meta .reporter-date span {
    font-weight: 500;
}

/* Social Share */
.social-share {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

.facebook-btn { background: #1877f2; }
.facebook-btn:hover { background: #166fe5; }

.twitter-btn { background: #1da1f2; }
.twitter-btn:hover { background: #1a91da; }

.whatsapp-btn { background: #25d366; }
.whatsapp-btn:hover { background: #22c55e; }

.copy-btn { background: #6c757d; }
.copy-btn:hover { background: #5a6268; }

/* Article Image */
.article-image {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 15px;
    font-size: 14px;
}

/* Article Body */
.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Reporter Info - Now integrated in article-meta */

/* Tags */
.article-tags {
    margin-bottom: 30px;
}

.article-tags h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #137df6;
    color: white;
    text-decoration: none;
}

/* Related News */
.related-news {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.related-news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    height: 210px;
}

.related-news-card:hover {
    transform: translateY(-3px);
}

.news-image {

    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 63%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content2 {
    padding: 15px;
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.news-title:hover {
    color: #137df6;
    text-decoration: none;
}

.news-meta {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Sidebar News Items */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-news-item, .breaking-news-item, .featured-news-item {
    display: flex;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f3f4;
}

.sidebar-news-item:last-child, .breaking-news-item:last-child, .featured-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-thumb {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content2 {
    flex: 1;
    min-width: 0;
}

.news-content2 .news-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-content2 .news-meta {
    font-size: 11px;
    color: #888;
}

/* Responsive Design */
@media (max-width: 991px) {
    .sidebar-left, .sidebar-right {
        position: static;
        margin-top: 20px;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .article-title {
        font-size: 24px;
    }
    
    .article-body {
        font-size: 16px;
    }
    
    .social-share {
        justify-content: center;
    }
    
    .sidebar-section {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .news-detail-page {
        padding: 10px 0;
    }
    
    .main-content {
        padding: 15px;
    }
    
    .sidebar-section {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .article-title {
        font-size: 20px;
    }
    
    .article-body {
        font-size: 15px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-share {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .related-news .row {
        margin: 0;
    }
    
    .related-news .col-md-6,
    .related-news .col-lg-4 {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .reporter-info {
        flex-direction: column;
        text-align: center;
    }
    
    .related-news .row {
        margin: 0;
    }
    
    .related-news .col-md-6,
    .related-news .col-lg-4 {
        padding: 0 10px;
    }
}