/* =============================================
   Maharashtra News Live - Main Stylesheet
   ============================================= */

:root {
  --red: #c0392b;
  --red-dark: #962d22;
  --red-light: #e74c3c;
  --orange: #e67e22;
  --gold: #f39c12;
  --dark: #1a1a1a;
  --dark2: #2c2c2c;
  --mid: #4a4a4a;
  --grey: #888;
  --light-grey: #f0f0f0;
  --border: #e0e0e0;
  --white: #ffffff;
  --bg: #f5f5f5;
  --card-bg: #ffffff;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.15);
  --radius: 6px;
  --font-body: 'Mukta', 'Tiro Devanagari Marathi', sans-serif;
  --font-serif: 'Noto Serif Devanagari', 'Tiro Devanagari Marathi', serif;
  --transition: 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--dark); font-size: 16px; line-height: 1.75; }
body * { font-feature-settings: 'kern' 1; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--red); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1220px; margin: 0 auto; padding: 0 16px; }

/* ===================== TOPBAR ===================== */
.topbar { background: var(--dark2); color: #ccc; font-size: 12.5px; padding: 6px 0; border-bottom: 2px solid var(--red); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 16px; }
.topbar-left span { display: flex; align-items: center; gap: 5px; }
.topbar-right { display: flex; gap: 10px; }
.topbar-right a { color: #ccc; font-size: 13px; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); transition: var(--transition); }
.topbar-right a:hover { background: var(--red); color: white; }

/* ===================== HEADER ===================== */
.site-header { background: var(--white); padding: 14px 0; border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-logo a { display: flex; align-items: center; }
.logo-text .logo-main { display: block; font-size: 28px; font-weight: 800; color: var(--red); line-height: 1; letter-spacing: -0.5px; font-family: var(--font-serif); }
.logo-text .logo-sub { display: block; font-size: 11px; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.logo-img { max-height: 60px; }
.header-ad { flex: 1; text-align: center; }
.ad-placeholder { background: var(--light-grey); border: 1px dashed var(--border); padding: 10px 20px; color: var(--grey); font-size: 12px; border-radius: var(--radius); }

/* ===================== NAVIGATION ===================== */
.main-nav { background: var(--red); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(192,57,43,0.4); }
.nav-inner { display: flex; align-items: stretch; }
.nav-menu { display: flex; align-items: stretch; flex-wrap: wrap; }
.nav-menu li { position: relative; }
.nav-menu li a { display: flex; align-items: center; gap: 5px; padding: 0 14px; height: 46px; color: rgba(255,255,255,0.92); font-size: 13.5px; font-weight: 600; transition: var(--transition); white-space: nowrap; letter-spacing: 0.2px; }
.nav-menu li a:hover, .nav-menu li a.active { background: rgba(0,0,0,0.2); color: white; }
.nav-menu li a.active { border-bottom: 3px solid var(--gold); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 12px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: white; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================== BREAKING NEWS ===================== */
.breaking-bar { background: var(--dark); color: white; padding: 8px 0; overflow: hidden; }
.breaking-inner { display: flex; align-items: center; gap: 0; }
.breaking-label { background: var(--red); color: white; padding: 3px 14px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; display: flex; align-items: center; gap: 6px; flex-shrink: 0; border-radius: 3px; }
.breaking-label i { animation: pulse 1.2s infinite; }
.ticker-wrap { flex: 1; overflow: hidden; margin-left: 16px; }
.ticker { display: flex; gap: 30px; white-space: nowrap; animation: ticker 40s linear infinite; font-size: 13px; color: #eee; }
.ticker a { color: #ffd700; font-weight: 500; white-space: nowrap; }
.ticker a:hover { text-decoration: underline; }
.ticker-sep { color: var(--red-light); opacity: 0.6; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ===================== LAYOUT ===================== */
.main-content { padding: 24px 0; }
.content-wrapper { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }

/* ===================== SECTION HEADERS ===================== */
.section-header { display: flex; align-items: center; gap: 0; margin-bottom: 18px; border-bottom: 3px solid var(--red); padding-bottom: 10px; }
.section-header h2 { font-size: 18px; font-weight: 800; color: var(--dark); background: var(--red); color: white; padding: 5px 16px 5px 12px; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%); letter-spacing: 0.3px; }
.section-header .view-all { margin-left: auto; font-size: 12px; color: var(--red); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.section-header .view-all:hover { text-decoration: underline; }

/* ===================== FEATURED SECTION ===================== */
.featured-section { margin-bottom: 28px; }
.featured-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 4px; border-radius: var(--radius); overflow: hidden; }
.featured-main { grid-column: 1; grid-row: 1 / 3; position: relative; }
.featured-main .news-card-img { height: 380px; }
.featured-main .card-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.88)); padding: 80px 18px 18px; }
.featured-main .card-title { font-size: 20px; font-weight: 800; color: white; line-height: 1.3; font-family: var(--font-serif); }
.featured-main .card-meta { color: rgba(255,255,255,0.75); font-size: 12px; margin-top: 8px; display: flex; gap: 12px; align-items: center; }
.featured-sub { position: relative; overflow: hidden; }
.featured-sub .news-card-img { height: 186px; }
.featured-sub .card-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.82)); padding: 40px 14px 14px; }
.featured-sub .card-title { font-size: 14.5px; font-weight: 700; color: white; line-height: 1.3; }
.featured-sub .card-meta { color: rgba(255,255,255,0.7); font-size: 11px; margin-top: 5px; }
.news-card-img { width: 100%; object-fit: cover; }
.card-category-badge { display: inline-block; padding: 2px 10px; border-radius: 3px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.featured-main .card-category-badge, .featured-sub .card-category-badge { color: white; }

/* ===================== NEWS GRID ===================== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.news-card { background: var(--card-bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid rgba(0,0,0,0.04); }
.news-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.news-card .card-img-wrap { position: relative; overflow: hidden; height: 170px; background: var(--light-grey); }
.news-card .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .card-img-wrap img { transform: scale(1.05); }
.news-card .no-img { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--grey); font-size: 32px; background: var(--light-grey); }
.news-card .badge-wrap { position: absolute; top: 8px; left: 8px; }
.news-card .cat-badge { display: inline-block; padding: 2px 8px; color: white; font-size: 10px; font-weight: 700; text-transform: uppercase; border-radius: 3px; }
.breaking-badge { background: var(--red); }
.news-card .card-body { padding: 14px; }
.news-card .card-title { font-size: 14.5px; font-weight: 700; line-height: 1.4; color: var(--dark); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card .card-title:hover { color: var(--red); }
.news-card .card-excerpt { font-size: 12.5px; color: var(--mid); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; }
.news-card .card-meta { display: flex; align-items: center; gap: 10px; font-size: 11.5px; color: var(--grey); flex-wrap: wrap; }
.news-card .card-meta i { font-size: 10.5px; }
.news-card .card-author { font-weight: 600; color: var(--red); }

/* Latest News List */
.latest-list { display: flex; flex-direction: column; gap: 14px; }
.latest-item { display: flex; gap: 12px; background: var(--card-bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); padding: 10px; }
.latest-item:hover { box-shadow: var(--shadow-hover); }
.latest-item .item-img { width: 100px; height: 72px; flex-shrink: 0; border-radius: 4px; overflow: hidden; background: var(--light-grey); }
.latest-item .item-img img { width: 100%; height: 100%; object-fit: cover; }
.latest-item .no-img-sm { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--grey); font-size: 20px; }
.latest-item .item-body { flex: 1; }
.latest-item .item-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.latest-item .item-title { font-size: 13.5px; font-weight: 700; color: var(--dark); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 5px; }
.latest-item .item-title:hover { color: var(--red); }
.latest-item .item-meta { font-size: 11px; color: var(--grey); display: flex; gap: 10px; }

/* ===================== SIDEBAR ===================== */
.sidebar { display: flex; flex-direction: column; gap: 22px; }
.sidebar-widget { background: var(--card-bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.widget-header { background: var(--red); color: white; padding: 10px 16px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px; }
.widget-body { padding: 14px; }

/* Popular Posts */
.popular-list { display: flex; flex-direction: column; gap: 12px; }
.popular-item { display: flex; gap: 10px; align-items: flex-start; padding-bottom: 12px; border-bottom: 1px dashed var(--border); }
.popular-item:last-child { border-bottom: none; padding-bottom: 0; }
.popular-num { font-size: 22px; font-weight: 900; color: var(--red); opacity: 0.25; min-width: 32px; line-height: 1; }
.popular-title { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--dark); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.popular-title:hover { color: var(--red); }
.popular-meta { font-size: 11px; color: var(--grey); margin-top: 3px; }

/* Categories Widget */
.cat-list { display: flex; flex-direction: column; }
.cat-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--light-grey); font-size: 13.5px; transition: var(--transition); }
.cat-item:last-child { border-bottom: none; }
.cat-item:hover { padding-left: 6px; }
.cat-item a { display: flex; align-items: center; gap: 8px; color: var(--dark); font-weight: 500; }
.cat-item .cat-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.cat-item .cat-count { background: var(--light-grey); color: var(--grey); padding: 1px 8px; border-radius: 12px; font-size: 11px; font-weight: 600; }

/* Trending Widget */
.trending-list { display: flex; flex-direction: column; gap: 10px; }
.trending-item { display: flex; gap: 10px; }
.trending-item .t-img { width: 72px; height: 52px; flex-shrink: 0; border-radius: 4px; overflow: hidden; }
.trending-item .t-img img { width: 100%; height: 100%; object-fit: cover; }
.trending-item .t-no-img { display: flex; align-items: center; justify-content: center; background: var(--light-grey); height: 100%; color: var(--grey); font-size: 16px; }
.trending-item .t-title { font-size: 12.5px; font-weight: 600; color: var(--dark); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.trending-item .t-title:hover { color: var(--red); }
.trending-item .t-meta { font-size: 11px; color: var(--grey); margin-top: 3px; }

/* ===================== SINGLE POST ===================== */
.single-post { background: var(--card-bg); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.post-header { margin-bottom: 22px; }
.post-category { display: inline-block; background: var(--red); color: white; padding: 3px 12px; border-radius: 3px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.post-title { font-size: 28px; font-weight: 800; line-height: 1.3; color: var(--dark); font-family: var(--font-serif); margin-bottom: 14px; }
.post-meta { display: flex; align-items: center; gap: 18px; font-size: 13px; color: var(--grey); flex-wrap: wrap; padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.post-meta i { color: var(--red); }
.post-meta .author { font-weight: 600; color: var(--dark); }
.post-featured-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius); margin: 18px 0; }
.post-content { font-size: 17px; line-height: 2.0; color: #333; }
.post-content p { margin-bottom: 16px; }
.post-content h2, .post-content h3 { color: var(--dark); margin: 24px 0 12px; font-family: var(--font-serif); }
.post-content img { border-radius: var(--radius); margin: 16px 0; }
.post-content blockquote { border-left: 4px solid var(--red); padding: 12px 20px; background: #fff5f5; margin: 20px 0; font-style: italic; color: var(--mid); }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--border); }
.post-tags .tag { background: var(--light-grey); color: var(--mid); padding: 4px 12px; border-radius: 20px; font-size: 12px; transition: var(--transition); }
.post-tags .tag:hover { background: var(--red); color: white; }
.share-buttons { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.share-btn { display: flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 4px; font-size: 13px; font-weight: 600; color: white; cursor: pointer; border: none; transition: var(--transition); }
.share-btn:hover { opacity: 0.88; }
.share-fb { background: #1877f2; } .share-tw { background: #1da1f2; } .share-wa { background: #25d366; } .share-tg { background: #0088cc; }

/* Video Embed */
.video-wrap { position: relative; padding-top: 56.25%; margin: 20px 0; border-radius: var(--radius); overflow: hidden; }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* ===================== COMMENTS ===================== */
.comments-section { margin-top: 28px; }
.comment-item { display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.comment-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: white; display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 700; flex-shrink: 0; }
.comment-meta { font-size: 12px; color: var(--grey); margin-bottom: 6px; }
.comment-name { font-weight: 700; color: var(--dark); }
.comment-text { font-size: 14px; color: var(--mid); }
.comment-form { background: var(--light-grey); padding: 22px; border-radius: var(--radius); margin-top: 20px; }
.comment-form h3 { font-size: 17px; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.form-control { width: 100%; padding: 9px 13px; border: 1px solid var(--border); border-radius: 4px; font-family: inherit; font-size: 14px; transition: var(--transition); background: white; }
.form-control:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,0.12); }
textarea.form-control { resize: vertical; min-height: 100px; }
.btn-primary { background: var(--red); color: white; border: none; padding: 10px 24px; border-radius: 4px; font-size: 14px; font-weight: 700; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 7px; }
.btn-primary:hover { background: var(--red-dark); }

/* ===================== SEARCH ===================== */
.search-box { display: flex; gap: 0; max-width: 560px; margin: 24px auto; }
.search-box input { flex: 1; padding: 12px 18px; border: 2px solid var(--border); border-right: none; border-radius: var(--radius) 0 0 var(--radius); font-size: 15px; }
.search-box button { background: var(--red); color: white; border: none; padding: 12px 22px; border-radius: 0 var(--radius) var(--radius) 0; font-size: 16px; cursor: pointer; }

/* ===================== PAGINATION ===================== */
.pagination { display: flex; justify-content: center; gap: 6px; margin: 28px 0; flex-wrap: wrap; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--radius); font-size: 14px; font-weight: 600; border: 1px solid var(--border); transition: var(--transition); }
.pagination a { color: var(--dark); background: white; }
.pagination a:hover { background: var(--red); color: white; border-color: var(--red); }
.pagination .active { background: var(--red); color: white; border-color: var(--red); }
.pagination .disabled { color: var(--grey); cursor: not-allowed; }
.pagination .dots { border: none; background: none; }

/* ===================== ALERTS ===================== */
.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--dark2); color: #ccc; margin-top: 40px; }
.footer-top { padding: 40px 0 30px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr 1.2fr; gap: 32px; }
.footer-heading { font-size: 15px; font-weight: 700; color: white; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--red); display: inline-block; }
.footer-about p { font-size: 13.5px; line-height: 1.7; color: #aaa; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 14px; transition: var(--transition); }
.footer-social a:hover { background: var(--red); color: white; transform: translateY(-2px); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { color: #aaa; font-size: 13.5px; display: flex; align-items: center; gap: 7px; transition: var(--transition); }
.footer-links li a:hover { color: var(--gold); padding-left: 3px; }
.footer-links li a i { color: var(--red); font-size: 11px; }
.footer-recent { display: flex; flex-direction: column; gap: 12px; }
.footer-recent-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-recent-item img { width: 60px; height: 44px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.no-img-sm { width: 60px; height: 44px; background: rgba(255,255,255,0.06); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.2); font-size: 16px; flex-shrink: 0; }
.footer-recent-title { font-size: 12.5px; color: #bbb; line-height: 1.4; display: block; }
.footer-recent-title:hover { color: var(--gold); }
.footer-date { font-size: 11px; color: #777; display: block; margin-top: 3px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.footer-contact li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #aaa; }
.footer-contact li i { color: var(--red); width: 14px; }
.footer-contact li a { color: #aaa; } .footer-contact li a:hover { color: var(--gold); }
.footer-newsletter h4 { font-size: 13px; font-weight: 600; color: white; margin-bottom: 10px; }
.newsletter-form { display: flex; }
.newsletter-form input { flex: 1; padding: 9px 13px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-right: none; border-radius: 4px 0 0 4px; color: white; font-size: 13px; }
.newsletter-form input::placeholder { color: #777; }
.newsletter-form button { background: var(--red); color: white; border: none; padding: 9px 14px; border-radius: 0 4px 4px 0; cursor: pointer; transition: var(--transition); }
.newsletter-form button:hover { background: var(--red-dark); }
.footer-bottom { padding: 14px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: #777; }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 12.5px; color: #777; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===================== SCROLL TOP ===================== */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 42px; height: 42px; background: var(--red); color: white; border: none; border-radius: 50%; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 16px; box-shadow: 0 4px 16px rgba(192,57,43,0.4); transition: var(--transition); z-index: 999; }
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ===================== PAGE BANNER ===================== */
.page-banner { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: white; padding: 28px 0; margin-bottom: 24px; }
.page-banner h1 { font-size: 26px; font-weight: 800; }
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 6px; align-items: center; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { opacity: 0.5; }

/* ===================== NO RESULTS ===================== */
.no-results { text-align: center; padding: 60px 20px; color: var(--grey); }
.no-results i { font-size: 48px; margin-bottom: 16px; opacity: 0.3; }
.no-results h3 { font-size: 20px; color: var(--dark); margin-bottom: 8px; }

/* ===================== ADMIN PANEL ===================== */
.admin-body { background: #f0f2f5; font-family: var(--font-body); }
.admin-topbar { background: var(--dark2); height: 56px; display: flex; align-items: center; padding: 0 20px; gap: 16px; position: fixed; top: 0; left: 0; right: 0; z-index: 1001; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.admin-topbar .brand { color: white; font-size: 17px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.admin-topbar .brand span { color: var(--gold); }
.admin-topbar nav { margin-left: auto; display: flex; gap: 6px; }
.admin-topbar nav a { color: rgba(255,255,255,0.8); font-size: 13px; padding: 6px 14px; border-radius: 4px; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.admin-topbar nav a:hover { background: rgba(255,255,255,0.12); color: white; }
.admin-topbar nav a.danger:hover { background: var(--red); color: white; }
.admin-sidebar { position: fixed; top: 56px; left: 0; bottom: 0; width: 220px; background: var(--dark); padding: 16px 0; overflow-y: auto; z-index: 1000; }
.admin-sidebar .menu-section { padding: 8px 16px 4px; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.35); margin-top: 8px; }
.admin-sidebar a { display: flex; align-items: center; gap: 10px; padding: 10px 20px; color: rgba(255,255,255,0.7); font-size: 13.5px; transition: var(--transition); border-left: 3px solid transparent; }
.admin-sidebar a:hover { background: rgba(255,255,255,0.06); color: white; }
.admin-sidebar a.active { background: rgba(192,57,43,0.2); color: white; border-left-color: var(--red); }
.admin-sidebar a i { width: 16px; text-align: center; }
.admin-main { margin-left: 220px; margin-top: 56px; padding: 24px; min-height: calc(100vh - 56px); }
.admin-title { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.admin-title i { color: var(--red); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 26px; }
.stat-card { background: white; border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); border-left: 4px solid; display: flex; align-items: center; gap: 16px; }
.stat-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: white; flex-shrink: 0; }
.stat-info .num { font-size: 28px; font-weight: 800; line-height: 1; }
.stat-info .label { font-size: 12px; color: var(--grey); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }
.admin-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 22px; overflow: hidden; }
.admin-card-header { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.admin-card-header h3 { font-size: 15px; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.admin-card-body { padding: 20px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: var(--light-grey); padding: 10px 14px; text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--mid); }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--light-grey); font-size: 13.5px; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fafafa; }
.admin-table .post-thumb { width: 56px; height: 40px; object-fit: cover; border-radius: 4px; }
.status-badge { display: inline-block; padding: 2px 10px; border-radius: 12px; font-size: 11px; font-weight: 700; }
.status-published { background: #d4edda; color: #155724; }
.status-draft { background: #fff3cd; color: #856404; }
.status-pending { background: #d1ecf1; color: #0c5460; }
.action-btns { display: flex; gap: 6px; }
.btn-sm { padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; transition: var(--transition); }
.btn-edit { background: #fff3cd; color: #856404; } .btn-edit:hover { background: var(--gold); color: white; }
.btn-delete { background: #f8d7da; color: #721c24; } .btn-delete:hover { background: var(--red); color: white; }
.btn-view { background: var(--light-grey); color: var(--mid); } .btn-view:hover { background: #2980b9; color: white; }
.btn-success { background: #27ae60; color: white; } .btn-success:hover { background: #1e8449; }
.btn-back { background: var(--light-grey); color: var(--mid); padding: 8px 18px; border-radius: 4px; font-size: 13px; font-weight: 600; border: none; cursor: pointer; transition: var(--transition); }
.btn-back:hover { background: var(--border); }
.admin-form .form-group { margin-bottom: 18px; }
.admin-form label { display: block; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.admin-form label .req { color: var(--red); margin-left: 2px; }
.admin-form .form-control { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: 4px; font-family: inherit; font-size: 14px; transition: var(--transition); }
.admin-form .form-control:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,57,43,0.1); }
.admin-form textarea.form-control { min-height: 200px; resize: vertical; }
.admin-form select.form-control { background: white; }
.admin-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-form .form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
.admin-form .checkbox-group { display: flex; align-items: center; gap: 8px; }
.admin-form .checkbox-group input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--red); }
.admin-form .checkbox-group label { font-size: 13.5px; font-weight: 500; margin-bottom: 0; }
.img-preview { max-width: 200px; max-height: 150px; border-radius: var(--radius); margin-top: 10px; border: 2px solid var(--border); object-fit: cover; }
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--dark2), var(--dark)); }
.login-box { background: white; border-radius: 12px; padding: 40px 36px; width: 100%; max-width: 400px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.login-logo { text-align: center; margin-bottom: 28px; }
.login-logo h2 { font-size: 24px; font-weight: 800; color: var(--red); }
.login-logo p { font-size: 13px; color: var(--grey); margin-top: 4px; }
.search-bar-admin { display: flex; gap: 10px; margin-bottom: 18px; align-items: center; flex-wrap: wrap; }
.search-bar-admin input { padding: 8px 14px; border: 1px solid var(--border); border-radius: 4px; font-size: 13.5px; width: 240px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .content-wrapper { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .featured-main { grid-row: auto; }
  .featured-main .news-card-img { height: 280px; }
  .featured-sub .news-card-img { height: 220px; }
  .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu { display: none; flex-direction: column; width: 100%; background: var(--red-dark); padding: 8px 0; }
  .nav-menu.open { display: flex; }
  .nav-menu li a { height: auto; padding: 11px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .topbar-left span:first-child { display: none; }
  .header-inner { flex-direction: column; text-align: center; }
  .header-ad { display: none; }
  .post-title { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .admin-form .form-row, .admin-form .form-row-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .news-grid { grid-template-columns: 1fr; }
  .admin-topbar .brand { font-size: 14px; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* Print */
@media print { .site-header, .main-nav, .breaking-bar, .sidebar, .site-footer, .share-buttons, .scroll-top { display: none; } .content-wrapper { grid-template-columns: 1fr; } }
