@keyframes smooth-scroll {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-100%)
    }
}

@keyframes pulse-dot {

    0%,
    to {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .7;
        transform: scale(1.2)
    }
}

@keyframes badge-glow {

    0%,
    to {
        box-shadow: 0 0 5px rgba(220, 20, 60, .5)
    }

    50% {
        box-shadow: 0 0 15px rgba(220, 20, 60, .8)
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes marquee {
    0% {
        transform: translateX(100%)
    }

    to {
        transform: translateX(-100%)
    }
}

@keyframes ping {

    75%,
    to {
        transform: scale(2);
        opacity: 0
    }
}

@keyframes pulse {

    0%,
    to {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

:root {
    --primary-red: #dc2626;
    --primary-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border-light: #e5e7eb
}

* {
    box-sizing: border-box
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: #374151;
    font-size: 14px;
    padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.6;
    margin: 0
}

body,
p {
    margin: 0;
    font-weight: 400
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px
}

.main-content {
    padding: 1.5rem 0;
    background-color: #f8f9fa
}

.top-bar {
    background: var(--primary-red);
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    padding: 8px 0
}

.top-bar .btn {
    font-size: 12px;
    font-weight: 400;
    padding: 4px 8px;
    border-width: 1px
}

.main-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    border-bottom: 3px solid var(--primary-red);
    padding: 0
}

.breaking-news .container,
.main-header .container,
.main-nav .container,
.top-bar .container {
    max-width: 1200px
}

.main-header .row {
    align-items: center
}

.logo {
    height: 80px;
    width: 150px;
    object-fit: contain
}

#mobileMenuToggle {
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 16px;
    transition: all .2s ease
}

#mobileMenuToggle:hover {
    background: #f3f4f6;
    border-color: var(--primary-red)
}

#mobileMenuToggle:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px
}

.mobile-nav-menu {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    display: none;
    position: relative;
    z-index: 1000
}

.mobile-nav-menu.show {
    display: block;
    animation: slideDown .3s ease-out
}

.mobile-nav-content {
    padding: 16px 0
}

.mobile-nav-links,
.mobile-search {
    margin-bottom: 16px
}

.mobile-search .input-group {
    width: 100%
}

.mobile-search .form-control,
.mobile-search .input-group-text {
    border: 1px solid #d1d5db;
    border-radius: 6px 0 0 6px;
    padding: 8px 12px
}

.mobile-search .form-control {
    font-size: 14px;
    font-weight: 400
}

.mobile-search .input-group-text {
    border-right: none;
    background: #fff
}

.mobile-search .btn {
    border-radius: 0 6px 6px 0;
    padding: 8px 12px;
    font-size: 14px
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.mobile-nav-link {
    color: #374151 !important;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 6px;
    transition: all .2s ease;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    align-items: center;
    border: 1px solid transparent
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    background-color: #fef2f2;
    color: var(--primary-red) !important;
    border-color: #fecaca;
    font-weight: 500
}

.mobile-nav-link i {
    width: 20px;
    text-align: center
}

.mobile-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb
}

.search-container {
    margin-left: auto
}

.search-container .input-group {
    width: 280px;
    height: 40px
}

.search-container .form-control {
    border: 1px solid #d1d5db;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 12px
}

.search-container .input-group-text {
    border: 1px solid #d1d5db;
    border-right: none;
    border-radius: 6px 0 0 6px;
    background: #fff;
    padding: 8px 12px
}

.search-container .btn {
    border-radius: 0 6px 6px 0;
    padding: 8px 12px;
    font-size: 14px
}

.main-nav {
    background: linear-gradient(135deg, var(--primary-dark), #111827);
    color: #fff;
    padding: 0
}

.main-nav .d-flex {
    flex-wrap: wrap;
    gap: .5rem
}

.nav-link {
    color: #fff !important;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all .2s ease;
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center
}

.nav-link.active,
.nav-link:hover {
    background-color: var(--primary-red);
    color: #fff !important;
    font-weight: 500
}

.breaking-news {
    background: #f5a10d;
    color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .3);
    padding: 0px 15px;
    overflow: hidden;
    border-top: 2px solid gold;
    border-bottom: 2px solid gold;
    position: relative
}

.breaking-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    margin-left: 15px
}

.breaking-text {
    animation: smooth-scroll 45s linear infinite;
    white-space: nowrap;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    padding-left: 100%;
    letter-spacing: .5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .5)
}

.breaking-link {
    color: #fff !important;
    text-decoration: none !important;
    transition: all .3s ease;
    padding: 2px 4px;
    border-radius: 3px;
    display: inline-block
}

.breaking-link:hover {
    color: gold !important;
    background-color: rgba(255, 255, 255, .1);
    text-shadow: 0 0 5px rgba(255, 255, 255, .8);
    transform: scale(1.05)
}

.breaking-link:visited {
    color: #e6e6fa !important
}

.separator {
    color: #fff;
    margin: 0 8px;
    font-weight: 700
}

.breaking-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-red);
    border-radius: 50%;
    animation: ping 1s infinite;
    margin-left: 8px
}

.breaking-label {
    display: flex;
    align-items: center;
    min-width: fit-content;
    z-index: 2
}

.breaking-badge {
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px !important
}

.breaking-news:hover .breaking-badge,
.breaking-news:hover .breaking-dot,
.breaking-news:hover .breaking-text {
    animation-play-state: paused
}

@media (max-width:768px) {
    .breaking-news {
        padding: 6px 10px
    }

    .breaking-text {
        font-size: 13px;
        animation-duration: 35s
    }

    .breaking-content {
        margin-left: 10px
    }

    .breaking-badge {
        font-size: 10px !important;
        padding: 4px 8px !important
    }

    .breaking-dot {
        height: 8px;
        width: 8px;
        margin-left: 8px
    }

    .breaking-link {
        font-size: 13px
    }

    .breaking-news:hover .breaking-badge,
    .breaking-news:hover .breaking-dot,
    .breaking-news:hover .breaking-text {
        animation-play-state: running
    }
}

@media (max-width:480px) {
    .breaking-text {
        font-size: 12px;
        animation-duration: 50s
    }

    .breaking-link {
        font-size: 12px
    }

    .breaking-badge {
        display: none
    }
}

.live-badge {
    position: relative;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px
}

.live-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: ping 1s infinite
}

.badge {
    font-size: 11px;
    padding: 4px 8px
}

.badge-outline {
    border: 1px solid #16a34a;
    color: #16a34a;
    background: 0 0;
    font-weight: 400
}

.badge-markets,
.badge-trending {
    border: 1px solid #fbbf24;
    color: #fbbf24;
    background: 0 0;
    font-weight: 400
}

.badge-markets {
    border: 1px solid #10b981;
    color: #10b981
}

.bg-purple {
    background-color: #7c3aed !important
}

.bg-pink {
    background-color: #db2777 !important
}

.bg-indigo {
    background-color: #4f46e5 !important
}

.btn-indigo {
    background-color: #4f46e5;
    border-color: #4f46e5;
    color: #fff;
    font-weight: 400
}

.btn-indigo:hover {
    background-color: #4338ca;
    border-color: #4338ca
}

.btn {
    font-weight: 400;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all .2s ease
}

.btn-sm {
    font-size: 12px;
    padding: 4px 8px
}

.sidebar-card {
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    border-radius: 8px;
    margin-bottom: 1.5rem
}

.sidebar-card .card-header {
    border-radius: 8px 8px 0 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px
}

.sidebar-card .card-body {
    padding: 16px
}

.sidebar-card .card-title {
    font-size: 14px;
    font-weight: 600;
    margin: 0
}

.live-update-item {
    padding: 12px;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color .2s ease
}

.live-update-item:hover {
    background-color: #fef2f2
}

.live-update-item:last-child {
    border-bottom: none
}

.time-stamp {
    font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
    font-weight: 500;
    color: var(--text-light);
    font-size: 12px
}

.update-text {
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    font-size: 13px
}

.trending-item {
    padding: 12px;
    background-color: #f9fafb;
    border-radius: 6px;
    margin-bottom: 8px;
    transition: background-color .2s ease;
    cursor: pointer
}

.text-decoration-none,
.trending-item a {
    text-decoration: none
}

.trending-item:hover {
    background-color: #ebebeb
}

.trending-item:last-child {
    margin-bottom: 0
}

.trending-number {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 10px;
    margin-right: 8px;
    flex-shrink: 0;
    min-width: 20px;
    text-align: center
}

.trending-tag {
    font-weight: 500;
    font-size: 13px
}

.trending-count {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400
}

.quick-update-item {
    padding: 12px;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color .2s ease
}

.quick-update-item:hover {
    background-color: #eff6ff
}

.quick-update-item:last-child {
    border-bottom: none
}

.urgent-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-red);
    border-radius: 50%;
    margin-right: 8px;
    margin-top: 4px;
    animation: pulse 2s infinite;
    flex-shrink: 0
}

.update-title {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 6px
}

.update-time {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400
}

.ad-card {
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}

.ad-placeholder {
    height: 160px;
    background: rgba(255, 255, 255, .2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    font-size: 12px;
    font-weight: 400
}

.ad-banner {
    background: linear-gradient(135deg, #10b981, #2563eb, #7c3aed);
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}

.banner-ad-placeholder {
    height: 80px;
    background: rgba(255, 255, 255, .2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    font-size: 14px;
    font-weight: 400
}

.video-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem
}

.video-container {
    position: relative;
    height: 280px
}

.story-image img,
.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, .1), transparent)
}

.video-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2)
}

.video-play-btn:hover {
    background-color: #b91c1c;
    transform: translate(-50%, -50%) scale(1.05)
}

.video-play-btn i {
    color: #fff;
    font-size: 20px;
    margin-left: 2px
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px
}

.video-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3
}

.video-controls {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.video-controls .btn {
    font-size: 12px;
    padding: 4px 8px
}

.news-card {
    transition: all .2s ease;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    margin-bottom: 1.5rem
}

.news-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    border-color: #fca5a5;
    transform: translateY(-2px)
}

.main-story,
.news-card {
    border: 1px solid #e5e7eb
}

.main-story:hover {
    border-color: var(--primary-red)
}

.news-image-container {
    position: relative;
    overflow: hidden;
    height: 200px
}

.main-story .news-image-container {
    height: 300px
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease
}

.news-card:hover .news-image {
    transform: scale(1.02)
}

.news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, .1), transparent);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px
}

.main-story .news-overlay {
    padding: 16px
}

.breaking-badge {
    animation: pulse 2s infinite
}

.category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px
}

.news-content {
    color: #fff
}

.news-title {
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 6px;
    font-size: 14px
}

.main-story .news-title {
    font-size: 18px;
    margin-bottom: 0
}

.news-card .card-body .news-title {
    color: #111827;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px
}

.news-meta,
.news-subtitle {
    color: #d1d5db;
    font-weight: 400
}

.news-subtitle {
    line-height: 1.4;
    margin-bottom: 3px;
    font-size: 13px
}

.news-card .card-body .news-subtitle {
    color: var(--text-light);
    font-size: 13px
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px
}

.news-card .card-body .news-meta {
    color: var(--text-light)
}

.news-card .card-body {
    padding: 16px
}

.web-stories-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0;
    scrollbar-width: thin
}

.web-stories-container::-webkit-scrollbar {
    height: 4px
}

.web-stories-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px
}

.web-stories-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px
}

.web-story-item {
    flex-shrink: 0;
    cursor: pointer
}

.story-image {
    position: relative;
    width: 160px;
    aspect-ratio: 9/16;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    transition: transform .2s ease
}

.story-image:hover {
    transform: scale(1.02)
}

.story-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .9), rgba(0, 0, 0, .1), transparent);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px
}

.story-category {
    align-self: flex-start;
    font-size: 10px;
    font-weight: 500;
    padding: 2px 6px
}

.story-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgb(0 0 0/66%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px)
}

.story-play-btn i {
    color: #fff;
    font-size: 14px
}

.story-info {
    color: #fff
}

.story-title {
    font-weight: 600;
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 4px
}

.story-meta {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: rgba(255, 255, 255, .8);
    font-weight: 400
}

.most-read-item {
    padding: 12px;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color .2s ease
}

.most-read-item:hover {
    background-color: #f0fdf4
}

.most-read-item:last-child {
    border-bottom: none
}

.read-number {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 11px;
    margin-right: 12px;
    flex-shrink: 0
}

.read-title {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 4px
}

.read-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400
}

.market-item {
    padding: 12px;
    background-color: #f9fafb;
    border-radius: 6px;
    margin-bottom: 8px
}

.market-item:last-child {
    margin-bottom: 0
}

.market-name {
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 2px;
    color: #374151
}

.market-value {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #111827
}

.weather-main {
    margin-bottom: 12px;
    text-align: center
}

.weather-temp {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: #111827
}

.weather-city,
.weather-desc {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
    font-weight: 500
}

.weather-desc {
    font-size: 12px;
    font-weight: 400
}

.weather-cities div {
    padding: 4px 0;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    justify-content: space-between
}

.newsletter-count,
.newsletter-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 400
}

.newsletter-count {
    font-size: 11px;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 0
}

.main-footer {
    background: linear-gradient(135deg, var(--primary-dark), #111827);
    color: #fff;
    margin-top: 2rem
}

.footer-brand {
    margin-bottom: 1.5rem
}

.footer-logo,
.social-links a {
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center
}

.footer-logo,
.footer-title {
    font-size: 18px;
    font-weight: 600
}

.footer-logo {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    margin-right: 12px
}

.footer-title {
    color: #fca5a5;
    margin: 0
}

.footer-subtitle {
    color: #9ca3af;
    font-size: 12px;
    margin: 0;
    font-weight: 400
}

.footer-desc {
    color: #d1d5db;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 400
}

.social-links {
    display: flex;
    gap: 8px
}

.social-links a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .1);
    text-decoration: none;
    transition: all .2s ease;
    font-size: 14px
}

.social-links a:hover {
    background-color: var(--primary-red);
    transform: translateY(-1px)
}

.footer-heading {
    color: #fca5a5;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-links li {
    margin-bottom: 6px
}

.contact-info p,
.footer-links a {
    color: #d1d5db;
    font-size: 13px;
    display: flex;
    align-items: center;
    font-weight: 400
}

.footer-links a {
    text-decoration: none;
    transition: color .2s ease
}

.footer-links a:hover {
    color: #fff
}

.footer-links a i {
    margin-right: 4px;
    width: 12px
}

.contact-info p {
    margin-bottom: 6px
}

.contact-info i {
    color: #fca5a5;
    margin-right: 8px;
    width: 14px
}

.footer-divider {
    border-color: #374151;
    margin: 1.5rem 0
}

.footer-copyright {
    color: #9ca3af;
    font-size: 12px;
    margin: 0;
    font-weight: 400
}

.news-details-header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    border-bottom: 1px solid #e5e7eb
}

.header-title {
    color: var(--primary-red);
    font-weight: 600;
    margin: 0;
    font-size: 20px
}

.news-details-content {
    background-color: #f9fafb;
    padding: 1.5rem 0
}

.news-article {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    overflow: hidden;
    margin-bottom: 1.5rem
}

.article-header {
    padding: 24px
}

.article-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 8px
}

.article-subtitle {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 400
}

.article-meta,
.author-info {
    display: flex;
    align-items: center
}

.article-meta {
    justify-content: space-between;
    margin-bottom: 20px
}

.author-info {
    gap: 12px
}

.author-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .1)
}

.article-body h3,
.author-name {
    font-weight: 600;
    color: #111827;
    margin: 0;
    font-size: 14px
}

.author-role {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    font-weight: 400
}

.article-stats {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right
}

.stat-item {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    font-weight: 400
}

.article-image {
    position: relative;
    height: 300px;
    overflow: hidden
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.article-content {
    padding: 24px
}

.article-body {
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
    font-weight: 400
}

.article-body h3 {
    margin: 24px 0 12px;
    font-size: 18px
}

.article-body ul {
    margin: 16px 0;
    padding-left: 20px
}

.article-body li,
.comment-content p {
    margin-bottom: 8px;
    font-weight: 400
}

.article-body strong {
    font-weight: 600
}

.article-tags {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb
}

.article-reactions h5,
.article-tags h5 {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.tags-container .badge {
    padding: 6px 12px;
    border-radius: 16px;
    border: 1px solid #dee2e6;
    background-color: transparent;
    color: #6c757d;
    font-size: 12px;
    font-weight: 400;
    max-width: 162px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.article-reactions {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb
}

.article-reactions h5 {
    margin-bottom: 16px
}

.reactions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.reaction-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all .2s ease;
    font-size: 12px;
    font-weight: 400
}

.reaction-btn:hover {
    color: initial;
    background: initial
}

.reaction-btn.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: #fff
}

.reaction-count {
    background-color: #f3f4f6;
    color: #374151;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500
}

.reaction-btn.active .reaction-count {
    background-color: rgba(255, 255, 255, .2);
    color: #fff
}

.comments-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb
}

.comments-title {
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    font-size: 14px
}

.add-comment {
    margin-bottom: 20px
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.comment-item {
    border-left: 2px solid #f3f4f6;
    background-color: #f8f9fa;
    padding: 12px;
    border-radius: 0 6px 6px 0
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px
}

.comment-avatar img {
    width: 24px;
    height: 24px;
    border-radius: 50%
}

.comment-author {
    font-weight: 600;
    font-size: 12px
}

.comment-time {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 400
}

.comment-content p {
    color: #374151;
    font-size: 13px
}

.comment-actions {
    display: flex;
    gap: 8px
}

.comment-actions .btn {
    font-size: 11px;
    padding: 4px 8px
}

.related-news-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 6px;
    transition: background-color .2s ease;
    cursor: pointer
}

.more-news-item:hover,
.related-news-item:hover {
    background-color: #f8f9fa
}

.related-image {
    width: 100px;
    height: 70px;
    border-radius: 6px;
    flex-shrink: 0;
    display: block;
    overflow: hidden
}

.related-content {
    flex: 1
}

.related-title {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 6px
}

.related-time {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
    font-weight: 400
}

.more-news-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color .2s ease;
    cursor: pointer
}

.more-news-item:last-child {
    border-bottom: none
}

.news-rank {
    background-color: var(--primary-red);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 10px;
    flex-shrink: 0
}

.more-news-image {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0
}

.more-news-content {
    flex: 1
}

.more-news-title {
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 4px
}

.more-news-time {
    font-size: 10px;
    color: var(--text-light);
    margin: 0;
    font-weight: 400
}

@media (max-width:991.98px) {
    .col-lg-3.d-none.d-lg-block {
        display: none !important
    }

    .col-lg-6.col-md-8 {
        flex: 0 0 100%;
        max-width: 100%
    }
}

@media (max-width:767.98px) {
    .container {
        padding-left: 10px;
        padding-right: 10px
    }

    .top-bar .col-md-4,
    .top-bar .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .main-header .row {
        align-items: center
    }

    .logo {
        height: 40px
    }

    .badge {
        font-size: 10px;
        padding: 2px 6px
    }

    #mobileMenuToggle {
        display: block !important
    }

    .search-container {
        display: none !important
    }

    .breaking-text {
        font-size: 12px
    }

    .main-content {
        padding: 1rem 10px
    }

    .news-card,
    .sidebar-card {
        margin-bottom: 1rem
    }

    .main-story .news-image-container,
    .video-container {
        height: 200px
    }

    .video-play-btn {
        width: 50px;
        height: 50px
    }

    .main-story .news-title,
    .video-play-btn i {
        font-size: 16px
    }

    .video-title {
        font-size: 14px
    }

    .news-image-container {
        height: 160px
    }

    .news-title {
        font-size: 13px
    }

    .news-subtitle {
        font-size: 12px
    }

    .web-stories-container {
        gap: 8px
    }

    .article-content,
    .article-header {
        padding: 16px
    }

    .article-title {
        font-size: 20px
    }

    .article-subtitle {
        font-size: 14px
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .article-stats {
        align-self: stretch;
        text-align: left
    }

    .reactions-container,
    .stat-item {
        justify-content: flex-start
    }

    .related-image {
        width: 80px;
        height: 60px
    }

    .more-news-image {
        width: 50px;
        height: 40px
    }
}

@media (max-width:575.98px) {
    body {
        font-size: 13px
    }

    .main-header .py-3 {
        padding-top: 12px !important;
        padding-bottom: 12px !important
    }

    .logo {
        height: 65px;
        margin-bottom: 10px
    }

    .mobile-center {
        justify-content: center
    }

    #mobileMenuToggle {
        padding: 6px 10px;
        font-size: 14px
    }

    .breaking-text {
        font-size: 11px
    }

    .video-container {
        height: 180px
    }

    .video-play-btn {
        width: 40px;
        height: 40px
    }

    .video-play-btn i {
        font-size: 14px
    }

    .article-content,
    .article-header,
    .news-card .card-body,
    .sidebar-card .card-body,
    .sidebar-card .card-header {
        padding: 12px
    }

    .article-title {
        font-size: 18px
    }

    .article-subtitle {
        font-size: 13px
    }

    .article-body {
        font-size: 14px
    }

    .footer-title {
        font-size: 16px
    }

    .footer-desc {
        font-size: 12px
    }

    .social-links a {
        width: 28px;
        height: 28px;
        font-size: 12px
    }
}

.form-control {
    font-size: 14px;
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db
}

.form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(220, 38, 38, .1)
}

textarea.form-control {
    resize: vertical;
    min-height: 80px
}

.input-group-text {
    font-size: 14px;
    font-weight: 400;
    background-color: #f9fafb;
    border: 1px solid #d1d5db
}

.fw-medium {
    font-weight: 500 !important
}

.fw-mono {
    font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace !important
}

.text-muted {
    color: var(--text-light) !important
}

.card {
    border-radius: 8px
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 16px
}

.card-body {
    padding: 16px
}

.card-title {
    font-size: 14px;
    margin-bottom: 0
}

img {
    max-width: 100%;
    height: auto
}

#desktopNav::-webkit-scrollbar,
::-webkit-scrollbar {
    width: 6px;
    height: 6px
}

::-webkit-scrollbar-track {
    background: #f1f1f1
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px
}

#desktopNav::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1
}

.btn:focus,
button:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px
}

.loading {
    opacity: .6;
    pointer-events: none
}

@media print {

    #mobileMenuToggle,
    .ad-banner,
    .ad-card,
    .breaking-news,
    .main-footer,
    .main-nav,
    .mobile-nav-menu,
    .sidebar-card,
    .top-bar,
    .video-card {
        display: none !important
    }

    .main-content {
        padding: 0
    }

    .news-card {
        break-inside: avoid
    }
}

.card {
    border: 1px solid #ddd;
    border-radius: .5rem;
    overflow: hidden;
    transition: all .3s;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    border-color: rgba(239, 68, 68, .2)
}

@media (min-width:576px) {
    .card-img-container {
        height: 142px
    }
}

.card-img-container {
    position: relative;
    height: 192px
}

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

.card-img-overlay-custom {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .6), transparent)
}

.badge {
    padding: .25rem .5rem;
    border-radius: 1rem;
    font-size: .75rem;
    font-weight: 700
}

.badge-pulse {
    animation: pulse 2s infinite
}

.card-body {
    padding: 1rem
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.card-text {
    font-size: .875rem;
    color: #6c757d;
    margin-bottom: .75rem
}

.text-muted {
    color: #6c757d !important
}

.news-card-description {
    height: 60px
}

.text-ellipse {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden !important
}

.sticky-sidebar {
    position: sticky;
    top: 20px;
    overflow-y: auto;
    max-height: 100vh;
    padding-right: 4px
}

.related-news-item {
    text-decoration: none;
    color: inherit
}

#desktopNav {
    overflow-x: auto;
    max-width: 840px
}

@media (max-width:991px) {
    .desktop-navigation {
        padding-bottom: 0 !important
    }

    #desktopNav {
        display: flex;
        overflow-x: auto
    }

    #desktopNav .nav-link {
        margin-bottom: 10px
    }

    .mobile-off {
        display: none !important
    }
}

#desktopNav::-webkit-scrollbar-track {
    background: 0 0
}

#desktopNav::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px
}

.additional-media {
    margin-top: 2rem
}

.additional-media h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333
}

.media-video {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.media-video-element {
    width: 100%;
    max-width: 800px;
    max-height: 400px;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem
}

.media-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.media-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    aspect-ratio: 2/1
}

.media-image:hover,
.news-details-image:hover {
    transform: scale(1.05);
    transition: transform .3s ease;
    cursor: pointer
}

.image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: 1000;
    justify-content: center;
    align-items: center
}

.popup-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2)
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    font-weight: 700
}

.text-right {
    text-align: right
}

.popup-close:hover {
    color: #ccc
}

.article-body p {
    margin-bottom: 10px
}

.mobile-mojo-bulletins-link {
    display: none
}

@media (max-width:991px) {
    .mobile-mojo-bulletins-link-desktop {
        display: none !important
    }

    .mobile-mojo-bulletins-link {
        display: flex !important
    }

    .mobile-mojo-bulletins-link a {
        font-size: 14px
    }

    .card-img-container {
        height: 280px
    }
}

.tag-list {
    text-decoration: none
}

.tag-list:hover {
    text-decoration: underline
}

.about-content-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    overflow: hidden;
    margin-bottom: 1.5rem;
    padding: 24px
}

.breaking-next:hover,
.breaking-prev:hover,
.top-news-next:hover,
.top-news-prev:hover {
    color: #000
}