/* ============================================
   Rajsamand Express - Main Stylesheet
   Theme: #191873 (Navy Blue) & #d81221 (Red)
   Font: Noto Sans Devanagari
============================================ */

:root {
  --primary: #191873;
  --secondary: #d81221;
  --primary-dark: #0f0f4a;
  --primary-light: #2525a8;
  --red-dark: #a00e18;
  --text-dark: #1a1a1a;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border: #dee2e6;
  --shadow: 0 2px 15px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --font-main: 'Noto Sans Devanagari', 'Tiro Devanagari Hindi', sans-serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: #f4f4f4;
  font-size: 15px;
  line-height: 1.7;
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--primary-dark);
  color: #fff;
  padding: 6px 0;
  font-size: 12px;
  border-bottom: 2px solid var(--secondary);
}
.top-bar a { color: #ccc; text-decoration: none; transition: color .2s; }
.top-bar a:hover { color: #fff; }
.date-time { color: #aac; font-size: 11px; }
.whatsapp-join {
  background: #25D366;
  color: #fff !important;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 11px;
}
.whatsapp-join:hover { background: #1da851; }
.social-icons a {
  color: #ccc;
  font-size: 14px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all .2s;
}
.social-icons a:hover { color: #fff; border-color: var(--secondary); background: var(--secondary); }

/* ---- HEADER ---- */
.site-header {
  background: var(--primary);
  padding: 12px 0;
  border-bottom: 3px solid var(--secondary);
}
.site-logo { height: 65px; max-width: 220px; object-fit: contain; }
.text-logo { display: flex; flex-direction: column; }
.logo-main { font-size: 28px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -1px; }
.logo-sub {
  font-size: 13px; font-weight: 700; color: var(--secondary);
  letter-spacing: 4px; font-family: 'Arial', sans-serif;
}
.logo-link { text-decoration: none; }
.ad-placeholder {
  background: rgba(255,255,255,0.08);
  border: 1px dashed rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 4px;
  text-align: center;
}
.social-counters { flex-wrap: wrap; }
.counter-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  line-height: 1;
  font-family: inherit;
}
.counter-box:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.22);
  filter: brightness(1.05);
  color: #fff;
}
.counter-box i      { font-size: 16px; }
.counter-num        { font-size: 14px; font-weight: 800; letter-spacing: .2px; }
.counter-label      { font-size: 12px; font-weight: 600; opacity: .95; }

/* Brand colors */
.yt-box { background: linear-gradient(135deg, #ff0000, #c4302b); }
.ig-box { background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%); }
.fb-box { background: linear-gradient(135deg, #1877f2, #0a4ea8); }

/* Mobile tweaks */
@media (max-width: 767.98px) {
  .social-counters { margin: 10px 0 6px; gap: 6px !important; }
  .counter-box     { padding: 6px 10px; gap: 6px; }
  .counter-box i   { font-size: 14px; }
  .counter-num     { font-size: 13px; }
  .counter-label   { font-size: 11px; }
  .header-right    { margin-top: 6px; }
  .site-logo       { max-height: 60px; }
}
.search-bar .form-control {
  border: none;
  border-radius: 20px 0 0 20px;
  font-family: var(--font-main);
  font-size: 13px;
}
.search-bar .btn { border-radius: 0 20px 20px 0; }

/* ---- BREAKING NEWS ---- */
.breaking-news-bar {
  background: var(--secondary);
  color: #fff;
  padding: 7px 0;
  overflow: hidden;
}
.breaking-label {
  background: var(--primary-dark);
  padding: 4px 14px;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 2px;
  margin-right: 10px;
}
.ticker-wrapper {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  font-size: 13px;
}
.ticker-content a { color: #fff; text-decoration: none; }
.ticker-content a:hover { text-decoration: underline; }
@keyframes ticker-scroll {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ---- NAVBAR ---- */
.main-navbar {
  background: var(--primary);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.main-navbar .navbar-nav { flex-wrap: wrap; }
.main-navbar .nav-link {
  color: rgba(255,255,255,0.9) !important;
  padding: 12px 14px !important;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-main);
  border-bottom: 3px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-item.active .nav-link {
  color: #fff !important;
  border-bottom-color: var(--secondary);
  background: rgba(255,255,255,0.08);
}
.main-navbar .dropdown-menu {
  background: var(--primary-dark);
  border: none;
  border-top: 2px solid var(--secondary);
  border-radius: 0 0 8px 8px;
  padding: 4px 0;
  min-width: 180px;
}
.main-navbar .dropdown-item {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 16px;
  font-family: var(--font-main);
  transition: all .2s;
}
.main-navbar .dropdown-item:hover {
  background: var(--secondary);
  color: #fff;
}
.navbar-toggler { border: 1px solid rgba(255,255,255,0.3); padding: 4px 10px; }

/* ---- LAYOUT ---- */
.main-content { padding: 20px 0; }
.content-area { padding: 0 10px; }
.sidebar { padding: 0 10px; }

/* ---- NEWS CARD ---- */
.news-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .3s;
  height: 100%;
  border: 1px solid var(--border);
}
.news-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.news-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.news-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.news-card:hover .news-card-img-wrap img { transform: scale(1.05); }
.news-card-category {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--secondary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  text-decoration: none;
}
.news-card-category:hover { background: var(--primary); color: #fff; }
.news-card-body { padding: 14px; }
.news-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-title a { color: var(--text-dark); text-decoration: none; }
.news-card-title a:hover { color: var(--secondary); }
.news-card-meta {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.news-card-meta i { color: var(--secondary); }
.news-card-summary {
  font-size: 13px;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 8px 0;
}

/* ---- FEATURED NEWS ---- */
.featured-news-wrap { position: relative; border-radius: 10px; overflow: hidden; height: 420px; }
.featured-news-wrap img { width: 100%; height: 100%; object-fit: cover; }
.featured-news-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  padding: 30px 20px 20px;
  color: #fff;
}
.featured-news-overlay .cat-badge {
  background: var(--secondary);
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}
.featured-news-overlay h2 { font-size: 22px; font-weight: 800; line-height: 1.3; margin: 0; }
.featured-news-overlay h2 a { color: #fff; text-decoration: none; }
.featured-news-overlay .meta { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* ---- SECTION HEADINGS ---- */
.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}
.section-heading h2, .section-heading h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  position: relative;
}
.section-heading h2::before, .section-heading h3::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 22px;
  background: var(--secondary);
  border-radius: 3px;
  margin-right: 10px;
  vertical-align: middle;
}
.section-heading .view-all {
  margin-left: auto;
  font-size: 12px;
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
}
.section-heading .view-all:hover { color: var(--primary); }

/* ---- SIDEBAR ---- */
.sidebar-widget {
  background: #fff;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.sidebar-widget-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
}
.sidebar-news-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
}
.sidebar-news-item:last-child { border-bottom: none; }
.sidebar-news-item:hover .sidebar-news-title { color: var(--secondary); }
.sidebar-news-thumb {
  width: 70px;
  height: 55px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}
.sidebar-news-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--text-dark);
  transition: color .2s;
}
.sidebar-news-date { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* ---- TAGS ---- */
.tag-cloud .tag-item {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 3px;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all .2s;
}
.tag-cloud .tag-item:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

/* ---- NEWS DETAIL ---- */
.news-detail-img {
  width: 100%;
  border-radius: 10px;
  max-height: 450px;
  object-fit: cover;
  margin-bottom: 20px;
}
.news-detail-title { font-size: 28px; font-weight: 900; line-height: 1.35; color: var(--primary); }
.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 12px 0;
}
.news-detail-meta i { color: var(--secondary); }
.news-detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: #2a2a2a;
}
.news-detail-content p { margin-bottom: 16px; }
.news-detail-content h2, .news-detail-content h3 { color: var(--primary); margin: 20px 0 10px; }
.share-bar {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.share-bar .share-label { font-weight: 700; font-size: 14px; color: var(--primary); }
.share-btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s;
}
.share-btn:hover { opacity: .85; }
.share-fb { background: #1877f2; color: #fff; }
.share-wa { background: #25D366; color: #fff; }
.share-tw { background: #1da1f2; color: #fff; }

/* ---- CLASSIFIED ---- */
.classified-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .3s;
  height: 100%;
}
.classified-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.classified-type-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
}
.badge-sell { background: var(--secondary); color: #fff; }
.badge-buy { background: #28a745; color: #fff; }
.classified-disclaimer {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #856404;
  margin: 20px 0;
}

/* ---- TEAM ---- */
.team-card {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 24px 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all .3s;
}
.team-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  margin: 0 auto 12px;
  display: block;
}
.team-photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  margin: 0 auto 12px;
}
.team-name { font-size: 17px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.team-designation { font-size: 13px; color: var(--secondary); font-weight: 600; }

/* ---- MAGAZINE ---- */
.magazine-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all .3s;
}
.magazine-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.magazine-cover {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 3px solid var(--secondary);
}
.magazine-cover-placeholder {
  height: 250px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-bottom: 3px solid var(--secondary);
}

/* ---- JOBS ---- */
.job-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--border);
  padding: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  border-left: 4px solid var(--secondary);
  transition: all .3s;
}
.job-card:hover { box-shadow: var(--shadow-hover); }
.job-org { font-size: 13px; color: var(--text-muted); }
.job-deadline { font-size: 12px; background: #fff3cd; color: #856404; padding: 4px 10px; border-radius: 20px; font-weight: 600; }
.job-status-active { color: #28a745; font-weight: 700; }
.job-status-closed { color: #dc3545; font-weight: 700; }
.job-status-upcoming { color: #fd7e14; font-weight: 700; }

/* ---- ABOUT RAJSAMAND ---- */
.info-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  border-top: 4px solid var(--primary);
}
.info-card-title { font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 14px; }
.official-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.official-detail:last-child { border-bottom: none; }
.official-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.official-name { font-weight: 700; color: var(--primary); font-size: 16px; }
.official-post { font-size: 13px; color: var(--text-muted); }

/* ---- TOURIST PLACES ---- */
.tourist-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all .3s;
}
.tourist-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.tourist-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.tourist-img-placeholder {
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: rgba(255,255,255,0.5);
}

/* ---- VIDHANSABHA TABS ---- */
.vidhansabha-nav .nav-link {
  color: var(--primary);
  font-weight: 600;
  border: 2px solid var(--primary);
  border-radius: 5px;
  margin: 3px;
  font-size: 14px;
  padding: 8px 20px;
}
.vidhansabha-nav .nav-link.active {
  background: var(--primary);
  color: #fff;
}

/* ---- FORMS ---- */
.form-label { font-weight: 600; font-size: 14px; color: var(--primary); }
.form-control, .form-select {
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 14px;
  padding: 10px 14px;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(25,24,115,0.15);
}
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-main);
  transition: all .2s;
}
.btn-primary-custom:hover { background: var(--primary-dark); color: #fff; }
.btn-danger-custom {
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  transition: all .2s;
}
.btn-danger-custom:hover { background: var(--red-dark); color: #fff; }
.btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
}
.btn-whatsapp:hover { background: #1da851; }

/* ---- PAGINATION ---- */
.page-link { color: var(--primary); }
.page-item.active .page-link { background: var(--primary); border-color: var(--primary); }

/* ---- ALERTS ---- */
.alert-success { background: #d1e7dd; border-color: #badbcc; color: #0f5132; }
.alert-danger  { background: #f8d7da; border-color: #f5c2c7; color: #842029; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 40px 0 20px;
  margin-top: 40px;
}
.footer-logo { height: 55px; margin-bottom: 10px; }
.footer-title { color: #fff; font-size: 20px; font-weight: 800; margin: 0; }
.footer-tagline { color: var(--secondary); font-weight: 600; font-size: 13px; margin: 2px 0 10px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-heading { color: #fff; font-size: 16px; font-weight: 800; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--secondary); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.social-links { display: flex; gap: 8px; margin-top: 14px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
}
.social-btn:hover { transform: scale(1.1); opacity: .9; color: #fff; }
.social-btn.fb { background: #1877f2; }
.social-btn.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.yt { background: #ff0000; }
.social-btn.wa { background: #25D366; }
.contact-info-block p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.contact-info-block a { color: rgba(255,255,255,0.85); text-decoration: none; }
.contact-info-block a:hover { color: #fff; }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 14px 0;
  margin-top: 30px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom .row { padding: 0 15px; }

/* ---- ADMIN / AUTHOR ---- */
.admin-sidebar {
  background: var(--primary-dark);
  min-height: 100vh;
  color: #fff;
  padding: 0;
  width: 250px;
  position: fixed;
  top: 0; left: 0;
  z-index: 1000;
  overflow-y: auto;
}
.admin-sidebar .sidebar-brand {
  background: var(--secondary);
  padding: 16px 20px;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  display: block;
  text-decoration: none;
}
.admin-sidebar .nav-link {
  color: rgba(255,255,255,0.8);
  padding: 11px 20px;
  font-size: 14px;
  font-family: var(--font-main);
  border-left: 3px solid transparent;
  transition: all .2s;
}
.admin-sidebar .nav-link:hover, .admin-sidebar .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-left-color: var(--secondary);
}
.admin-sidebar .nav-link i { width: 20px; margin-right: 8px; }
.admin-content {
  margin-left: 250px;
  min-height: 100vh;
  background: #f5f5f5;
}
.admin-topbar {
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-topbar h1 { font-size: 18px; font-weight: 700; margin: 0; }
.admin-main { padding: 20px; }
.stat-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  margin-bottom: 20px;
}
.stat-card.red { border-top-color: var(--secondary); }
.stat-card.green { border-top-color: #28a745; }
.stat-card.orange { border-top-color: #fd7e14; }
.stat-number { font-size: 32px; font-weight: 900; color: var(--primary); }
.stat-label { font-size: 13px; color: var(--text-muted); }

/* ---- UTILITIES ---- */
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.bg-secondary-custom { background: var(--secondary) !important; }
.news-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
  display: flex; align-items: center; justify-content: center;
  color: #aaa; font-size: 40px;
}
.no-news-found {
  text-align: center;
  padding: 50px 20px;
  color: var(--text-muted);
}
.no-news-found i { font-size: 60px; margin-bottom: 16px; opacity: .3; }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .admin-sidebar { width: 100%; min-height: auto; position: relative; }
  .admin-content { margin-left: 0; }
  .featured-news-wrap { height: 280px; }
  .featured-news-overlay h2 { font-size: 16px; }
}
@media (max-width: 767px) {
  .news-detail-title { font-size: 22px; }
  .top-bar .contact-info { display: none; }
  .site-logo { height: 48px; }
  .logo-main { font-size: 22px; }
  .news-card-img-wrap { height: 160px; }
}
@media (max-width: 575px) {
  .featured-news-wrap { height: 220px; }
  .admin-sidebar { display: none; }
  .admin-content { margin-left: 0; }
}

/* Print Styles */
@media print {
  .site-header, .main-navbar, .breaking-news-bar, .sidebar, .site-footer { display: none; }
  .news-detail-content { font-size: 12pt; }
}