/* ============================================
   THE NEWS HUB - Premium News Website Design
   Version 3.0 - Complete Redesign
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,400&display=swap');

:root {
    --max-width: 1270px;
    --primary: #0a0f24; /* Premium Deep Navy */
    --primary-rgb: 10, 15, 36;
    --secondary: #1E293B;
    --accent: #c2121c; /* Refined Crimson Red */
    --accent-hover: #a80c14;
    --accent-rgb: 194, 18, 28;
    --accent-light: #fef2f2;
    --accent-dark: #80070e;
    --nav-bg: #9b0b12; /* Cohesive Dark Red */
    --nav-hover: #f1c40f;
    --footer-bg: #0a0a0a;
    --footer-bottom-bg: #050814;
    --gold: #f1c40f;
    --text: #111827;
    --text-secondary: #374151;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --bg-warm: #fefce8;
    --bg-card: #ffffff;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-xs: 0 1px 2px rgba(15,23,42,0.04);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-card-hover: 0 12px 24px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
    --font-body: 'Open Sans', 'Roboto', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-display: 'Poppins', sans-serif;
    --max-width: 1270px;
    --header-height: 80px;
    --top-bar-height: 40px;
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; position: relative; width: 100%; }
body { font-family: var(--font-body); font-size: 15px; line-height: 1.65; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; width: 100%; min-width: 0; }
::selection { background: rgba(214, 31, 38, 0.12); color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--text); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; width: 100%; }
/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 24px; font-size: 0.85rem; font-weight: 600; border-radius: var(--radius-sm); transition: var(--transition); cursor: pointer; border: none; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 2px 8px rgba(214, 31, 38, 0.25); }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 4px 16px rgba(214, 31, 38, 0.35); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-ghost { background: var(--bg-alt); color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--border-light); color: var(--text); }

/* Main Header */
.main-header { background: var(--primary); border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; z-index: 1000; transition: var(--transition-slow); height: 95px; }
.main-header.sticky { box-shadow: var(--shadow-md); }
.header-flex { display: flex; align-items: center; justify-content: space-between; height: 100%; transition: var(--transition-slow); }
.header-left { display: flex; align-items: center; gap: 24px; flex: 1; }
.mobile-menu-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; font-size: 1.2rem; color: #fff; border: none; background: transparent; cursor: pointer; }
.logo-wrapper { display: flex; flex-direction: column; justify-content: center; }
.logo { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; line-height: 1; white-space: nowrap; }
.logo span { color: var(--gold); }
.logo-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.7); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.logo-img { max-height: 70px; width: auto; object-fit: contain; display: block; }

/* Navigation Bar */
.navigation-bar { background: var(--nav-bg); height: 48px; border-bottom: 3px solid var(--accent-dark); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 999; }
#main-nav { display: flex; align-items: center; }
#main-nav .container { height: 100%; display: flex; align-items: center; }
.nav-panel-body { width: 100%; }
.nav-list { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav-list li { position: relative; }
.nav-link { display: flex; align-items: center; gap: 6px; padding: 12px 0; font-size: 0.82rem; font-weight: 700; color: #fff; transition: var(--transition); position: relative; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--nav-hover); transform: scaleX(0); transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1); transform-origin: left; }
.nav-link:hover, .nav-link.active { color: var(--nav-hover); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link i.chevron { font-size: 0.6rem; transition: transform 0.3s; }

.dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--bg); border-radius: 0 0 var(--radius-sm) var(--radius-sm); box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 8px 0; z-index: 200; }
.dropdown:hover .dropdown-content { display: block; animation: fadeInDown 0.2s ease; }
.dropdown-content a { display: block; padding: 10px 20px; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); transition: var(--transition); text-transform: none; }
.dropdown-content a:hover { background: var(--bg-alt); color: var(--accent); padding-left: 24px; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

.header-right { display: flex; align-items: center; justify-content: flex-end; gap: 16px; flex: 1; }
a.glink {
    text-decoration: none;
    background-color: #ffffff;
    padding: 6px 20px;
    border-radius: 6px;
    color: #000000;
    font-weight: 700;
    border: 3px solid #000000;
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    text-transform: uppercase;
    height: 32px;
    transition: var(--transition);
}
a.glink:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #ffffff;
}
.icon-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; transition: var(--transition); font-size: 1.1rem; border: none; background: transparent; cursor: pointer; }
.icon-btn:hover { color: var(--nav-hover); background: rgba(255, 255, 255, 0.1); }
.notif-btn { position: relative; }
.notif-badge { position: absolute; top: 6px; right: 6px; background: var(--nav-hover); color: #000; font-size: 0.6rem; font-weight: 800; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid var(--primary); }
.login-btn { padding: 8px 24px; font-size: 0.85rem; border-radius: var(--radius-sm); }

/* Mobile Menu - Desktop: hide mobile-only elements */
.mobile-menu-toggle { display: none; width: 40px; height: 40px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; z-index: 1001; }
.nav-panel-header { display: none; }
.mobile-menu-close { display: none; }
.mobile-search { display: none; }
.nav-panel-footer { display: none; }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; transition: opacity 0.3s; }
.nav-overlay.active { display: block; opacity: 1; }
.mobile-menu-toggle span { display: block; width: 22px; height: 2.5px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; opacity: 0; transition: opacity 0.3s; }
.nav-overlay.active { display: block; opacity: 1; }
/* Hero Section */
.hero-section { padding: 32px 0; }
.hero-grid-3col { display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 24px; height: 560px; }

.hero-main-card { display: block; position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 100%; min-height: 0; box-shadow: var(--shadow-sm); transition: transform 0.3s; }
.hero-main-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.hero-main-card:hover img { transform: scale(1.03); }
.hero-main-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 32px; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%); color: #fff; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.hero-badge { display: inline-flex; align-items: center; padding: 4px 12px; background: var(--accent); color: #fff; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; border-radius: var(--radius-xs); margin-bottom: 12px; transition: var(--transition); box-shadow: 0 2px 10px rgba(214, 31, 38, 0.3); }
.hero-main-card:hover .hero-badge { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(214, 31, 38, 0.5); }
.hero-badge-sm { padding: 3px 8px; font-size: 0.6rem; margin-bottom: 8px; }
.hero-main-title { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.hero-main-excerpt { font-size: 0.95rem; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hero-meta { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.hero-main-overlay .hero-meta { color: rgba(255,255,255,0.7); }
.hero-meta i { font-size: 0.85rem; color: var(--accent); }

.hero-middle-stack { display: flex; flex-direction: column; gap: 24px; height: 100%; min-height: 0; }
.hero-middle-card { display: block; position: relative; border-radius: var(--radius-lg); overflow: hidden; flex: 1; box-shadow: var(--shadow-sm); }
.hero-middle-img { width: 100%; height: 100%; position: relative; }
.hero-middle-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.hero-middle-card:hover .hero-middle-img img { transform: scale(1.05); }
.hero-middle-overlay { position: absolute; inset: 0; padding: 20px; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 65%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.hero-middle-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.hero-middle-overlay .hero-meta { color: rgba(255,255,255,0.6); }

.hero-trending-sidebar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; height: 100%; min-height: 0; }
.trending-header { padding: 16px 20px; border-bottom: 1px solid var(--border-light); }
.trending-header h3 { font-size: 1rem; font-weight: 800; color: var(--text); display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.5px; margin: 0; }
.trending-header h3 i { color: var(--accent); }
.trending-tabs { display: flex; border-bottom: 1px solid var(--border); }
.trending-tabs button { flex: 1; padding: 10px 0; font-size: 0.75rem; font-weight: 700; color: var(--text-muted); background: transparent; transition: var(--transition); border-bottom: 2px solid transparent; }
.trending-tabs button.active { color: var(--accent); border-bottom-color: var(--accent); background: var(--bg-alt); }
.trending-tabs button:hover:not(.active) { color: var(--text); background: var(--bg-alt); }
.trending-list { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }
.trending-list-item { display: flex; align-items: flex-start; gap: 12px; padding: 16px 20px; border-bottom: 1px solid var(--border-light); transition: var(--transition-bounce); }
.trending-list-item:hover { background: var(--bg-alt); transform: translateX(6px); }
.trending-list-item:last-child { border-bottom: none; }
.trending-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--accent); opacity: 0.8; line-height: 1; min-width: 24px; text-align: center; margin-top: 4px; transition: var(--transition); }
.trending-list-item:hover .trending-num { color: var(--text); transform: scale(1.1); }
.trending-item-content { flex: 1; }
.trending-item-content h4 { font-size: 0.85rem; font-weight: 700; line-height: 1.4; margin-bottom: 6px; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.trending-list-item:hover h4 { color: var(--accent); }
.trending-item-img { width: 70px; height: 50px; border-radius: var(--radius-xs); overflow: hidden; flex-shrink: 0; }
.trending-item-img img { width: 100%; height: 100%; object-fit: cover; }


/* Top Stories & E-Paper Section */
.top-stories-section { padding: 40px 0; }
.section-head-red { border-bottom: 2px solid var(--accent); padding-bottom: 12px; }
.top-stories-grid { display: grid; grid-template-columns: 2.2fr 1fr; gap: 24px; margin-top: 24px; }
.top-stories-left { display: flex; flex-direction: column; gap: 24px; }
.top-story-lead { display: block; position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 380px; box-shadow: var(--shadow-sm); }
.top-story-lead img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.top-story-lead:hover img { transform: scale(1.03); }
.ts-lead-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%); color: #fff; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.ts-lead-content h3 { font-family: var(--font-display); font-size: 1.8rem; margin: 10px 0; color: #fff; line-height: 1.2; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.ts-lead-content p { font-size: 0.9rem; color: rgba(255,255,255,0.85); margin-bottom: 12px; }
.top-story-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ts-stack-item { display: block; background: var(--bg-card); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-light); transition: var(--transition-bounce); box-shadow: var(--shadow-sm); }
.ts-stack-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.ts-stack-img-wrapper { overflow: hidden; height: 140px; }
.ts-stack-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ts-stack-item:hover img { transform: scale(1.05); }
.ts-stack-content { padding: 16px; }
.ts-cat-text { font-size: 0.65rem; color: var(--accent); font-weight: 800; text-transform: uppercase; margin-bottom: 6px; display: block; }
.ts-stack-content h4 { font-size: 0.95rem; line-height: 1.35; margin-bottom: 10px; color: var(--text); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ts-stack-item:hover h4 { color: var(--accent); }

.epaper-block { background: var(--primary); border-radius: var(--radius-lg); overflow: hidden; color: #fff; display: flex; flex-direction: column; }
.epaper-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.epaper-header h3 { font-size: 0.95rem; font-weight: 800; color: #fff; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }
.epaper-header a { font-size: 0.75rem; color: rgba(255,255,255,0.7); font-weight: 600; }
.epaper-header a:hover { color: #fff; }
.epaper-main { display: flex; gap: 20px; padding: 24px; flex: 1; align-items: center; }
.epaper-img-wrap { width: 140px; border-radius: var(--radius-sm); overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.3); flex-shrink: 0; background: rgba(255,255,255,0.05); min-height: 180px; }
.epaper-info h4 { font-size: 1.1rem; color: #fff; margin-bottom: 6px; }
.epaper-info p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.epaper-actions { display: flex; gap: 10px; }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); padding: 8px 16px; font-size: 0.8rem; font-weight: 600; border-radius: var(--radius-sm); transition: var(--transition); cursor: pointer; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.epaper-actions .btn-primary { padding: 8px 16px; font-size: 0.8rem; }
.epaper-thumbnails { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: rgba(0,0,0,0.2); }
.epaper-thumbnails img { width: 60px; border-radius: var(--radius-xs); border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: var(--transition); }
.epaper-thumbnails img:hover { border-color: var(--accent); transform: scale(1.05); }
.epaper-more { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; cursor: pointer; transition: var(--transition); }
.epaper-more:hover { background: var(--accent); }

/* Category Sections - Shared */
.cat-section { padding: 48px 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 2px solid var(--border); margin-bottom: 28px; }
.section-head-left { display: flex; align-items: center; gap: 14px; }
.section-accent { width: 4px; height: 28px; background: var(--accent); border-radius: 2px; flex-shrink: 0; }
.section-heading { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800; color: var(--text); letter-spacing: -0.3px; }
.section-heading-white { color: #fff; }
.section-more { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; font-size: 0.78rem; font-weight: 600; color: var(--accent); border: 1.5px solid var(--accent); border-radius: var(--radius-full); transition: var(--transition); white-space: nowrap; }
.section-more:hover { background: var(--accent); color: #fff; }

/* /* Latest News & Sidebar Section */
.latest-news-section { padding: 48px 0; background: var(--bg-alt); }
.latest-news-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.latest-news-main { display: flex; flex-direction: column; }
.latest-tabs { display: flex; align-items: center; gap: 16px; margin-left: 24px; border-left: 1px solid var(--border); padding-left: 24px; }
.latest-tabs a { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); }
.latest-tabs a.active, .latest-tabs a:hover { color: var(--accent); }
.latest-news-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 24px; }
.latest-card-horizontal { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 12px; transition: var(--transition-bounce); box-shadow: var(--shadow-sm); }
.latest-card-horizontal:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--border); }
.latest-card-img { width: 100px; height: 100px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.latest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.latest-card-horizontal:hover .latest-card-img img { transform: scale(1.05); }
.latest-card-content { flex: 1; }
.latest-card-content h4 { font-family: var(--font-heading); font-size: 0.95rem; line-height: 1.35; margin-bottom: 8px; color: var(--text); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.3s; }
.latest-card-horizontal:hover h4 { color: var(--accent); }

.latest-news-sidebar { display: flex; flex-direction: column; gap: 32px; }
.sidebar-widget { background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.sidebar-widget h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; border-bottom: 2px solid var(--border); padding-bottom: 12px; margin-bottom: 20px; display: inline-block; position: relative; }
.sidebar-widget h3::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 40px; height: 2px; background: var(--accent); }
.stay-updated-widget p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 16px; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form input { padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9rem; outline: none; transition: border-color 0.3s; }
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button { width: 100%; padding: 12px; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.social-box { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 16px 12px; border-radius: var(--radius-md); border: 1px solid var(--border-light); transition: var(--transition-bounce); text-decoration: none; color: var(--text); }
.social-box i { font-size: 1.5rem; transition: transform 0.3s; }
.social-box:hover i { transform: scale(1.1); }
.social-box div { font-size: 0.85rem; font-weight: 700; text-align: center; }
.social-box span { display: block; font-size: 0.65rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.social-box.fb { background: #eef2f8; } .social-box.fb i { color: #1877f2; }
.social-box.tw { background: #f0f8ff; } .social-box.tw i { color: #1da1f2; }
.social-box.ig { background: #fdf5f7; } .social-box.ig i { color: #e4405f; }
.social-box.yt { background: #fbecec; } .social-box.yt i { color: #ff0000; }
.social-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border); }

/* Videos Section */
.videos-section { padding: 48px 0; background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); }
.section-head-dark { border-bottom-color: rgba(255,255,255,0.1); }
.section-head-dark .section-accent { background: var(--accent); }
.section-head-dark .section-heading { color: #fff; }
.section-head-dark .section-more { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); }
.section-head-dark .section-more:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.videos-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; }
.youtube-facade { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; aspect-ratio: 16/9; background: #000; }
.youtube-facade img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s; }
.play-btn-large { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 72px; height: 72px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); box-shadow: 0 4px 20px rgba(214, 31, 38, 0.4); }
.youtube-facade:hover .play-btn-large { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 6px 30px rgba(214, 31, 38, 0.5); }
.videos-featured-card { display: block; border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.videos-featured-card:hover { transform: translateY(-3px); }
.videos-featured-info { padding: 20px 0; }
.videos-featured-cat { display: inline-block; padding: 3px 10px; background: rgba(214, 31, 38, 0.15); color: var(--accent); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; border-radius: var(--radius-xs); margin-bottom: 10px; }
.videos-featured-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 8px; }
.videos-featured-meta { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.videos-featured-meta i { margin-right: 4px; }
.videos-side { display: flex; flex-direction: column; gap: 14px; }
.videos-side-item { display: flex; gap: 16px; padding: 14px; background: rgba(255,255,255,0.04); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.06); transition: var(--transition); }
.videos-side-item:hover { background: rgba(255,255,255,0.08); transform: translateX(4px); }
.videos-side-thumb { position: relative; width: 140px; height: 90px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.videos-side-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-btn-sm { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 34px; height: 34px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.videos-side-item:hover .play-btn-sm { opacity: 1; }
.videos-side-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--accent); opacity: 0.3; line-height: 1; margin-bottom: 6px; }
.videos-side-title { font-size: 0.9rem; font-weight: 600; color: #e2e8f0; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 4px; }
.videos-side-item:hover .videos-side-title { color: #fff; }
.videos-side-meta { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
/* Footer */
.site-footer { background: var(--primary); color: #fff; }
.footer-top-bar { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 14px 0; }
.footer-top-flex { display: flex; align-items: center; justify-content: space-between; }
.footer-top-links { display: flex; gap: 24px; }
.footer-top-links a { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 500; transition: var(--transition); }
.footer-top-links a:hover { color: #fff; }
.footer-top-social { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-top-social a { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); color: rgba(255,255,255,0.6); transition: var(--transition); font-size: 0.82rem; }
.footer-top-social a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding: 50px 0 40px; }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; display: inline-block; margin-bottom: 16px; }
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2.5px; background: var(--accent); border-radius: 2px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: ''; width: 0; height: 1.5px; background: var(--accent); transition: width 0.2s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-links a:hover::before { width: 12px; }
.footer-newsletter { grid-column: span 1; }
.newsletter-form { margin-top: 14px; }
.newsletter-input-group { display: flex; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }
.newsletter-input-group input { flex: 1; padding: 12px 16px; border: none; background: rgba(255,255,255,0.08); color: #fff; font-size: 0.88rem; outline: none; }
.newsletter-input-group input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input-group input:focus { background: rgba(255,255,255,0.12); }
.newsletter-input-group button { padding: 12px 20px; background: var(--accent); color: #fff; border: none; font-size: 0.9rem; cursor: pointer; transition: var(--transition); }
.newsletter-input-group button:hover { background: var(--accent-hover); }
.footer-trust { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 10px; display: flex; align-items: center; gap: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; align-items: center; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: #fff; }
.footer-developed { font-size: 0.78rem; }
.footer-developed a { color: var(--accent); font-weight: 600; }

/* Back to Top */
.back-to-top { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--accent); color: #fff; border-radius: var(--radius-full); font-size: 1rem; box-shadow: 0 4px 16px rgba(214, 31, 38, 0.3); opacity: 0; visibility: hidden; transform: translateY(20px); transition: var(--transition); z-index: 500; cursor: pointer; border: none; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 6px 24px rgba(214, 31, 38, 0.4); }

@media (max-width: 768px) {
    .back-to-top {
        bottom: 85px; /* Above the mobile bottom nav */
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* Article Detail Page */
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; padding: 32px 0 60px; }
.detail-layout > * { min-width: 0; overflow: hidden; }
.main-article { min-width: 0; overflow-x: hidden; }
.breadcrumb { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-secondary); font-weight: 500; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-light); }
.article-category-badge a { display: inline-block; padding: 5px 14px; background: var(--accent-light); color: var(--accent); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; border-radius: var(--radius-xs); margin-bottom: 14px; transition: var(--transition); }
.article-category-badge a:hover { background: var(--accent); color: #fff; }
.article-title-large { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; line-height: 1.18; margin-bottom: 18px; color: var(--text); letter-spacing: -0.5px; }
.article-top-meta { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); margin-bottom: 28px; }
.author-info { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.author-name { font-weight: 700; font-size: 0.92rem; color: var(--text); }
.article-date { font-size: 0.78rem; color: var(--text-muted); }
.article-date i { margin-right: 4px; }
.meta-stats { display: flex; gap: 20px; }
.meta-stats span { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.meta-stats i { font-size: 0.78rem; }
.article-hero-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; box-shadow: var(--shadow-md); }
.article-hero-image img { width: 100%; height: auto; max-height: 520px; object-fit: cover; }
.image-caption { padding: 12px 18px; background: var(--bg-alt); font-size: 0.82rem; color: var(--text-muted); font-style: italic; text-align: center; }
.article-content { font-size: 1.05rem; line-height: 1.85; color: var(--text-secondary); margin-bottom: 32px; overflow-wrap: break-word; word-break: break-word; word-wrap: break-word; }
.article-content h2 { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; margin: 36px 0 16px; color: var(--text); }
.article-content h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin: 28px 0 12px; color: var(--text); }
.article-content p { margin-bottom: 20px; }
.article-content blockquote { border-left: 4px solid var(--accent); padding: 20px 24px; margin: 28px 0; background: var(--bg-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--text-secondary); }
.article-content img { border-radius: var(--radius); margin: 24px 0; box-shadow: var(--shadow-sm); }
.article-content ul, .article-content ol { margin: 16px 0; padding-left: 24px; }
.article-content li { margin-bottom: 8px; list-style: disc; }
.article-content a { color: var(--accent); font-weight: 600; border-bottom: 1px solid transparent; transition: var(--transition); }
.article-content a:hover { border-bottom-color: var(--accent); }
.article-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 20px 0; border-top: 1px solid var(--border-light); margin-bottom: 24px; }
.tag-label { font-size: 0.82rem; font-weight: 600; color: var(--text-secondary); display: flex; align-items: center; gap: 6px; }
.article-tag { display: inline-block; padding: 5px 14px; background: var(--bg-alt); color: var(--text-secondary); font-size: 0.78rem; font-weight: 500; border-radius: var(--radius-full); border: 1px solid var(--border); transition: var(--transition); }
.article-tag:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.article-share-bar { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; background: var(--bg-alt); border-radius: var(--radius); margin-bottom: 32px; border: 1px solid var(--border-light); }
.share-label { font-size: 0.88rem; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 8px; }
.share-buttons { display: flex; gap: 8px; }
.share-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); color: #fff; font-size: 0.9rem; transition: var(--transition); }
.share-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }
.share-whatsapp { background: #25d366; }
.share-linkedin { background: #0077b5; }
.share-telegram { background: #0088cc; }
.author-bio-box { display: flex; gap: 20px; padding: 28px; background: var(--bg-alt); border-radius: var(--radius); margin-bottom: 40px; border: 1px solid var(--border-light); }
.author-bio-avatar { width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0; }
.author-bio-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.author-bio-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.author-bio-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
/* Sidebar Widgets */
.sidebar { position: sticky; top: calc(var(--header-height) + 20px); }
.sidebar-widget { background: var(--bg-card); border-radius: var(--radius); padding: 24px; margin-bottom: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }
.widget-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 10px; }
.widget-title span { position: relative; }
.widget-title span::after { content: ''; position: absolute; bottom: -14px; left: 0; width: 30px; height: 2.5px; background: var(--accent); border-radius: 2px; }
.trending-list { display: flex; flex-direction: column; gap: 14px; }
.trending-item { display: flex; gap: 14px; padding: 10px; border-radius: var(--radius-sm); transition: var(--transition); }
.trending-item:hover { background: var(--bg-alt); }
.trending-thumb { width: 80px; height: 65px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.trending-thumb img { width: 100%; height: 100%; object-fit: cover; }
.trending-title { font-size: 0.88rem; font-weight: 600; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 4px; color: var(--text); }
.trending-item:hover .trending-title { color: var(--accent); }
.trending-date { font-size: 0.72rem; color: var(--text-muted); }
.sidebar-categories { display: flex; flex-direction: column; gap: 4px; }
.sidebar-categories a { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 500; color: var(--text-secondary); transition: var(--transition); }
.sidebar-categories a:hover { background: var(--accent-light); color: var(--accent); }
.cat-count { font-size: 0.72rem; font-weight: 600; padding: 2px 8px; background: var(--bg-alt); border-radius: var(--radius-full); color: var(--text-muted); }
.sidebar-newsletter { background: linear-gradient(135deg, var(--primary) 0%, #1a2332 100%); color: #fff; border: none; }
.newsletter-icon { font-size: 2.2rem; color: var(--accent); margin-bottom: 14px; }
.newsletter-title { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 10px; color: #fff; }
.newsletter-desc { font-size: 0.85rem; opacity: 0.75; margin-bottom: 18px; color: #94a3b8; }
.sidebar-newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.sidebar-newsletter-form input { padding: 12px 16px; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm); background: rgba(255,255,255,0.08); color: #fff; font-size: 0.88rem; outline: none; }
.sidebar-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.sidebar-newsletter-form input:focus { border-color: var(--accent); background: rgba(255,255,255,0.12); }
.sidebar-newsletter-form button { padding: 12px; background: var(--accent); color: #fff; border: none; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.sidebar-newsletter-form button:hover { background: var(--accent-hover); }

/* Category Page */
.category-header-banner { background: linear-gradient(135deg, var(--primary) 0%, #1a2332 100%); padding: 60px 0; color: #fff; text-align: center; }
.category-page-title { font-family: var(--font-display); font-size: 3rem; font-weight: 800; margin-bottom: 12px; color: #fff; }
.category-title-accent { width: 60px; height: 4px; background: var(--accent); border-radius: 2px; margin: 0 auto 16px; }
.category-page-desc { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto; }
.category-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; padding: 40px 0 60px; }
.premium-cat-hero { display: block; position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 450px; margin-bottom: 32px; box-shadow: var(--shadow-md); }
.hero-img-wrapper { position: absolute; inset: 0; }
.hero-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.premium-cat-hero:hover .hero-img-wrapper img { transform: scale(1.03); }
.cat-list-item { display: flex; gap: 20px; padding: 20px; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border-light); transition: var(--transition); margin-bottom: 16px; }
.cat-list-item:hover { box-shadow: var(--shadow-card-hover); transform: translateX(4px); }
.list-img-wrapper { width: 240px; height: 160px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.list-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.cat-list-item:hover .list-img-wrapper img { transform: scale(1.05); }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }

/* Scroll Reveal & Animations */
.scroll-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* Skeleton Loading */
.skeleton { background: linear-gradient(90deg, var(--border-light) 25%, var(--bg-alt) 50%, var(--border-light) 75%); background-size: 200% 100%; animation: skeleton-loading 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Mobile Bottom Navigation */
.mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg); border-top: 1px solid var(--border); z-index: 1000; padding: 8px 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.05); }
.mobile-bottom-nav-inner { display: flex; align-items: center; justify-content: space-around; }
.mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 6px 12px; color: var(--text-muted); font-size: 0.62rem; font-weight: 600; transition: var(--transition); text-decoration: none; }
.mobile-bottom-nav a i { font-size: 1.15rem; }
.mobile-bottom-nav a.active, .mobile-bottom-nav a:hover { color: var(--accent); }

/* Mobile Scrollable Categories Navigation */
.mobile-scroll-nav { display: none; }
/* ============================================
   Responsive Design
   ============================================ */

/* Tablet & Small Desktop */
@media (max-width: 1024px) {
    .hero-grid, .hero-grid-3col { grid-template-columns: 1fr 1fr; height: auto; }
    .top-stories-grid, .latest-news-layout { grid-template-columns: 1fr; gap: 32px; }
    .hero-main-card { height: 420px; }
    .cards-row-3 { grid-template-columns: repeat(2, 1fr); }
    .biz-editorial-grid, .feature-side-grid, .numbers-grid, .sports-score-layout { grid-template-columns: 1fr 1fr; }
    .mosaic-grid { grid-template-rows: 240px 240px; }
    .ent-thumb-row { grid-template-columns: repeat(2, 1fr); }
    .videos-layout { grid-template-columns: 1fr 1fr; }
    .detail-layout { grid-template-columns: 1fr 300px; gap: 30px; }
    .category-layout { grid-template-columns: 1fr 300px; gap: 30px; }
    .article-title-large { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .top-menu { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
    :root { --header-height: 60px; }
    .top-nav-bar { display: block; height: auto; padding: 8px 0; }
    .top-nav-flex { flex-wrap: wrap; height: auto; gap: 8px; justify-content: space-between; }
    .top-menu { display: none; }
    .top-right-items { gap: 12px; }
    .top-socials { display: none; }
    
    .main-header {
        background-color: var(--nav-bg) !important;
        background-image: url('https://1.newsportaldesign.com/wp-content/uploads/2023/04/azsxdsaz.gif');
        background-repeat: no-repeat;
        background-position: left center;
        height: 65px;
    }
    .header-flex { justify-content: center; position: relative; }
    .header-left { justify-content: center; width: 100%; flex: none; gap: 0; }
    .mobile-menu-toggle { display: flex; position: absolute; left: 0; top: 50%; transform: translateY(-50%); }
    .logo { font-size: 1.6rem; }
    .logo-tagline { display: none; }
    .glink { display: none !important; }
    .navigation-bar { display: none !important; }
    
    .mobile-scroll-nav {
        display: block;
        background: #9b0c00;
        border-top: 1.5px solid rgba(255,255,255,0.15);
        border-bottom: 2px solid rgba(0,0,0,0.15);
        padding: 8px 0;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .mobile-scroll-nav::-webkit-scrollbar {
        display: none;
    }
    .mobile-scroll-nav-inner {
        display: flex;
        gap: 15px;
        padding: 0 15px;
    }
    .mobile-scroll-nav a {
        color: #fff;
        font-weight: 700;
        font-size: 0.85rem;
        text-decoration: none;
        padding: 4px 10px;
        border-radius: 4px;
        text-transform: uppercase;
        display: inline-block;
    }
    .mobile-scroll-nav a.active {
        background: rgba(255,255,255,0.25);
        color: #fff;
    }

    .mobile-search { display: block; }
    #main-nav { position: fixed; top: 0; left: -300px; width: 300px; height: 100vh; background: var(--primary); z-index: 1001; flex-direction: column; align-items: stretch; overflow-y: auto; transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: var(--shadow-xl); color: #fff; }
    #main-nav.active { left: 0; }
    .nav-panel-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .nav-panel-header .nav-panel-logo { font-size: 1.3rem; color: #fff; }
    .mobile-menu-close { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); cursor: pointer; color: #fff; font-size: 1rem; }
    .nav-panel-body { flex: 1; overflow-y: auto; }
    .nav-panel-body .nav-list { flex-direction: column; align-items: stretch; padding: 12px 0; }
    .nav-panel-body .nav-link { padding: 12px 20px; font-size: 0.95rem; border-radius: 0; color: #fff; }
    .nav-panel-body .nav-link::after { display: none; }
    .nav-panel-body .dropdown-content { position: static; box-shadow: none; border: none; padding-left: 20px; background: transparent; }
    .nav-panel-body .dropdown-content a { color: rgba(255,255,255,0.8); }
    .nav-panel-body .dropdown-content a:hover { color: var(--accent); background: rgba(255,255,255,0.05); }
    .nav-panel-footer { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; gap: 10px; }
    .nav-panel-footer .admin-link { flex: 1; justify-content: center; padding: 10px; }
    .header-right { display: none !important; }
    .hero-grid, .hero-grid-3col { grid-template-columns: 1fr; height: auto; gap: 16px; }
    .hero-main-card { height: 350px; }
    .hero-middle-card { height: 260px; display: flex; }
    
    /* Swipeable Categories */
    .cat-icons-flex { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; justify-content: flex-start; scrollbar-width: none; gap: 24px; }
    .cat-icons-flex::-webkit-scrollbar { display: none; }
    .cat-icon-item { flex: 0 0 auto; scroll-snap-align: start; min-width: 60px; }
    
    /* Top Stories & Latest News */
    .top-stories-grid, .latest-news-layout { grid-template-columns: 1fr; gap: 24px; }
    .top-story-stack { grid-template-columns: 1fr; }
    .top-story-lead { height: 280px; }
    .latest-news-grid { grid-template-columns: 1fr; }
    .latest-tabs { margin-left: 0; padding-left: 0; border-left: none; margin-top: 12px; }
    
    /* E-Paper adjustments */
    .epaper-main { flex-direction: column; text-align: center; }
    .epaper-actions { justify-content: center; }
    .hero-side { flex-direction: row; }
    .hero-side-card { flex: 1; }
    .hero-side-img { height: 120px; }
    .hero-main-title { font-size: 1.5rem; }
    .cards-row-3 { grid-template-columns: 1fr; gap: 16px; }
    .card-3col-img { height: 180px; }
    .feature-side-grid, .numbers-grid, .biz-editorial-grid, .sports-score-layout { grid-template-columns: 1fr; }
    .feature-side-main, .numbers-hero { height: 300px; }
    .feature-side-stack { flex-direction: row; flex-wrap: wrap; }
    .feature-side-stack-card { flex: 1 1 calc(50% - 8px); min-width: 260px; }
    .mosaic-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .mosaic-card { height: 240px; }
    .mosaic-card-1 { grid-row: auto; }
    .ent-cinema-main { height: 300px; }
    .ent-thumb-row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .biz-edit-lead-img { height: 220px; }
    .sports-score-main-img { height: 200px; }
    .videos-layout { grid-template-columns: 1fr; }
    .videos-side-item { flex-direction: column; }
    .videos-side-thumb { width: 100%; height: 180px; }
    .detail-layout { grid-template-columns: 1fr; gap: 24px; padding: 20px 0 40px; }
    .category-layout { grid-template-columns: 1fr; gap: 24px; padding: 20px 0 40px; }
    .sidebar { position: static; }
    .article-title-large { font-size: 1.8rem; }
    .article-top-meta { flex-direction: column; gap: 14px; align-items: flex-start; }
    .meta-stats { flex-wrap: wrap; gap: 12px; }
    .author-bio-box { flex-direction: column; align-items: center; text-align: center; }
    .article-share-bar { flex-direction: column; gap: 14px; }
    .category-page-title { font-size: 2rem; }
    .premium-cat-hero { height: 280px; }
    .cat-list-item { flex-direction: column; }
    .list-img-wrapper { width: 100%; height: 200px; }
    .contact-grid { grid-template-columns: 1fr; }
    .mobile-bottom-nav { display: block; }
    body { padding-bottom: 70px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 40px 0 30px; }
    .footer-top-flex { flex-direction: column; gap: 12px; text-align: center; }
    .footer-top-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
}

/* Small Mobile */
@media (max-width: 576px) {
    .container { padding: 0 16px; }
    .hero-main-card { height: 280px; }
    .hero-main-title { font-size: 1.3rem; }
    .hero-main-overlay { padding: 24px 20px 20px; }
    .hero-side { flex-direction: column; }
    .hero-side-img { height: 140px; }
    .section-heading { font-size: 1.15rem; }
    .section-more { padding: 6px 14px; font-size: 0.72rem; }
    .card-3col-img { height: 160px; }
    .mosaic-card { height: 200px; }
    .ent-thumb-row { grid-template-columns: 1fr; }
    .ent-cinema-main { height: 240px; }
    .ent-cinema-title { font-size: 1.5rem; }
    .article-title-large { font-size: 1.5rem; }
    .category-page-title { font-size: 1.6rem; }
    .category-header-banner { padding: 40px 0; }
    .btn { padding: 8px 18px; font-size: 0.8rem; }
}

/* Prevent horizontal overflow on mobile - targeted fixes */
@media (max-width: 768px) {
    /* Ensure content containers don't overflow */
    .container, .main-article, .article-content,
    .article-header, .article-hero-image,
    .breadcrumb, .article-share-bar, .article-tags { 
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    /* Images always contained */
    img, video, iframe { max-width: 100% !important; width: auto; }
    /* Force Tailwind max-width containers to full width */
    [class*="max-w-"] { max-width: 100% !important; }
    /* Article text always wraps */
    .article-content p, .article-content h1,
    .article-content h2, .article-content h3,
    .article-title-large, .breadcrumb {
        overflow-wrap: break-word;
        word-break: break-word;
        word-wrap: break-word;
    }
}

/* Print Styles */
@media print {
    .top-nav-bar, .breaking-bar, .main-header, .mobile-bottom-nav, .sidebar, .article-share-bar, .back-to-top, .footer, .videos-section { display: none !important; }
    .detail-layout { grid-template-columns: 1fr; }
    .article-content { font-size: 12pt; line-height: 1.6; color: #000; }
    .article-title-large { font-size: 24pt; }
    body { background: #fff; color: #000; }
}
/* ============================================
   Accessibility
   ============================================ */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
    border-radius: var(--radius-xs);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 700;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .breaking-ticker, .trending-strip-track { animation: none !important; }
    .scroll-reveal { opacity: 1 !important; transform: none !important; }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    :root {
        --border: #000;
        --border-light: #333;
        --text-muted: #555;
    }
    .btn-primary { border: 2px solid #000; }
    .hero-badge { border: 2px solid #fff; }
    .article-tag { border-width: 2px; }
}
/* ============================================
   NEW HERO GRID & SIDEBAR
   ============================================ */
.hero-grid-new { display: grid; grid-template-columns: 2.2fr 1fr; gap: 24px; height: 420px; margin-bottom: 30px; }
.hero-main-wrapper { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); height: 100%; }
.hero-main-card { display: block; width: 100%; height: 100%; position: relative; }
.hero-main-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hero-main-card:hover img { transform: scale(1.03); }
.hero-main-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; color: #fff; }
.hero-badges { display: flex; gap: 10px; margin-bottom: 16px; }
.hero-badge-live { background: var(--accent); color: #fff; padding: 4px 12px; font-size: 0.7rem; font-weight: 800; border-radius: 4px; display: inline-flex; align-items: center; gap: 6px; }
.live-dot { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: pulseLive 1.5s infinite; }
@keyframes pulseLive { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.2); } 100% { opacity: 1; transform: scale(1); } }
.hero-cat-tag { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.8); text-transform: uppercase; margin-bottom: 12px; display: block; }
.hero-main-title { font-size: 2.4rem; font-weight: 800; line-height: 1.2; margin-bottom: 12px; color: #fff; text-wrap: balance; }
.hero-main-excerpt { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 24px; max-width: 800px; }
.hero-meta-new { display: flex; align-items: center; justify-content: space-between; }
.author-info { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.9); }
.hero-controls { position: absolute; bottom: 40px; right: 40px; display: flex; align-items: center; gap: 20px; }
.hero-dots { display: flex; gap: 6px; }
.hero-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; }
.hero-dots .dot.active { background: #fff; width: 24px; border-radius: 4px; }
.hero-arrows { display: flex; gap: 8px; }
.hero-arrows button { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff; cursor: pointer; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.hero-arrows button:hover { background: #fff; color: var(--primary); }

.hero-top-stories { background: var(--bg-card); border-radius: var(--radius-xl); border: 1px solid var(--border); padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%; overflow-y: auto; }
.hero-top-stories::-webkit-scrollbar { width: 4px; }
.hero-top-stories::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.2); border-radius: 4px; }
.section-head-new { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.section-head-new h3 { font-size: 1.2rem; font-weight: 800; color: var(--text); display: flex; align-items: center; gap: 10px; margin: 0; }
.section-head-new h3 .red-line { width: 4px; height: 20px; background: var(--accent); border-radius: 2px; }
.section-head-new a { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); display: flex; align-items: center; gap: 4px; transition: color 0.3s; text-decoration: none; }
.section-head-new a:hover { color: var(--accent); }
.top-stories-list { display: flex; flex-direction: column; gap: 20px; flex: 1; }
.ts-list-item { display: flex; gap: 16px; align-items: center; transition: background 0.3s; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); text-decoration: none; }
.ts-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.ts-list-img { width: 90px; height: 90px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.ts-list-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ts-list-item:hover .ts-list-img img { transform: scale(1.1); }
.ts-list-content { flex: 1; }
.ts-list-content .ts-cat { font-size: 0.7rem; font-weight: 800; color: var(--accent); margin-bottom: 6px; display: block; text-transform: uppercase; }
.ts-list-content .read-time { color: var(--text-light); font-weight: 500; text-transform: none; }
.ts-list-content h4 { font-size: 1rem; line-height: 1.4; color: var(--text); font-weight: 700; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.3s; margin-top:0; }
.ts-list-item:hover h4 { color: var(--accent); }
.ts-list-content .ts-date { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   MARKET UPDATES TICKER
   ============================================ */
.market-updates-ticker { background: var(--bg-card); border-bottom: 1px solid var(--border-light); padding: 10px 0; overflow: hidden; font-family: var(--font-body); margin-bottom: 30px; }
.ticker-container { display: flex; align-items: center; max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.ticker-badge { background: var(--accent); color: #fff; padding: 6px 16px; border-radius: 4px; font-weight: 800; font-size: 0.8rem; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; z-index: 2; position: relative; flex-shrink: 0; margin-right: 20px; text-transform: uppercase; }
.pulse-dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; display: inline-block; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); } }
.ticker-wrap { flex: 1; overflow: hidden; position: relative; white-space: nowrap; box-sizing: border-box; }
.ticker-move { display: inline-block; animation: ticker 25s linear infinite; }
.ticker-move:hover { animation-play-state: paused; }
.ticker-item { display: inline-block; margin-right: 40px; font-size: 0.95rem; font-weight: 600; color: var(--text); }
.ticker-item a { color: inherit; text-decoration: none; transition: color 0.3s; }
.ticker-item a:hover { color: var(--accent); }
@keyframes ticker { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }

/* ============================================
   NEW EPAPER SECTION
   ============================================ */
.epaper-section-new { padding: 0 0 60px 0; background: var(--bg); }
.epaper-card-new { background: var(--bg-alt); border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); display: flex; overflow: hidden; }
.epaper-card-left { padding: 30px 40px; flex: 1; display: flex; flex-direction: column; justify-content: center; background: #fff; }
.epaper-card-left h2 { font-size: 1.8rem; font-weight: 800; line-height: 1.2; color: var(--text); margin-bottom: 12px; margin-top:0; }
.epaper-card-left .epaper-meta { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.epaper-card-left p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 20px; max-width: 320px; line-height: 1.5; }
.epaper-actions-new { display: flex; gap: 12px; }
.btn-red { background: var(--accent); color: #fff; font-weight: 600; padding: 10px 24px; font-size: 0.9rem; border-radius: 8px; transition: all 0.3s; box-shadow: 0 4px 12px rgba(230,0,0,0.2); text-decoration: none; }
.btn-red:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(230,0,0,0.3); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); font-weight: 600; padding: 10px 24px; font-size: 0.9rem; border-radius: 8px; transition: all 0.3s; text-decoration: none; }
.btn-outline:hover { background: var(--bg-alt); border-color: var(--text-muted); }

.epaper-card-right { flex: 1.2; padding: 20px 30px; background: rgba(249, 250, 251, 0.5); display: flex; align-items: center; justify-content: center; }
.epaper-carousel { display: flex; gap: 15px; width: 100%; position: relative; padding-right: 35px; justify-content: flex-start; }
.epaper-item-new { flex: 0 0 calc(33.333% - 10px); max-width: 200px; text-align: center; display: block; text-decoration: none; color: inherit; transition: transform 0.3s; }
.epaper-item-new:hover { transform: translateY(-3px); }
.epaper-item-img { width: 100%; aspect-ratio: 2/3; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 12px; border: 1px solid var(--border-light); background: #fff; display: flex; align-items: center; justify-content: center; }
.epaper-item-img img { width: 100%; height: 100%; object-fit: cover; }
.epaper-item-new h4 { font-size: 0.85rem; font-weight: 700; color: var(--text); margin-bottom: 2px; margin-top:0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.epaper-item-date { font-size: 0.75rem; color: var(--text-muted); }
.epaper-next { position: absolute; right: 0; top: 40%; transform: translateY(-50%); width: 36px; height: 36px; background: #fff; border: 1px solid var(--border); border-radius: 50%; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text); transition: all 0.3s; z-index: 10; }
.epaper-next:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Mobile Resets for new blocks */
@media (max-width: 992px) {
    .hero-grid-new { grid-template-columns: 1fr; height: auto; }
    .hero-main-wrapper { height: 350px; }
    .epaper-card-new { flex-direction: column; }
    .epaper-card-right { padding: 30px 20px; }
    .epaper-card-left { padding: 40px 20px; text-align: center; align-items: center; }
    .epaper-card-left p { max-width: 100%; }
}

@media (max-width: 768px) {
    .hero-main-wrapper { height: 280px; }
    .hero-main-overlay { padding: 24px; }
    .hero-main-title { font-size: 1.6rem; }
    .hero-controls { display: none; }
    
    .cat-icons-flex { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; justify-content: flex-start; padding: 0 10px; gap: 16px; }
    .cat-icons-flex::-webkit-scrollbar { display: none; }
    .cat-icon-item { flex: 0 0 auto; }
    
    .epaper-carousel { overflow-x: auto; padding-right: 0; padding-bottom: 20px; }
    .epaper-item-new { min-width: 140px; flex: 0 0 auto; }
    .epaper-next { display: none; }
    
    .category-icons-strip { padding: 20px 0; margin-bottom: 20px; }
    .epaper-section-new { padding: 20px 0; }
}

/* ============================================
   LATEST NEWS & TRENDING NOW
   ============================================ */
.latest-news-section-new { padding: 40px 0; background: var(--bg); }
.latest-layout-new { display: grid; grid-template-columns: 2.5fr 1fr; gap: 30px; }
.latest-header-flex { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.latest-tabs-new { display: flex; gap: 16px; align-items: center; }
.latest-tabs-new a { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); padding: 6px 14px; border-radius: 20px; border: 1px solid var(--border); transition: all 0.3s; text-decoration: none; }
.latest-tabs-new a:hover { color: var(--text); border-color: var(--text-light); }
.latest-tabs-new a.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.latest-grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.latest-card-new { display: flex; flex-direction: column; background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; height: 100%; }
.latest-card-new:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.latest-card-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; position: relative; }
.latest-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.latest-card-new:hover .latest-card-img img { transform: scale(1.05); }
.latest-card-content { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.latest-meta-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 16px; }
.bookmark-icon { color: var(--text-light); transition: color 0.3s; }
.latest-card-new:hover .bookmark-icon { color: var(--accent); }

.trending-sidebar-new { background: var(--bg-alt); border-radius: var(--radius-xl); padding: 24px; border: 1px solid var(--border-light); }
.trending-icon { background: rgba(230,0,0,0.1); width: 28px; height: 28px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-right: 8px; }
.trending-list-new { display: flex; flex-direction: column; gap: 20px; }
.trending-item-new { display: flex; gap: 16px; align-items: flex-start; text-decoration: none; }
.trending-number { font-size: 1.5rem; font-weight: 800; color: var(--accent); font-family: var(--font-display); width: 24px; text-align: center; line-height: 1; }
.trending-item-details { display: flex; gap: 12px; flex: 1; }
.trending-item-img { width: 70px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.trending-item-img img { width: 100%; height: 100%; object-fit: cover; }
.trending-item-text { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.trending-item-text h4 { font-size: 0.95rem; line-height: 1.3; color: var(--text); font-weight: 700; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.3s; margin-top:0; }
.trending-item-new:hover h4 { color: var(--accent); }

/* ============================================
   VIDEOS SECTION
   ============================================ */
.videos-section-new { padding: 40px 0 60px 0; background: var(--bg); }
.videos-grid-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.video-card-new { display: block; text-decoration: none; }
.video-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 16px; aspect-ratio: 16/9; box-shadow: var(--shadow-sm); }
.video-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.video-card-new:hover .video-img-wrap img { transform: scale(1.05); }
.video-play-btn { position: absolute; inset: 0; margin: auto; width: 50px; height: 50px; border-radius: 50%; background: rgba(0,0,0,0.5); border: 2px solid #fff; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; backdrop-filter: blur(4px); transition: all 0.3s; }
.video-card-new:hover .video-play-btn { background: var(--accent); border-color: var(--accent); transform: scale(1.1); }
.video-duration { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.8); color: #fff; padding: 2px 8px; font-size: 0.75rem; border-radius: 4px; font-weight: 600; }
.video-content-new h4 { font-size: 1rem; color: var(--text); font-weight: 700; line-height: 1.4; margin-bottom: 8px; margin-top:0; transition: color 0.3s; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-card-new:hover h4 { color: var(--accent); }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section-new { padding: 0 0 60px 0; }
.newsletter-banner { background: #1e1b4b; border-radius: var(--radius-xl); padding: 40px 60px; display: flex; align-items: center; justify-content: space-between; color: #fff; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.newsletter-left { display: flex; align-items: center; gap: 30px; flex: 2; }
.mail-envelope { width: 80px; height: 80px; border-radius: var(--radius-lg); background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: #fff; box-shadow: 0 10px 20px rgba(225, 29, 72, 0.4); }
.newsletter-text h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; margin-top:0; color: #fff; }
.newsletter-text p { color: rgba(255,255,255,0.8); margin-bottom: 20px; font-size: 0.95rem; }
.newsletter-form-new { display: flex; background: #fff; border-radius: 8px; padding: 6px; width: 100%; max-width: 450px; }
.newsletter-form-new input { flex: 1; border: none; padding: 10px 16px; outline: none; font-family: var(--font-body); font-size: 0.95rem; color: #333; background: transparent; }
.newsletter-form-new input::placeholder { color: #999; }
.newsletter-form-new button { background: var(--accent); color: #fff; border: none; padding: 10px 24px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: background 0.3s; font-family: var(--font-body); }
.newsletter-form-new button:hover { background: var(--accent-hover); }
.newsletter-stats { flex: 1; display: flex; justify-content: space-around; border-left: 1px solid rgba(255,255,255,0.1); padding-left: 40px; margin-left: 40px; }
.stat-item { text-align: center; }
.stat-item h3 { font-size: 2rem; font-weight: 800; margin: 0 0 4px 0; color: #fff; }
.stat-item p { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }

/* ============================================
   NEW CATEGORY SECTIONS (Ent, Featured, Biz)
   ============================================ */
/* Entertainment Layout (1 Large + 4 Small) */
.ent-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; }
.ent-main-card { display: block; position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 420px; }
.ent-main-img { width: 100%; height: 100%; }
.ent-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ent-main-card:hover .ent-main-img img { transform: scale(1.05); }
.ent-main-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%); color: #fff; display: flex; flex-direction: column; justify-content: flex-end; }
.ent-main-overlay h2 { font-size: 1.8rem; font-weight: 800; margin: 10px 0; line-height: 1.3; color: #fff; }
.ent-side-list { display: flex; flex-direction: column; gap: 16px; justify-content: space-between; }
.ent-side-card { display: flex; gap: 16px; align-items: center; background: var(--bg-card); padding: 12px; border-radius: var(--radius-md); border: 1px solid var(--border-light); transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; }
.ent-side-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.ent-side-img { width: 100px; height: 80px; flex-shrink: 0; border-radius: var(--radius-sm); overflow: hidden; }
.ent-side-img img { width: 100%; height: 100%; object-fit: cover; }
.ent-side-content { flex: 1; }
.ent-side-content h4 { font-size: 1rem; margin: 0 0 8px 0; color: var(--text); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ent-side-card:hover h4 { color: var(--accent); }

/* Featured Grid (3 Col) */
.featured-grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.featured-card { display: flex; flex-direction: column; background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: transform 0.3s; text-decoration: none; }
.featured-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.featured-img { width: 100%; height: 200px; overflow: hidden; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.featured-card:hover .featured-img img { transform: scale(1.05); }
.featured-content { padding: 20px; }
.featured-content h4 { font-size: 1.1rem; margin: 0 0 10px 0; color: var(--text); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.featured-card:hover h4 { color: var(--accent); }

/* Business Grid (4 Col) */
.biz-grid-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Mobile Resets for lower half */
@media (max-width: 992px) {
    .latest-layout-new { grid-template-columns: 1fr; }
    .latest-grid-3col { grid-template-columns: repeat(2, 1fr); }
    .featured-grid-3col { grid-template-columns: repeat(2, 1fr); }
    .biz-grid-4col { grid-template-columns: repeat(2, 1fr); }
    .videos-grid-4col { grid-template-columns: repeat(2, 1fr); }
    .ent-layout { grid-template-columns: 1fr; }
    .ent-main-card { height: 350px; }
    .newsletter-banner { flex-direction: column; padding: 40px 30px; text-align: center; gap: 40px; }
    .newsletter-left { flex-direction: column; text-align: center; }
    .newsletter-stats { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; margin-left: 0; padding-top: 30px; width: 100%; }
}
@media (max-width: 768px) {
    .latest-main-new { min-width: 0; max-width: 100%; }
    .latest-grid-3col { display: flex; flex-direction: row; overflow-x: auto; gap: 16px; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 15px; margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
    .latest-grid-3col::-webkit-scrollbar { display: none; }
    .latest-card-new { flex: 0 0 260px; flex-direction: column; align-items: stretch; padding: 0; height: auto; scroll-snap-align: start; border-radius: var(--radius-lg); }
    .latest-card-img { width: 100%; height: 150px; flex-shrink: 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; aspect-ratio: auto; margin-bottom: 0; }
    .latest-card-content { padding: 16px; justify-content: flex-start; min-width: 0; }
    .latest-card-content h4 { font-size: 0.95rem; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; }
    .latest-meta-bottom { padding-top: 12px; margin-top: auto; }
    .bookmark-icon { display: block; }
    .ts-cat { font-size: 0.7rem; margin-bottom: 6px; }
    .latest-tabs-new { overflow-x: auto; padding-bottom: 10px; flex-wrap: nowrap; }
    .latest-tabs-new a { flex-shrink: 0; }
    .videos-grid-4col { grid-template-columns: 1fr; }
    
    .biz-grid-4col { display: flex; flex-direction: row; overflow-x: auto; gap: 16px; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 15px; margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
    .biz-grid-4col::-webkit-scrollbar { display: none; }
    .biz-card { flex: 0 0 260px; scroll-snap-align: start; }
    
    .featured-grid-3col { display: flex; flex-direction: row; overflow-x: auto; gap: 16px; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 15px; margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
    .featured-grid-3col::-webkit-scrollbar { display: none; }
    .featured-card { flex: 0 0 260px; scroll-snap-align: start; }
    
    .ent-main-card { height: 250px; margin-bottom: 16px; }
    .ent-main-overlay h2 { font-size: 1.4rem; }
    .ent-side-list { gap: 12px; }
    .ent-side-card { padding: 8px; }
    .ent-side-img { width: 80px; height: 70px; }
    
    .newsletter-banner { padding: 30px 20px; gap: 24px; border-radius: var(--radius-lg); }
    .mail-envelope { width: 64px; height: 64px; font-size: 2rem; margin-bottom: -10px; }
    .newsletter-text h2 { font-size: 1.5rem; line-height: 1.2; color: #fff; }
    .newsletter-form-new { flex-direction: column; background: transparent; padding: 0; gap: 12px; }
    .newsletter-form-new input { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; color: #fff; text-align: center; }
    .newsletter-form-new input::placeholder { color: rgba(255,255,255,0.6); }
    .newsletter-form-new button { width: 100%; }
    .newsletter-stats { flex-direction: row; flex-wrap: wrap; gap: 15px; padding-top: 24px; }
    .stat-item { flex: 1 1 40%; }
    .stat-item h3 { font-size: 1.6rem; color: #fff; }
    
    .trending-sidebar-new { background: transparent; padding: 20px 0; border: none; min-width: 0; max-width: 100%; }
    .trending-sidebar-new .section-head-new { padding: 0 20px; margin-bottom: 16px !important; }
    .trending-list-new { flex-direction: row; overflow-x: auto; padding: 15px 20px 20px 20px; gap: 16px; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scroll-behavior: smooth; max-width: 100vw; }
    .trending-list-new::-webkit-scrollbar { display: none; }
    .trending-item-new { flex: 0 0 160px; flex-direction: column; background: var(--bg-card); border-radius: var(--radius-lg); padding: 12px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); position: relative; align-items: stretch; gap: 0; scroll-snap-align: start; }
    .trending-number { position: absolute; top: -10px; left: -10px; background: var(--accent); color: #fff; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: 0 4px 10px rgba(230,0,0,0.3); z-index: 2; margin-top: 0; }
    .trending-item-details { flex-direction: column; width: 100%; gap: 12px; }
    .trending-item-img { width: 100%; height: 100px; border-radius: var(--radius-sm); }
    .trending-item-text { text-align: left; }
    .trending-item-text h4 { font-size: 0.85rem; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .trending-item-text .ts-date { font-size: 0.75rem; }
}

/* ============================================
   Performance: Image Lazy Loading
   ============================================ */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.4s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([data-src]) {
    opacity: 1;
}

/* ============================================
   Additional Animation Classes
   ============================================ */
.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.5s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.4s ease forwards;
}

/* Staggered animation delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ============================================
   Reference Website (https://1.newsportaldesign.com/) Section Styles
   ============================================ */
:root {
    --brand-color: #9b1900;
    --dark-brand-color: #690000;
    --bright-color: #FFFFFF;
    --base-color: #2c2f34;
}

/* Global High Contrast Text Readability */
body {
    color: #2c2f34;
    background-color: #f8f9fa;
}
h1, h2, h3, h4, h5, h6 {
    color: #1f2024;
    font-weight: 700;
}
a {
    color: #1f2024;
}
a:hover {
    color: #b50000;
}

/* Section Wrapper & Container */
.mag-box {
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}
.mag-box .container-wrapper {
    padding: 20px;
}

/* Global Section Title Header */
.the-global-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: #ffffff;
    border-bottom: 2px solid #e5e7eb;
    border-left: 5px solid #b50000;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-bottom: 18px;
}
.the-global-title h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #b50000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filter Tabs & Arrow Nav */
.mag-box-options {
    display: flex;
    align-items: center;
    gap: 15px;
}
.mag-box-filter-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.mag-box-filter-links a {
    font-size: 0.85rem;
    font-weight: 700;
    color: #4b5563;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
}
.mag-box-filter-links a.active, .mag-box-filter-links a:hover {
    background: #b50000;
    color: #ffffff;
}

/* Big Posts Box (ताजातरीन Section) */
.big-posts-box .posts-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.big-posts-box .post-item {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: transform 0.2s, box-shadow 0.2s;
}
.big-posts-box .post-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.big-posts-box .post-thumb {
    position: relative;
    width: 220px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}
.big-posts-box .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.big-posts-box .post-item:hover .post-thumb img {
    transform: scale(1.05);
}
.big-posts-box .post-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.big-posts-box .post-title {
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 700;
    color: #1f2024;
    margin: 6px 0 8px 0;
}
.big-posts-box .post-title a {
    color: #1f2024;
    text-decoration: none;
}
.big-posts-box .post-title a:hover {
    color: #b50000;
}

/* Category Badge Tags */
.post-cat {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffffff !important;
    background-color: #b50000;
    text-transform: uppercase;
    text-decoration: none;
}
.tie-cat-1 { background-color: #e67e22 !important; }
.tie-cat-24 { background-color: #2ecc71 !important; }
.tie-cat-30 { background-color: #9b59b6 !important; }
.tie-cat-34 { background-color: #34495e !important; }

/* Image Overlay Dark Gradients for 100% Readable White Titles */
.thumb-overlay, .post-overlay, .hero-main-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.92) 100%) !important;
}
.thumb-title, .post-title-overlay, .hero-main-title {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    font-weight: 800 !important;
}

/* Load More Button */
.load-more-button {
    display: block;
    width: max-content;
    margin: 25px auto 10px auto;
    padding: 12px 35px;
    background: #b50000;
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 35px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(181,0,0,0.3);
    transition: all 0.25s;
    cursor: pointer;
}
.load-more-button:hover {
    background: #800000;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(128,0,0,0.4);
}

/* ============================================
   Dynamic Homepage Sections (Featured-List & Grid2)
   ============================================ */
.hs-section {
    margin-bottom: 35px;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.hs-section-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
}
.hs-section-label {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1f2024;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hs-section-label i {
    color: var(--s-color, #b50000);
}
.hs-see-all {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--s-color, #b50000);
    text-decoration: none;
    transition: color 0.2s;
}
.hs-see-all:hover {
    text-decoration: underline;
}

/* Layout: Featured-List (Politics & Sports) */
.hs-fl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
    width: 100%;
}
.hs-fl-featured {
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    width: 100%;
}
.hs-fl-img-wrap {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}
.hs-fl-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.hs-fl-img-wrap:hover img {
    transform: scale(1.04);
}
.hs-fl-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.96) 100%) !important;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hs-fl-overlay * {
    color: #ffffff !important;
}
.hs-cat-badge {
    display: inline-block;
    width: max-content;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffffff !important;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.hs-fl-title {
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 6px 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.95);
}
.hs-fl-excerpt {
    color: #e2e8f0 !important;
    font-size: 0.84rem;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.9);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Right List in Featured-List Layout */
.hs-fl-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 380px;
    background: #ffffff;
    border-radius: 14px;
    padding: 10px 14px;
    border: 1px solid #f1f5f9;
    width: 100%;
}
.hs-fl-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.2s ease;
    width: 100%;
}
.hs-fl-item:last-child {
    border-bottom: none;
}
.hs-fl-item:hover {
    background: #f8fafc;
    transform: translateX(4px);
}
.hs-fl-thumb {
    width: 110px;
    height: 66px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}
.hs-fl-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hs-fl-item-body {
    flex: 1;
    min-width: 0;
}
.hs-fl-item-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1f2024 !important;
    line-height: 1.35;
    margin: 0 0 3px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hs-fl-item-title:hover {
    color: #b50000 !important;
}
.hs-fl-item-date {
    font-size: 0.76rem;
    color: #64748b !important;
    font-weight: 500;
}

/* Layout: Grid2 (मनोरंजन Entertainment Section Gap & Shadow Fix) */
.hs-g2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 10px;
}
.hs-g2-card {
    position: relative;
    height: 250px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
}
.hs-g2-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.hs-g2-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.hs-g2-card:hover img {
    transform: scale(1.05);
}
.hs-g2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.92) 100%);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hs-g2-title {
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 6px 0 4px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.hs-g2-date {
    color: #cbd5e1;
    font-size: 0.78rem;
}

@media (max-width: 768px) {
    .hs-fl-grid, .hs-g2-grid {
        grid-template-columns: 1fr;
    }
    .hs-fl-featured {
        min-height: 280px;
    }
}


