 .pnm-slider-container {
            display: flex;
            background: #0d1117;
            color: #ffffff;
             
            border-radius: 8px;
            overflow: hidden;
            margin: 20px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }
        .pnm-slider-main {
            width: 70%;
            position: relative;
            background-size: cover;
            background-position: center;
            transition: background-image 0.4s ease-in-out;
            display: flex;
            align-items: flex-end;
            min-height: 480px;
        }
        .pnm-slider-main::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
            z-index: 1;
        }
        .pnm-main-content {
            position: relative;
            z-index: 2;
            padding: 35px;
            width: 100%;
        }
        .pnm-main-cat {
            background: #0084FF;
            color: white;
            padding: 4px 10px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 3px;
            display: inline-block;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .pnm-main-title a {
            color: #ffffff !important;
            text-decoration: none !important;
            font-size: 30px;
            font-weight: 700;
            line-height: 1.25;
            display: block;
            margin-bottom: 12px;
        }
        .pnm-main-meta {
            font-size: 13px;
            color: #b3b3b3;
            margin-bottom: 12px;
        }
        .pnm-main-excerpt {
            font-size: 14.5px;
            color: #e1e4e8;
            line-height: 1.45;
        }
        .pnm-slider-thumbs {
            width: 30%;
            background: #161b22;
            display: flex;
            flex-direction: column;
            border-left: 1px solid #30363d;
        }
        .pnm-thumb-item {
            display: flex;
            align-items: center;
            padding: 16px 15px;
            border-bottom: 1px solid #21262d;
            cursor: pointer;
            transition: background 0.2s ease;
            text-decoration: none !important;
            color: #c9d1d9 !important;
        }
        .pnm-thumb-item:last-child { border-bottom: none; }
        .pnm-thumb-item:hover, .pnm-thumb-item.pnm-active {
            background: #21262d;
        }
        .pnm-thumb-item.pnm-active {
            border-left: 4px solid #0084FF;
            color: #ffffff !important;
        }
        .pnm-thumb-img {
            width: 70px;
            height: 50px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 12px;
            flex-shrink: 0;
        }
        .pnm-thumb-text {
            display: flex;
            flex-direction: column;
        }
        .pnm-thumb-status {
            font-size: 10px;
            font-weight: 700;
            color: #58a6ff;
            text-transform: uppercase;
            margin-bottom: 3px;
        }
        .pnm-thumb-title {
            font-size: 13px;
            font-weight: 600;
            line-height: 1.35;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .pnm-thumb-views {
            font-size: 11px;
            color: #8b949e;
            margin-top: 3px;
        }
        @media (max-width: 991px) {
            .pnm-slider-container { flex-direction: column; }
            .pnm-slider-main { width: 100%; min-height: 380px; }
            .pnm-slider-thumbs { width: 100%; border-left: none; border-top: 1px solid #30363d; }
            .pnm-main-title a { font-size: 24px; }
        }


         .pnm-ticker-wrap {
            display: flex;
            align-items: center;
            background: #111;
            color: #fff;
          
            height: 44px;
            overflow: hidden;
            border-radius: 4px;
            margin: 15px 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }
        .pnm-ticker-label {
            background: #d94f5c;
            color: #fff;
            padding: 0 16px;
            height: 100%;
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: 1px;
            text-transform: uppercase;
            white-space: nowrap;
            z-index: 3;
            box-shadow: 4px 0 10px rgba(0,0,0,0.3);
            position: relative;
        }
        .pnm-ticker-label::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 12px;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid #d94f5c;
        }
        .pnm-ticker-content {
            flex-grow: 1;
            overflow: hidden;
            height: 100%;
            position: relative;
        }
        .pnm-ticker-list {
            margin: 0;
            padding: 0;
            list-style: none;
            position: relative;
            height: 100%;
        }
        .pnm-ticker-item {
            height: 44px;
            line-height: 44px;
            padding-left: 25px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: none; /* Controlled via JS */
        }
        .pnm-ticker-item:first-child {
            display: block; /* Show first item initially */
        }
        .pnm-ticker-link {
            color: #e1e4e8 !important;
            text-decoration: none !important;
            font-size: 13.5px;
            font-weight: 600;
            transition: color 0.2s;
        }
        .pnm-ticker-link:hover {
            color: #ffb900 !important;
        }