.elementor-14650 .elementor-element.elementor-element-d41c7d9{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-6c2d342 *//* News Detail Container */
            .news-detail-wrapper {
                max-width: 1200px;
                margin: 0 auto;
                padding: 40px 20px;
                font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            }
            
            .news-detail-container {
                display: grid;
                grid-template-columns: 1fr 350px;
                gap: 40px;
                align-items: start;
            }
            
            /* Main Content */
            .news-detail-main {
                background: #ffffff;
                border-radius: 8px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                overflow: hidden;
            }
            
            .news-detail-image {
                width: 100%;
                height: auto;
                max-height: 500px;
                object-fit: cover;
                display: block;
            }
            
            .news-detail-content {
                padding: 30px;
            }
            
            .news-detail-category {
                display: inline-block;
                background: #0073aa;
                color: #ffffff;
                padding: 6px 12px;
                border-radius: 4px;
                font-size: 13px;
                font-weight: 600;
                text-transform: uppercase;
                margin-bottom: 15px;
            }
            
            .news-detail-title {
                font-size: 32px;
                font-weight: 700;
                line-height: 1.3;
                color: #1a1a1a;
                margin: 0 0 15px 0;
            }
            
            .news-detail-date {
                color: #666;
                font-size: 14px;
                margin-bottom: 25px;
                display: flex;
                align-items: center;
                gap: 5px;
            }
            
            .news-detail-date:before {
                content: "📅";
                font-size: 16px;
            }
            
            .news-detail-body {
                font-size: 16px;
                line-height: 1.8;
                color: #333;
            }
            
            .news-detail-body p {
                margin-bottom: 16px;
            }
            
            .news-detail-body img {
                max-width: 100%;
                height: auto;
                border-radius: 4px;
            }
            
            /* Sidebar - Recent News */
            .news-sidebar {
                position: sticky;
                top: 20px;
            }
            
            .recent-news-widget {
                background: #ffffff;
                border-radius: 8px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                padding: 25px;
            }
            
            .recent-news-title {
                font-size: 20px;
                font-weight: 700;
                color: #1a1a1a;
                margin: 0 0 20px 0;
                padding-bottom: 15px;
                border-bottom: 3px solid #0073aa;
            }
            
            .recent-news-list {
                list-style: none;
                padding: 0;
                margin: 0;
            }
            
            .recent-news-item {
                margin-bottom: 20px;
                padding-bottom: 20px;
                border-bottom: 1px solid #e5e5e5;
            }
            
            .recent-news-item:last-child {
                margin-bottom: 0;
                padding-bottom: 0;
                border-bottom: none;
            }
            
            .recent-news-link {
                text-decoration: none;
                color: inherit;
                display: block;
                transition: all 0.3s ease;
            }
            
            .recent-news-link:hover {
                transform: translateX(5px);
            }
            
            .recent-news-image-wrapper {
                width: 100%;
                height: 150px;
                overflow: hidden;
                border-radius: 6px;
                margin-bottom: 12px;
            }
            
            .recent-news-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s ease;
            }
            
            .recent-news-link:hover .recent-news-image {
                transform: scale(1.05);
            }
            
            .recent-news-item-title {
                font-size: 15px;
                font-weight: 600;
                line-height: 1.4;
                color: #1a1a1a;
                margin: 0 0 8px 0;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            
            .recent-news-link:hover .recent-news-item-title {
                color: #0073aa;
            }
            
            .recent-news-item-date {
                font-size: 13px;
                color: #666;
                display: flex;
                align-items: center;
                gap: 5px;
            }
            
            .recent-news-item-date:before {
                content: "📅";
                font-size: 14px;
            }
            
            /* Loading State */
            .news-loading {
                text-align: center;
                padding: 60px 20px;
                font-size: 18px;
                color: #666;
            }
            
            .news-error {
                text-align: center;
                padding: 60px 20px;
                background: #fff;
                border-radius: 8px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            }
            
            .news-error h2 {
                font-size: 24px;
                color: #d63638;
                margin-bottom: 15px;
            }
            
            .news-error p {
                font-size: 16px;
                color: #666;
                margin-bottom: 20px;
            }
            
            .news-error a {
                display: inline-block;
                background: #0073aa;
                color: #ffffff;
                padding: 10px 20px;
                border-radius: 4px;
                text-decoration: none;
                transition: background 0.3s ease;
            }
            
            .news-error a:hover {
                background: #005a87;
            }
            
            /* Responsive Design */
            @media (max-width: 968px) {
                .news-detail-container {
                    grid-template-columns: 1fr;
                    gap: 30px;
                }
                
                .news-sidebar {
                    position: static;
                }
                
                .news-detail-title {
                    font-size: 26px;
                }
            }
            
            @media (max-width: 640px) {
                .news-detail-wrapper {
                    padding: 20px 15px;
                }
                
                .news-detail-content {
                    padding: 20px;
                }
                
                .news-detail-title {
                    font-size: 22px;
                }
                
                .news-detail-body {
                    font-size: 15px;
                }
                
                .recent-news-widget {
                    padding: 20px;
                }
            }
/* ========== IMAGE - UKURAN ASLI ========== */
        .news-detail-image {
            width: 100%;
            height: auto !important; /* override apapun yang memotong */
            max-width: 100%;
            object-fit: contain !important; /* tampilkan full tanpa crop */
            display: block;
            margin-bottom: 24px;
            border-radius: 8px;
        }

        /* ========== SHARE BUTTONS ========== */
        .news-share-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
            flex-wrap: wrap;
        }

        .news-share-label {
            font-size: 14px;
            font-weight: 600;
            color: #444;
        }

        .news-share-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none !important;
            color: #fff !important;
            transition: opacity 0.2s ease;
        }

        .news-share-btn:hover {
            opacity: 0.85;
            color: #fff !important;
        }

        .news-share-btn.wa  { background-color: #25D366; }
        .news-share-btn.fb  { background-color: #1877F2; }
        .news-share-btn.ig  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

        .news-share-btn svg {
            width: 16px;
            height: 16px;
            fill: #fff;
            flex-shrink: 0;
        }/* End custom CSS */