.pem-detailberita-kegiatan {
            max-width: 1350px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .news-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .main-article {
            width: 100%;
        }

        .article-image-container {
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: 8px;
            margin-bottom: 24px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .article-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .article-image-container:hover img {
            transform: scale(1.02);
        }

        .article-category {
            color: #3b82f6;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: inline-block;
        }

        .article-title {
            font-family: 'Merriweather', serif;
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 16px;
            color: #111;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 0.9rem;
            color: #6b7280;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e5e7eb;
        }

        .author-name {
            font-weight: 500;
            color: #1f2937;
        }

        .article-content p {
            font-size: 1.1rem;
            color: #374151;
            margin-bottom: 20px;
            text-align: justify;
        }

        .sidebar {
            background-color: #fff;
        }

        .sidebar-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #60a5fa;
            display: inline-block;
        }

        .related-list {
            list-style: none;
        }

        .related-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            cursor: pointer;
            group: hover;
        }

        .related-thumb {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .related-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .related-info h4 {
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 5px;
            transition: color 0.2s;
        }

        .related-item:hover .related-info h4 {
            color: #3b82f6;
        }

        .related-info span {
            font-size: 0.8rem;
            color: #6b7280;
        }

        @media (max-width: 900px) {
            .news-layout {
                grid-template-columns: 1fr;
            }
            
            .article-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 600px) {
            .article-title {
                font-size: 1.75rem;
            }
            .article-image-container {
                height: 250px;
            }
        }

        .running-text-wrapper {
            background-color: #1f2937;
            color: #ffffff;
            overflow: hidden;
            white-space: nowrap;
            padding: 12px 0;
            margin-bottom: 25px;
            border-bottom: 3px solid #3b82f6;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .running-text-content {
            display: inline-block;
            padding-left: 100%;
            animation: scroll-left 25s linear infinite;
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }