.news-detail-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .news-header {
            margin-bottom: 30px;
            border-bottom: 3px solid #e74c3c;
            padding-bottom: 20px;
        }

        .news-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .news-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #7f8c8d;
            font-size: 0.95rem;
        }

        .news-meta i {
            color: #e74c3c;
            margin-right: 5px;
        }

        .featured-media {
            margin: 30px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .featured-media img,
        .featured-media video {
            width: 100%;
            height: auto;
            display: block;
        }

        .news-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #34495e;
            margin-bottom: 30px;
        }

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

        .media-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .media-item {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .media-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .media-item img,
        .media-item video {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
        }

        .back-button {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 25px;
            background: #e74c3c;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: background 0.3s ease;
            margin-bottom: 30px;
        }

        .back-button:hover {
            background: #c0392b;
            color: white;
        }

        .external-link {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 30px;
            background: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: background 0.3s ease;
        }

        .external-link:hover {
            background: #2980b9;
            color: white;
        }

        /* Lightbox for media */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }

        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .lightbox-content img,
        .lightbox-content video {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 8px;
        }

        .lightbox-close {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 35px;
            cursor: pointer;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .news-title {
                font-size: 1.8rem;
            }

            .news-content {
                font-size: 1rem;
            }

            .media-gallery {
                grid-template-columns: 1fr;
            }
        }