        .news-detail-section {
            padding: 80px 0;
        }
        
        .news-detail-card {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
        }
        
        .news-detail-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .news-detail-meta {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #e9ecef;
        }
        
        .meta-item {
            display: flex;
            align-items: center;
            color: #6c757d;
        }
        
        .meta-item i {
            color: #0d6478;
            margin-right: 8px;
            font-size: 1.1rem;
        }
        
        .news-detail-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 25px;
            line-height: 1.3;
        }
        
        .news-detail-content {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #495057;
            white-space: pre-wrap;
        }
        
        .sidebar-widget {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        
        .widget-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
        }
        
        .recent-news-item {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .recent-news-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .recent-news-image {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .recent-news-content h6 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        
        .recent-news-content h6 a {
            color: #1a1a1a;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .recent-news-content h6 a:hover {
            color: #0d6478;
        }
        
        .recent-news-date {
            font-size: 0.85rem;
            color: #6c757d;
        }
        
        .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #e9ecef;
            color: #495057;
            padding: 10px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-back:hover {
            background: #0d6478;
            color: white;
        }
        
        @media (max-width: 768px) {
            .news-detail-card {
                padding: 30px 20px;
            }
            
            .news-detail-title {
                font-size: 1.8rem;
            }
            
            .news-detail-meta {
                flex-direction: column;
                gap: 10px;
            }
        }