/* ========================================
   LaborNew — BBC-style Professional News
   ======================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --clr-bg: #ffffff;
    --clr-surface: #f0f0f0;
    --clr-dark: #1a1a1a;
    --clr-dark-2: #222;
    --clr-text: #1a1a1a;
    --clr-text-2: #4a4a4a;
    --clr-text-muted: #777;
    --clr-border: #d5d5d5;
    --clr-border-light: #e8e8e8;
    --clr-red: #bb1919;
    --clr-red-dark: #8b0000;
    --clr-white: #fff;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius: 0;
    --max-w: 1280px;
    --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--clr-text);
    background: var(--clr-bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--clr-dark);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    height: 32px;
    align-items: center;
}
.top-bar-links { display: flex; gap: 4px; }
.top-bar-link {
    color: rgba(255,255,255,0.75);
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 2px;
    transition: background var(--transition);
    position: relative;
}
.top-bar-link:hover { background: rgba(255,255,255,0.08); color: #fff; }
.notif-badge {
    background: var(--clr-red);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
    background: var(--clr-white);
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--clr-border);
}
.modal-header h2 { font-size: 1.1rem; font-weight: 700; }
.modal-close {
    color: var(--clr-text-muted);
    padding: 4px;
    transition: color var(--transition);
}
.modal-close:hover { color: var(--clr-text); }
.modal-body { padding: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--clr-text-2);
}
.form-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    font-family: var(--font);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
}
.form-input:focus { border-color: var(--clr-dark); }
.btn-primary {
    width: 100%;
    padding: 12px;
    background: var(--clr-dark);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}
.btn-primary:hover { background: #333; }
.form-footer {
    text-align: center;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-top: 16px;
}
.form-footer a { color: var(--clr-red); font-weight: 600; }

/* Article Modal */
.modal-article { max-width: 720px; }
.article-detail-img { width: 100%; height: 320px; object-fit: cover; }
.article-detail-body { padding: 28px; }
.article-detail-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 12px 0;
}
.article-detail-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--clr-border-light);
}
.meta-divider {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--clr-text-muted);
}
.article-detail-content {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--clr-text);
}
.article-detail-content *:not(a) {
    color: var(--clr-text) !important;
}
.article-detail-content a {
    color: var(--clr-red, #bb1919) !important;
}
.article-detail-content p { margin-bottom: 16px; }
.article-detail-share {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--clr-border-light);
    font-size: 0.82rem;
    color: var(--clr-text-muted);
}
.share-btn {
    padding: 6px 14px;
    border: 1px solid var(--clr-border);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--clr-text-2);
    transition: all var(--transition);
}
.share-btn:hover { background: var(--clr-surface); border-color: var(--clr-dark); color: var(--clr-dark); }

/* Video Modal */
.modal-video { max-width: 800px; background: #000; }
.video-player-placeholder { position: relative; aspect-ratio: 16/9; background: #000; }
.video-player-placeholder img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.video-player-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    display: flex;
    align-items: center;
    gap: 12px;
}
.vp-btn { color: #fff; padding: 4px; display: flex; }
.vp-progress { flex: 1; height: 4px; background: rgba(255,255,255,0.3); cursor: pointer; border-radius: 2px; }
.vp-progress-bar { height: 100%; width: 0; background: var(--clr-red); border-radius: 2px; transition: width 0.3s; }
.vp-time { color: rgba(255,255,255,0.7); font-size: 0.72rem; white-space: nowrap; }
.video-player-info {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.video-player-info h3 { color: #fff; font-size: 0.95rem; font-weight: 600; }
.modal-close-video { color: rgba(255,255,255,0.6); }
.modal-close-video:hover { color: #fff; }

/* ===== NOTIFICATIONS PANEL ===== */
.notif-panel {
    position: fixed;
    top: 32px;
    right: 20px;
    width: 360px;
    background: var(--clr-white);
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
}
.notif-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--clr-border-light);
}
.notif-header h3 { font-size: 0.92rem; font-weight: 700; }
.notif-mark-read {
    font-size: 0.75rem;
    color: var(--clr-red);
    font-weight: 600;
    padding: 4px 8px;
    transition: opacity var(--transition);
}
.notif-mark-read:hover { opacity: 0.7; }
.notif-list { max-height: 320px; overflow-y: auto; }
.notif-item {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--clr-border-light);
    cursor: pointer;
    transition: background var(--transition);
}
.notif-item:hover { background: var(--clr-surface); }
.notif-item.unread { background: #fef9f0; }
.notif-item.unread:hover { background: #fdf3e0; }
.notif-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-red);
    flex-shrink: 0;
    margin-top: 5px;
}
.notif-item:not(.unread) .notif-dot { background: var(--clr-border); }
.notif-text { font-size: 0.85rem; line-height: 1.4; color: var(--clr-text); }
.notif-time { font-size: 0.72rem; color: var(--clr-text-muted); margin-top: 4px; }

/* ===== GLOBAL NAV ===== */
.global-nav {
    background: var(--clr-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 52px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
    flex-shrink: 0;
}
.logo-block {
    background: var(--clr-red);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 900;
    padding: 4px 7px;
    letter-spacing: -0.5px;
    line-height: 1;
}
.logo-block-sm { font-size: 0.7rem; padding: 3px 5px; }
.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
}
.nav-links {
    display: flex;
    align-items: center;
    flex: 1;
}
.nav-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.84rem;
    font-weight: 500;
    padding: 0 12px;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    transition: all var(--transition);
    white-space: nowrap;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--clr-red);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.04); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: #fff; }
.more-icon { transition: transform var(--transition); }
.nav-more-btn[aria-expanded="true"] .more-icon { transform: rotate(180deg); }

.nav-more-container { position: relative; }
.more-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--clr-dark-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all var(--transition);
    z-index: 100;
}
.more-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
    display: block;
    padding: 10px 18px;
    color: rgba(255,255,255,0.8);
    font-size: 0.84rem;
    font-weight: 500;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}
.dropdown-link:hover { background: rgba(255,255,255,0.06); color: #fff; border-left-color: var(--clr-red); }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.search-btn {
    color: rgba(255,255,255,0.75);
    padding: 8px;
    display: flex;
    transition: color var(--transition);
}
.search-btn:hover { color: #fff; }

.mobile-menu-btn { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.mobile-menu-btn span { display: block; width: 20px; height: 2px; background: #fff; transition: all var(--transition); }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 80px 20px 20px;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay-inner { max-width: 680px; margin: 0 auto; }
.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid rgba(255,255,255,0.25);
    padding-bottom: 14px;
    color: rgba(255,255,255,0.5);
}
.search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 300;
    font-family: var(--font);
}
.search-input::placeholder { color: rgba(255,255,255,0.3); }
.search-close {
    color: rgba(255,255,255,0.5);
    padding: 6px;
    transition: color var(--transition);
}
.search-close:hover { color: #fff; }
.search-results { margin-top: 24px; }
.search-hint { color: rgba(255,255,255,0.35); font-size: 0.9rem; }
.search-result-item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: padding-left var(--transition);
}
.search-result-item:hover { padding-left: 8px; }
.search-result-item h4 { color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.search-result-item p { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.search-no-results { color: rgba(255,255,255,0.4); font-size: 0.9rem; padding: 20px 0; }

/* ===== TICKER ===== */
.ticker-bar {
    background: var(--clr-red);
    display: flex;
    align-items: center;
    height: 34px;
    overflow: hidden;
}
.ticker-label {
    background: var(--clr-red-dark);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.ticker-wrap { flex: 1; overflow: hidden; }
.ticker-content {
    display: flex;
    gap: 0;
    animation: ticker 45s linear infinite;
    white-space: nowrap;
    padding-left: 100%;
}
.ticker-item { color: #fff; font-size: 0.8rem; font-weight: 500; flex-shrink: 0; }
.ticker-sep { color: rgba(255,255,255,0.4); padding: 0 20px; font-size: 0.8rem; flex-shrink: 0; }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ===== MAIN CONTENT ===== */
.main-content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HERO ===== */
.hero-section { padding: 24px 0 0; }
.hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 20px;
}
.hero-main {
    cursor: pointer;
    transition: opacity var(--transition);
    border-bottom: 4px solid var(--clr-red);
}
.hero-main:hover { opacity: 0.92; }
.hero-main-img { height: 340px; overflow: hidden; }
.hero-main-body { padding: 18px 0; }
.hero-title {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
.hero-desc {
    font-size: 0.92rem;
    color: var(--clr-text-2);
    line-height: 1.55;
    margin-bottom: 12px;
}
.hero-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}
.meta-time { color: var(--clr-text-muted); font-weight: 600; }

/* Category Tags */
.category-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    margin-bottom: 8px;
    border-left: 3px solid;
    background: var(--clr-surface);
}
.tag-red { border-color: var(--clr-red); color: var(--clr-red); }
.tag-cyan { border-color: #0097a7; color: #0097a7; }
.tag-yellow { border-color: #d4a017; color: #8a6d12; }
.tag-teal { border-color: #00796b; color: #00796b; }
.tag-purple { border-color: #7b1fa2; color: #7b1fa2; }
.tag-green { border-color: #2e7d32; color: #2e7d32; }
.tag-orange { border-color: #e65100; color: #e65100; }
.tag-blue { border-color: #1565c0; color: #1565c0; }

/* Hero Sidebar */
.hero-sidebar { display: flex; flex-direction: column; gap: 1px; background: var(--clr-border-light); border-top: 4px solid var(--clr-red); }
.hero-side-card {
    display: flex;
    gap: 14px;
    background: var(--clr-white);
    padding: 14px;
    cursor: pointer;
    transition: background var(--transition);
}
.hero-side-card:hover { background: var(--clr-surface); }
.side-card-img { width: 120px; height: 80px; flex-shrink: 0; overflow: hidden; }
.side-card-body { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.side-card-title {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 32px 0; border-top: 1px solid var(--clr-border-light); }
.section-alt {
    background: var(--clr-surface);
    margin: 0 -20px;
    padding: 32px 20px;
    border-top: none;
}
.section-dark {
    background: var(--clr-dark);
    margin: 0 -20px;
    padding: 32px 20px;
    border-top: none;
}
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.section-title {
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}
.title-white { color: #fff; }
.title-bar { display: inline-block; width: 4px; height: 24px; }
.bar-red { background: var(--clr-red); }
.bar-yellow { background: #d4a017; }
.bar-blue { background: #1565c0; }
.bar-purple { background: #7b1fa2; }
.bar-orange { background: #e65100; }
.section-more {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    transition: color var(--transition);
}
.section-more:hover { color: var(--clr-red); }
.more-white { color: rgba(255,255,255,0.5); }
.more-white:hover { color: #fff; }

/* ===== NEWS GRID ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.news-card {
    background: var(--clr-white);
    cursor: pointer;
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
}
.news-card:hover { border-bottom-color: var(--clr-red); }
.news-card-img { height: 160px; overflow: hidden; }
.news-card-img img { transition: transform 0.4s ease; }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-body { padding: 14px 0; }
.section-alt .news-card-body { padding: 14px; }
.news-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card-desc {
    font-size: 0.8rem;
    color: var(--clr-text-2);
    line-height: 1.45;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== WEATHER ===== */
.weather-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.weather-card {
    padding: 20px;
    border: 1px solid var(--clr-border-light);
    background: var(--clr-white);
    cursor: pointer;
    transition: all var(--transition);
}
.weather-card:hover { border-color: var(--clr-border); }
.weather-main {
    background: linear-gradient(135deg, #1a237e, #283593);
    border: none;
    color: #fff;
    padding: 28px;
}
.weather-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.weather-city { font-size: 1rem; font-weight: 700; }
.weather-date { font-size: 0.78rem; opacity: 0.7; margin-top: 4px; }
.weather-temp-block { display: flex; align-items: center; gap: 12px; }
.weather-svg { flex-shrink: 0; }
.weather-temp { font-size: 2.2rem; font-weight: 800; }
.weather-main .weather-temp { font-size: 2.8rem; }
.weather-condition { font-size: 0.82rem; opacity: 0.8; margin-bottom: 16px; }
.weather-details-row {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.weather-detail { }
.detail-label { display: block; font-size: 0.7rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.5px; }
.detail-value { font-size: 0.88rem; font-weight: 600; }
.weather-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--clr-border-light);
    border: 1px solid var(--clr-border-light);
}
.weather-small {
    text-align: center;
    border: none;
    padding: 18px;
}
.weather-small .weather-city { font-size: 0.82rem; margin-bottom: 8px; }
.weather-small .weather-temp { font-size: 1.6rem; margin: 6px 0 4px; }
.weather-small .weather-condition { font-size: 0.75rem; margin-bottom: 0; }
.weather-small .weather-svg { margin: 0 auto; }

/* ===== VIDEO ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.video-card { cursor: pointer; }
.video-card:hover .video-title { text-decoration: underline; }
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.video-thumb img { transition: transform 0.4s ease; }
.video-card:hover .video-thumb img { transform: scale(1.04); }
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    transition: background var(--transition);
}
.video-card:hover .play-overlay { background: rgba(0,0,0,0.35); }
.play-icon { transition: transform var(--transition); }
.video-card:hover .play-icon { transform: scale(1.1); }
.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
}
.video-title {
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
    margin-top: 10px;
}
.meta-time-light { color: rgba(255,255,255,0.4); font-size: 0.75rem; margin-top: 4px; display: block; }

/* ===== PODCAST ===== */
.podcast-grid { display: flex; flex-direction: column; gap: 1px; background: var(--clr-border-light); border: 1px solid var(--clr-border-light); }
.podcast-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--clr-white);
    padding: 16px 18px;
    cursor: pointer;
    transition: background var(--transition);
}
.podcast-card:hover { background: var(--clr-surface); }
.podcast-art {
    width: 48px;
    height: 48px;
    background: var(--clr-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--clr-red);
}
.podcast-art-blue { color: #1565c0; }
.podcast-art-green { color: #2e7d32; }
.podcast-info { flex: 1; min-width: 0; }
.podcast-title { font-size: 0.92rem; font-weight: 700; }
.podcast-ep { font-size: 0.82rem; color: var(--clr-text-2); margin-top: 2px; }
.podcast-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}
.podcast-progress-wrap { flex: 1; }
.podcast-progress-bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--clr-border-light);
}
.podcast-progress-fill {
    display: block;
    height: 100%;
    background: var(--clr-red);
    transition: width 0.5s;
}
.podcast-play-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--clr-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
    color: var(--clr-dark);
}
.podcast-play-btn:hover { background: var(--clr-dark); color: #fff; }
.podcast-play-btn.playing { background: var(--clr-red); border-color: var(--clr-red); color: #fff; }

/* ===== AUDIO PLAYER BAR ===== */
.audio-player-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--clr-dark);
    color: #fff;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.audio-player-bar.open { transform: translateY(0); }
.audio-player-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.ap-info { display: flex; align-items: center; gap: 10px; min-width: 0; flex-shrink: 0; }
.ap-label {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: var(--clr-red);
    padding: 2px 6px;
    flex-shrink: 0;
}
.ap-title {
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}
.ap-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.ap-btn { color: rgba(255,255,255,0.7); padding: 6px; display: flex; transition: color var(--transition); }
.ap-btn:hover { color: #fff; }
.ap-btn-main { color: #fff; }
.ap-progress-wrap { flex: 1; min-width: 0; }
.ap-progress { width: 100%; height: 3px; background: rgba(255,255,255,0.15); cursor: pointer; }
.ap-progress-fill { height: 100%; width: 0; background: var(--clr-red); transition: width 0.5s linear; }
.ap-times { display: flex; justify-content: space-between; font-size: 0.65rem; color: rgba(255,255,255,0.4); margin-top: 3px; }
.ap-close { margin-left: 4px; }

/* ===== FOOTER ===== */
.site-footer { background: #0a0a0a; color: rgba(255,255,255,0.6); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.footer-top {
    display: flex;
    gap: 48px;
    padding: 40px 0 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { flex: 1; }
.footer-logo-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.footer-logo { font-size: 1.15rem; font-weight: 800; color: #fff; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-links-grid { display: flex; gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 6px; }
.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
}
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
    padding: 20px 0;
    font-size: 0.75rem;
    text-align: center;
    color: rgba(255,255,255,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-sidebar { flex-direction: row; overflow-x: auto; gap: 0; background: transparent; border-top: 4px solid var(--clr-red); }
    .hero-side-card { min-width: 280px; border-right: 1px solid var(--clr-border-light); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-links {
        position: fixed;
        top: 52px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--clr-dark);
        flex-direction: column;
        padding: 12px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-link { height: auto; padding: 12px 14px; }
    .nav-link::after { display: none; }
    .mobile-menu-btn { display: flex; }
    .more-dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(255,255,255,0.04); display: none; margin-top: 2px; }
    .more-dropdown.open { display: block; }
    .hero-main-img { height: 200px; }
    .hero-title { font-size: 1.3rem; }
    .hero-sidebar { flex-direction: column; }
    .hero-side-card { min-width: unset; border-right: none; }
    .news-grid { grid-template-columns: 1fr; }
    .weather-grid { grid-template-columns: 1fr; }
    .weather-small-grid { grid-template-columns: 1fr 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; gap: 24px; }
    .footer-links-grid { flex-wrap: wrap; gap: 24px; }
    .notif-panel { right: 0; left: 0; width: auto; }
    .ap-title { max-width: 120px; }
}

/* Broken image fallback styling */
.news-card-img img,
.hero-main-img img,
.side-card-img img {
    min-height: 180px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    object-fit: cover;
}
