/* Layout & Font */
:root {
    --font-primary: 'Neue Haas Grotesk Display Pro', 'Inter', sans-serif;
    --prudent-red: #DD221B;
    --border-gray: #E5E5E5;
    --text-muted: #666666;
}

.detail-view-spacing {
    padding-top: 30px;
    padding-bottom: 60px;
}

/* Left Column Styling */
.main-video-container {
    width: 927px;
    height: 519px;
    background: #000;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.main-video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.main-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.play-btn-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.play-btn-large i {
    font-size: 30px;
    margin-left: 5px;
    color: #111;
}

.video-footer-links {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.video-footer-links .v-logo { height: 30px; }
.video-footer-links .v-socials i { 
    color: #fff; 
    margin-right: 15px; 
    font-size: 18px; 
    cursor: pointer;
}

/* Information Section */
.bulletin-detail-info {
    padding-top: 25px;
}

.main-title {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1.2;
}

.detail-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Share Row */
.share-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}

.share-label { font-weight: 700; font-size: 14px;  color: #373737;}

.share-buttons { display: flex; gap: 10px; }

.s-btn {
    background: #fff;
    border: 1px solid #111;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
    color: #373737;
}

.s-btn:hover { background: #f5f5f5; }

/* Description & Tags */
.description-section { margin: 30px 0; }
.description-section h3 { font-size: 16px; margin-bottom: 10px; }
.description-section p { font-size: 15px; line-height: 1.6; color: #333; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
    background: #F2F2F2;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
}

/* Right Column - Playlist */
.playlist-widget {
    background: #1E1E1E;
    color: #fff;
    border-radius: 4px;
    padding: 20px;
}

.playlist-widget .widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
}

.playlist-widget h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    flex: 1;
    min-width: 0;
}

.playlist-widget .view-all {
    color: var(--prudent-red);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
}

.pl-item {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    align-items: flex-start;
}

.playlist-items .pl-item:first-child {
    margin-top: 0;
}

.pl-info {
    flex: 1;
    min-width: 0;
}

.pl-thumb {
    width: 140px;
    height: 80px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.pl-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pl-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0,0,0,0.8);
    font-size: 10px;
    padding: 2px 4px;
}

.pl-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.pl-play i { font-size: 12px; color: #000; margin-left: 2px; }

.pl-cat {
    color: var(--prudent-red);
    font-size: 11px;
    font-weight: 700;
    display: block;
}

.pl-info h4 {
    font-size: 14px;
    margin: 5px 0 0;
    line-height: 1.3;
    font-weight: 600;
    color: #fff;
}

/* Latest News / Most Read List */
.latest-news-widget {
    background-color: #F6F6F6;
    margin-top: 30px;
    padding: 0 20px 10px;
    border-radius: 4px;
}

.latest-news-widget h3 {
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    padding-top: 15px;
    margin-bottom: 0;
}

.latest-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.latest-news-list li {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.latest-news-list li:last-child {
    border-bottom: none;
}

.news-num {
    font-weight: 800;
    font-size: 16px;
    min-width: 20px;
    flex-shrink: 0;
    line-height: 1.4;
}

.latest-news-list li a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.latest-news-list li a:hover {
    color: var(--prudent-red);
}

/* Related Coverage Section */
.related-coverage-section {
    margin-top: 50px;
    border-top: 1px solid #E5E5E5;
    padding-top: 30px;
    margin-left: 0;
     max-width: 927px;
    width: 100%;
}

.section-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
}

.related-cards-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #F0F0F0;
    padding: 15px;
    border-radius: 4px;
    gap: 25px;
    transition: 0.2s;
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    border-color: #ddd;
}

.rel-thumb {
    width: 237px;
    height: 132px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.rel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rel-play-btn i {
    font-size: 14px;
    color: #111;
    margin-left: 2px;
}

.rel-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
}

.rel-info .rel-category {
    font-size: 12px;
    font-weight: 800;
    color: #DD221B; /* Prudent Red */
    display: block;
    margin-bottom: 8px;
}

.rel-info h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: #111;
}

.rel-info .rel-meta {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Pagination Navigation */
.bulletin-pagination {
    max-width: 927px;
    margin-top: 40px;
    padding: 25px 0;
    border-top: 1px solid #E5E5E5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pag-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s;
}

.pag-link:hover {
    color: #111;
}

.pag-arrow {
    width: 30px;
    height: 30px;
    border: 1px solid #E5E5E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #999;
}

.pag-link:hover .pag-arrow {
    border-color: #111;
    color: #111;
}
.right-col{
    padding-top: 0px !important;
}
/* --- MOBILE RESPONSIVE (FOR TABLETS & PHONES) --- */

@media (max-width: 991px) {
    /* 1. Layout Order: Main Content (Left) First, Sidebar (Right) Second */
    .main-content-flex {
        display: flex;
        flex-direction: column; /* Stacks Left Col on top, Right Col below */
        gap: 30px;
    }

    .main-container {
        width: 100% !important;
        padding: 0 15px;
    }

    .left-col, .right-col {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* 2. Responsive Main Video */
    .main-video-container {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
        border-radius: 0; /* Full bleed look on mobile */
    }

    /* 3. Titles & Meta */
    .main-title {
        font-size: 20px !important;
        font-weight: 800;
        line-height: 1.3;
    }

    .detail-meta {
        font-size: 13px;
        color: #666;
        margin-bottom: 20px;
    }

    /* 4. Circular Share Buttons (Exactly like screenshot) */
    .share-row {
        justify-content: space-between;
        padding: 15px 0;
    }

    .share-buttons {
        gap: 10px;
    }

    .s-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 0; /* Hides the text labels */
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #999;
        background-color: #fff;
    }

    .s-btn i {
        font-size: 18px;
        color: #111;
        margin: 0 !important;
    }

    /* 5. Related Video Coverage (Standard Row Items) */
    .related-card {
        padding: 12px;
        gap: 15px;
    }

    .rel-thumb {
        width: 120px; /* Smaller thumbnails for mobile row */
        height: 70px;
    }

    .rel-info h4 {
        font-size: 14px;
        line-height: 1.2;
    }

    /* 6. Pagination Stacking */
    .bulletin-pagination {
        max-width: 100%;
        font-size: 12px;
    }

    /* 7. Bottom Sidebar Widgets (Playlist & News) */
    .playlist-widget {
        margin-top: 10px;
        border-radius: 8px;
    }

    .latest-news-widget {
        background-color: #f6f6f6;
        padding: 15px;
        margin-bottom: 40px; /* Space for bottom nav */
    }
}

/* --- FLOATING BOTTOM NAVIGATION STYLES --- */
.mobile-bottom-nav {
    display: none; /* Hidden on Desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75px;
    background-color: #000000;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    justify-content: space-around;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.4);
    padding: 0 10px;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex; /* Show on mobile */
    }
    body {
        padding-bottom: 80px; /* Prevent nav from covering content */
    }
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    flex: 1;
}

.nav-icon {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    margin-bottom: 4px;
}

.nav-item span {
    font-size: 11px;
    font-weight: 700;
}

.nav-item.active {
    color: #E11B22;
}

.nav-item.active .nav-icon {
    fill: #E11B22;
}

.share-toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.share-toast.is-visible {
    opacity: 1;
}

.bulletin-desc-html {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.bulletin-desc-html p {
    margin: 0 0 12px;
}