/* FONT FALLBACK STACK */

body {
    font-family: "Neue Haas Grotesk Display Pro", "Inter", -apple-system, sans-serif;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.5;
    background: #fff;
}

.story-page-body {
    background-color: #fff !important;
    margin: 0;
    padding: 0;

    color: #111;
}

/* 1400px Main Wrapper */
.page-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;

    /* Red top border from design */
    padding-top: 20px;
}

.main-container {
    width: 1400px;
    display: flex;
    gap: 20px;
    padding: 0 20px;
    /* Aligns left: 20px */
}

/* Left Column: 927px */
.left-content {
    width: 927px;
    flex-shrink: 0;
}

/* Header Styles */
.category {
    color: #DD221B;
    font-weight: 700;
    font-size: 14px;
}

.article-header h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 6px 0;
    color: #020202;
}

.intro {
    font-size: 16px;
    font-weight: 500;
    color: #373737;
    margin-bottom: 15px;
}

.author-meta {
    font-size: 16px;
    font-weight: 500;
    color: #373737;
    margin-bottom: 20px;
}

.share-toast {
    position: fixed;
    left: 50%;
    bottom: 96px;
    transform: translateX(-50%) translateY(12px);
    background: rgba(0, 0, 0, 0.88);
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10000;
}

.share-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Share Buttons */
.share-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid #7F919B;
    border-bottom: 1px solid #7F919B;
    margin-bottom: 30px;
}

.share-row.border-top {
    border-bottom: none;
    border-top: 1px solid #7F919B;
    border-bottom: 1px solid #7F919B;
    margin-top: 40px;
}



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

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

.btn-share {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #373737;
}

.btn-share i {
    font-size: 16px;
}

/* Main Media: 925x522 */
.main-media-container {
    width: 925px;
    height: 522px;
    background: #000;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.main-media-container.has-video {
    cursor: pointer;
}

.main-media-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 2;
}

.main-media-container.is-playing .play-overlay,
.main-media-container.is-playing .main-img {
    display: none;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.caption {
    font-size: 16px;
    font-weight: 500;
    color: #7F919B;
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* Article Body */
.article-body {
    font-size: 16px;
    font-weight: 500;
    color: #373737;
    margin-top: 10px;
    margin-bottom: 30px;
}

.article-body p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #373737;
}

.quote-box {
    background: #F6F6F6;
    padding: 25px;
    margin: 30px 0;
    font-size: 18px;
    font-style: italic;
    color: #e31e24;
    font-weight: 600;
}

.quote-box p {
    color: #373737;
    font-weight: 500;
    font-size: 16px;
    font-style: italic;
    letter-spacing: 0%
}

.quote-box cite {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #DD221B;
    font-weight: 500;
    font-style: normal;
}

/* Watch Coverage Banner */
.watch-coverage-banner {

    color: #fff;
    border-radius: 5px;
    padding: 0px;
    margin: 0px;
}

.banner-header {
    background: #000;
    display: flex;
    align-items: center;
    gap: 15px;
    /* margin-bottom: 15px; */
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    padding-top: 10px;

}

.banner-header .label {
    margin-left: 25px;
    color: #DD221B;
    font-weight: 700;
    font-size: 14px;
}

.banner-header .sub-label {
    font-size: 14px;
    color: #F6F6F6;
    font-weight: 500;
}

.banner-content {
    background: #242424;
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 20px;
    padding-top: 20px;
}

.mini-vid {
    margin-left: 25px;
    position: relative;
    width: 202px;
    height: 113px;
    border-radius: 4px;
    overflow: hidden;
}

.mini-vid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.mini-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 2px 0;
}

.mini-text .program {
    color: #DD221B;
    font-size: 14px;
    font-weight: 700;
}

.mini-text .meta {
    font-size: 12px;
    font-weight: 500;
    color: #F6F6F6;
    display: block;
    margin-bottom: 10px;
}

.btn-watch {
    background: #242424;
    color: #DD221B;
    border: 1px solid #DD221B;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
}

/* Tags */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.tag {
    background: #f5f5f5;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    border: 1px solid #eee;
}

/* Sidebar: 453px */
.sidebar {
    width: 453px;
    flex-shrink: 0;
}

.sidebar-box {
    margin-bottom: 40px;
    background-color: #F6F6F6;
}

.side-title {
    font-size: 16px;
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    margin-left: 15px;

}

/* Live TV: 427x238 */
.live-tv-container {
    /* margin-left: 15px; */
    width: 427px;
    height: 238px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;

}

.live-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-left: 15px;
}

.live-badge {

    position: absolute;
    top: 15px;
    left: 15px;
    background: #e31e24;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.live-info {
    margin-top: 15px;
}

.live-info h4 {
    margin-left: 15px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.live-info span {
    margin-left: 15px;
    font-size: 12px;
    color: #888;
}

/* Video Coverage: 204x105 images */
.side-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.view-all {
    color: #e31e24;
    font-weight: 900;
    text-decoration: none;
    font-size: 13px;
}

.vid-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.vid-thumb {
    position: relative;
    width: 204px;
    height: 105px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
}

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

.thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

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

.tag-red {
    color: #e31e24;
    font-size: 11px;
    font-weight: 800;
}

.vid-text h4 {
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.3;
}

/* Most Read */
.read-list {
    list-style: none;
    padding: 0;
}

.read-list li {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    font-weight: bold;
}

.read-list .rank {
    color: #e31e24;
    font-size: 18px;
    font-weight: 900;
    min-width: 20px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 1400px) {
    .main-container {
        width: 100%;
    }

    .left-content {
        width: 65%;
    }

    .sidebar {
        width: 32%;
    }

    .main-media-container,
    .main-img,
    .live-tv-container,
    .live-img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
}

@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
    }

    .left-content,
    .sidebar {
        width: 100%;
    }

    .share-btns {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .article-header h1 {
        font-size: 24px;
    }

    .vid-row {
        flex-direction: column;
    }

    .vid-thumb {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .banner-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* LATEST FEED SECTION (237x130) */
.section-heading {
    font-size: 16px;
    font-weight: 700;
    /* border-bottom: 2px solid var(--black); */
    padding-bottom: 5px;
    margin-bottom: 5px;
    background-color: #F6F6F6;
    padding-top: 5px;
}

.feed-card {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-border);
}

.feed-img-box {
    position: relative;
    width: 237px;
    flex-shrink: 0;
}

.dim-feed {
    width: 237px;
    height: 130px;
    border-radius: 5px;
    object-fit: cover;
}

.badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    /* background: #000; */
    /* color: #fff; */
    /* font-size: 10px; */
    padding: 2px 6px;
    /* font-weight: bold; */

    display: inline-block;
    background-color: #ffffff;
    /* Pure white background */
    color: #e32619;
    /* Sharp news red */
    font-family: 'Inter', 'Arial Black', sans-serif;
    font-weight: 900;
    /* Ultra bold */
    font-size: 11px;
    /* Smaller font for that compact look */
    padding: 5px 14px;
    /* Vertical and Horizontal spacing */
    border-radius: 50px;
    /* Perfect pill shape */
    text-transform: uppercase;
    /* All caps */
    letter-spacing: 0.8px;
    /* Slight spacing for readability */
    line-height: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    /* Soft shadow to pop off the red bg */
    pointer-events: none;
    /* Prevents mouse interference */
    user-select: none;
    z-index: 10
}

.tag-red-sm {
    color: #DD221B;
    font-weight: 700;
    font-size: 12px;
}

.feed-content h3 {
    font-size: 18px;
    margin: 6px 0;
    color: #020202;
}

.feed-content h3 a {
    color: inherit;
    text-decoration: none;
}

.feed-content p {
    font-size: 14px;
    color: #373737;
    font-weight: 500;
    margin-bottom: 12px;
}

.feed-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author {
    font-size: 14px;
    font-weight: 500;
    color: #7F919B;
}

.share-btn {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 11px;
    cursor: pointer;
    font-weight: bold;
}


.load-more-center {
    text-align: center;
    margin: 30px 0;
}

.load-more {
    background: transparent;
    border: 1px solid #ccc;
    padding: 10px 40px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    color: #666;
}

.video-widget {
    background-color: #242424;
}

.vid-card {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;

}

.vid-thumb {
    position: relative;
    width: 204px;
}

.play-overlay-side {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.v-duration {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #000;
    color: #fff;
    font-size: 10px;
    padding: 2px 4px;
}

.vid-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 5px;
}

.widget-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.widget-title-black {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #242424;
}

/* Unique Container for Video Coverage */
.vc-sidebar-container {
    background-color: #222222;
    /* Specific dark charcoal background */
    padding: 25px;
    border-radius: 8px;
    width: 100%;
    max-width: 453px;
    box-sizing: border-box;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
}

/* Header Area */
.vc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.vc-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.vc-view-all {
    color: #e31e24;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

/* Item Layout */
.vc-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vc-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

a.vc-item {
    text-decoration: none;
    color: inherit;
}

a.vc-item:hover .vc-headline {
    color: #e31e24;
}

/* Thumbnail Styling (Fixed 204x105) */
.vc-thumb-container {
    position: relative;
    width: 204px;
    height: 105px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
}

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

/* Play Button Overlay */
.vc-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Duration Badge */
.vc-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
}

/* Text Content Area */
.vc-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vc-tag {
    color: #DD221B;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.vc-headline {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.2px;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .vc-item {
        flex-direction: column;
    }

    .vc-thumb-container {
        width: 100%;
        height: auto;
        aspect-ratio: 204 / 105;
    }
}

/* Container Box */
.mr-sidebar-container {
    margin-top: 40px;
    background-color: #f8f9f9;
    /* Specific light gray background */
    padding: 25px 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 453px;
    box-sizing: border-box;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
}

/* Section Title */
.mr-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
}

/* List Reset */
.mr-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each Row */
.mr-item {
    display: flex;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #cbd5e1;
    /* Subtle blue-gray divider */
}

/* Remove divider from last item */
.mr-item:last-child {
    border-bottom: none;
}

/* The Number Styling */
.mr-rank {
    font-size: 14px;
    font-weight: 700;
    min-width: 35px;
    /* Ensures text aligns perfectly */
    color: #1a1a1a;
    /* Default black for 3, 4, 5 */
    flex-shrink: 0;
}

/* The Text Headline Styling */
.mr-headline {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    color: #4b5563;
    /* Default gray for 3, 4, 5 */
    font-weight: 400;
    /* Regular weight for 3, 4, 5 */
    text-decoration: none;
}

.mr-headline:hover {
    text-decoration: underline;
}

/* --- STYLING FOR TOP 2 (Featured Items) --- */

/* Change Number Color to Red */
.mr-featured .mr-rank {
    color: #e31e24;
    /* Precise Red */
}

/* Change Text to Bold and Darker Black */
.mr-featured .mr-headline {
    color: #1a1a1a;
    font-weight: 800;
    /* Heavy weight for Top 2 */
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .mr-sidebar-container {
        padding: 20px;
    }

    .mr-headline {
        font-size: 15px;
    }
}

/* Live side bar css */
/* Container styling */
.pm-live-v2-container {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    font-family: 'Inter', sans-serif;
    /* Adjust to match your site font */
}

.pm-live-v2-heading {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    margin-top: 0;
}

/* Video Wrapper */
.pm-live-v2-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.pm-live-v2-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* LIVE BADGE WITH PULSE DOT */
.pm-live-v2-status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(220, 38, 38, 0.95);
    /* Premium Red */
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.pm-live-v2-dot {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: pmLiveHeartbeat 1.5s infinite ease-in-out;
}

@keyframes pmLiveHeartbeat {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* PREMIUM PLAY BUTTON & RIPPLES */
.pm-live-v2-play-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.pm-live-v2-play-btn {
    width: 54px;
    height: 54px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 18px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 3;
    transition: all 0.3s ease;
}

.pm-live-v2-play-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    z-index: 1;
    animation: pmPlayRipple 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.pm-live-v2-play-ripple:nth-child(2) {
    animation-delay: 0.8s;
}

@keyframes pmPlayRipple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.pm-live-v2-video-wrapper:hover .pm-live-v2-play-btn {
    background: #dc2626;
    /* Change to red on hover */
    color: #fff;
    transform: scale(1.1);
}

/* Info Section */
.pm-live-v2-info-box {
    margin-top: 14px;
}

.pm-live-v2-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin: 0 0 6px 0;
}

.pm-live-v2-meta {
    font-size: 13px;
    color: #64748b;
    /* Professional Slate Grey */
    font-weight: 400;
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 768px) {
    .feed-container {
        padding: 0 15px;
        /* Add slight padding so content doesn't touch screen edges */
    }

    .feed-card {
        flex-direction: column;
        /* Stack image on top of text */
        gap: 15px;
        padding: 25px 0;
    }

    .feed-img-box {
        width: 100%;
        /* Image box takes full width */
    }

    .dim-feed {
        width: 100%;
        /* Image stretches to fill width */
        height: auto;
        /* Maintain aspect ratio */
        aspect-ratio: 16 / 9;
        /* Professional news aspect ratio */
    }

    .badge-new {
        font-size: 10px;
        padding: 4px 10px;
        top: 8px;
        left: 8px;
    }

    .feed-content h3 {
        font-size: 17px;
        /* Slightly smaller heading for mobile */
        line-height: 1.4;
    }

    .feed-content p {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .feed-footer {
        flex-direction: column;
        /* Stack author and share button if needed */
        align-items: flex-start;
        gap: 12px;
    }

    .share-btn {
        width: 100%;
        /* Optional: Make share button full width for easier tapping */
        text-align: center;
        padding: 8px 0;
    }

    .section-heading {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 15px;
    }

    .load-more {
        width: 90%;
        /* Make button larger for mobile thumbs */
        padding: 12px 0;
    }
}

/* Extra small devices (Phones under 480px) */
@media screen and (max-width: 480px) {
    .feed-content h3 {
        font-size: 16px;
    }

    .author {
        font-size: 12px;
        /* Smaller meta text */
    }
}

/* Mobile Responsive Adjustments for Video Coverage */
@media screen and (max-width: 768px) {
    .vc-sidebar-container {
        max-width: 100%;
        /* Allow container to fill mobile width */
        padding: 20px 15px;
        /* Slightly reduce padding for smaller screens */
        border-radius: 0;
        /* Optional: removes rounded corners on mobile for a full-bleed look */
    }

    .vc-header {
        margin-bottom: 15px;
    }

    .vc-list {
        gap: 25px;
        /* Increase gap between items now that they are stacked */
    }

    .vc-item {
        flex-direction: column;
        /* Stack Thumbnail and Text */
        gap: 12px;
    }

    .vc-thumb-container {
        width: 100%;
        /* Video thumbnail takes full width */
        height: auto;
        /* Allow height to be determined by aspect ratio */
        aspect-ratio: 16 / 9;
        /* Professional video standard ratio */
    }

    .vc-play-button {
        width: 40px;
        /* Slightly smaller play button for mobile */
        height: 40px;
        font-size: 14px;
    }

    .vc-duration {
        font-size: 10px;
        padding: 2px 5px;
        bottom: 6px;
        right: 6px;
    }

    .vc-info {
        gap: 4px;
    }

    .vc-tag {
        font-size: 11px;
    }

    .vc-headline {
        font-size: 15px;
        /* Slightly smaller font for mobile readability */
        line-height: 1.4;
    }
}

/* Extra Small Devices (Phones under 480px) */
@media screen and (max-width: 480px) {
    .vc-title {
        font-size: 15px;
    }

    .vc-view-all {
        font-size: 13px;
    }
}

/* Container Box */
.pm-bulletin-card {
    background-color: #1a1a1a;
    /* Dark charcoal/black background */
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
    font-family: 'Inter', sans-serif;
    border: 1px solid #333;
}

/* Header Bar */
.pm-bulletin-top-bar {
    background-color: #000000;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #2a2a2a;
}

.pm-bulletin-label-red {
    color: #e31e24;
    /* News Red */
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.pm-bulletin-label-grey {
    color: #a1a1aa;
    font-size: 13px;
}

/* Image/Video Section */
.pm-bulletin-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.pm-bulletin-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play Button Design */
.pm-bulletin-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
}

.pm-bulletin-play-circle {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

.pm-bulletin-play-circle i {
    color: #1a1a1a;
    font-size: 24px;
    margin-left: 4px;
    /* Centers the triangle visually */
}

/* Content Styling */
.pm-bulletin-body {
    padding: 20px;
}

.pm-bulletin-program {
    color: #e31e24;
    font-weight: 700;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.pm-bulletin-headline {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.pm-bulletin-meta {
    color: #a1a1aa;
    font-size: 13px;
    margin-bottom: 20px;
}

/* Red Outline Button */
.pm-bulletin-action-btn {
    display: inline-block;
    padding: 8px 24px;
    border: 1.5px solid #e31e24;
    color: #e31e24;
    text-decoration: none;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.pm-bulletin-action-btn:hover {
    background: #e31e24;
    color: white;
}

/* --- MOBILE SPECIFIC FIXES --- */
@media screen and (max-width: 768px) {
    .pm-bulletin-card {
        margin: 15px 10px;
        /* Adds spacing from screen edges on mobile */
    }

    .pm-bulletin-top-bar {
        padding: 10px 15px;
    }

    .pm-bulletin-label-red {
        font-size: 11px;
    }

    .pm-bulletin-label-grey {
        font-size: 11px;
    }

    .pm-bulletin-headline {
        font-size: 16px;
    }

    .pm-bulletin-play-circle {
        width: 50px;
        height: 50px;
    }

    .pm-bulletin-play-circle i {
        font-size: 18px;
    }

    .pm-bulletin-action-btn {
        width: 100%;
        /* Makes button full width for easy tapping on mobile */
        text-align: center;
        box-sizing: border-box;
    }
}

/* MOBILE RESPONSIVE: Watch Coverage Section */
@media screen and (max-width: 768px) {

    /* 1. Main Container: Turn black and remove padding */
    .watch-coverage-banner {
        background-color: #1a1a1a !important;
        /* Dark background from design */
        border: 1px solid #333 !important;
        border-radius: 8px !important;
        overflow: hidden;
        padding: 0 !important;
        display: block !important;
    }

    /* 2. Header Bar: Pitch black background with side-by-side labels */
    .banner-header {
        background-color: #000 !important;
        padding: 12px 15px !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        border-bottom: 1px solid #2a2a2a !important;
    }

    .banner-header .label {
        color: #e31e24 !important;
        /* Red color from design */
        font-size: 12px !important;
        font-weight: 800 !important;
        margin: 0 !important;
    }

    .banner-header .sub-label {
        color: #a1a1aa !important;
        /* Grey color from design */
        font-size: 12px !important;
        margin: 0 !important;
    }

    /* 3. Layout: Stack Video on top of Text */
    .banner-content {
        flex-direction: column !important;
        display: flex !important;
    }

    /* 4. Video Area: Full width */
    .mini-vid {
        width: 100% !important;
        height: auto !important;
        position: relative !important;
    }

    .mini-vid img {
        width: 100% !important;
        height: auto !important;
        border-radius: 0 !important;
        /* Square edges for the image to fit card */
        display: block;
    }

    /* 5. Play Button: White circle like the design */
    .mini-play {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        background-color: #ffffff !important;
        color: #000 !important;
        width: 55px !important;
        height: 55px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    }

    .mini-play i {
        font-size: 20px !important;
        margin-left: 3px;
        /* Visual centering */
    }

    /* 6. Text Content: Padding and White text */
    .mini-text {
        padding: 20px 15px !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    .mini-text .program {
        color: #e31e24 !important;
        font-weight: 700 !important;
        font-size: 13px !important;
        display: block !important;
        margin-bottom: 8px !important;
    }

    .mini-text h4 {
        color: #ffffff !important;
        font-size: 17px !important;
        line-height: 1.4 !important;
        margin: 0 0 8px 0 !important;
    }

    .mini-text .meta {
        color: #a1a1aa !important;
        font-size: 12px !important;
        display: block !important;
        margin-bottom: 20px !important;
    }

    /* 7. Button: Red outline (Ghost button) */
    .btn-watch {
        background: transparent !important;
        border: 1.5px solid #e31e24 !important;
        color: #e31e24 !important;
        border-radius: 50px !important;
        padding: 8px 20px !important;
        font-size: 13px !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        width: auto !important;
        display: inline-block !important;
    }
}

/* MOBILE RESPONSIVE: Perfectly Centered Circular Share Icons */
@media screen and (max-width: 600px) {

    /* 1. Aligns the 'Share' label and the buttons container */
    .share-row {
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
        padding: 12px 0 !important;
    }

    /* 2. Horizontal row for buttons */
    .share-btns {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        align-items: center !important;
    }

    /* 3. The Button: Turn into a perfect centered circle */
    .btn-share {
        font-size: 0 !important;
        /* Hides text */
        width: 42px !important;
        /* Uniform width */
        height: 42px !important;
        /* Uniform height */
        min-width: 42px !important;
        padding: 0 !important;
        /* Remove all padding */
        border-radius: 50% !important;
        /* Perfect circle */
        display: flex !important;
        /* Critical for centering icon */
        align-items: center !important;
        /* Vertical center */
        justify-content: center !important;
        /* Horizontal center */
        border: 1px solid #ddd !important;
        background: #fff !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        /* Reset any desktop margins */
    }

    /* 4. The Icon: Remove any side margins used for text spacing */
    .btn-share i,
    .btn-share img {
        font-size: 18px !important;
        width: 18px !important;
        height: 18px !important;
        margin: 0 !important;
        /* REMOVES margin-right from desktop */
        display: block !important;
        line-height: 1 !important;
    }

    /* 5. Make the "Share" label look clean */
    .share-label {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #1a1a1a !important;
    }
}

.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75px;
    background-color: #000000;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    display: none;
    /* Changed via media query */
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    padding: 0 10px;
}

/* Visibility Logic */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }

    /* Add padding to the bottom of the body so the nav doesn't hide content */
    body {
        padding-bottom: 75px;
    }
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    transition: all 0.2s ease;
    flex: 1;
}

.nav-icon {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    /* Default icon color */
    margin-bottom: 5px;
}

.nav-item span {
    font-size: 12px;
    font-weight: 700;
    /* Bold as per image */
    text-align: center;
}

/* Active State Styles */
.nav-item.active {
    color: #E11B22;
    /* Prudent Red */
}

.nav-item.active .nav-icon {
    fill: #E11B22;
    /* Active Icon Color */
}

/* Optional: Slight feedback when clicking */
.nav-item:active {
    transform: scale(0.92);
}