 .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

       
        .news-detail {
            background-color: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
            padding: 30px;
            margin-bottom: 30px;
        }

        .news-title {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .news-meta {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            color: var(--light-text);
            font-size: 14px;
            gap: 15px;
        }

        
        .img-wrapper {
            position: relative;
            width: 100%;
            padding-top: 56.25%; 
            margin-bottom: 20px;
            border-radius: 8px;
            overflow: hidden;
            background: #eee;
        }

        .news-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            user-select: none;
            pointer-events: none; 
        }

        .news-content {
            font-size: 16px;
            line-height: 1.8;
        }

        .news-content p { margin-bottom: 20px; }


        @media (max-width: 768px) {
            .header-content { flex-direction: column; text-align: center; gap: 10px; }
            .news-title { font-size: 22px; }
        }