/* ============================================================
   BANGLADESHI NEWS PORTAL - STYLE.CSS
   Color Palette: Primary #c40000 | Dark #222 | Light #f5f5f5
   Font: Noto Serif Bengali
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Bengali:wght@300;400;500;600;700;900&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #c40000;
  --primary-dk: #9a0000;
  --dark: #222222;
  --mid: #444444;
  --muted: #777777;
  --border: #e0e0e0;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --hover-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
  --font: 'Noto Serif Bengali', serif;
}

/* ── Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  background: var(--light-bg);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}

a:hover {
  color: var(--primary);
}

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

/* ============================================================
   TOP HEADER
   ============================================================ */
#top-header {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  padding: 10px 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1;
}

.site-logo-img {
  display: block;
  height: auto;
  width: auto;
  max-height: 64px;
  max-width: 260px;
  object-fit: contain;
}

@media (min-width: 576px) {
  .site-logo-img {
    max-height: 78px;
    max-width: 340px;
  }
}

@media (min-width: 992px) {
  .site-logo-img {
    max-height: 60px;
    max-width: 280px;
  }
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .name {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-text .tagline {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.date-badge {
  color: var(--mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 22px;
}

.date-badge .date-day {
  color: var(--primary);
  font-weight: 700;
  font-size: 25px;
}

.date-badge .date-line {
  font-weight: 500;
  font-size: 15px;
}

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

.social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white);
  transition: opacity .2s, transform .2s;
}

.social-links a:hover {
  opacity: .85;
  transform: translateY(-2px);
}

.social-links .fb {
  background: #1877f2;
}

.social-links .yt {
  background: #ff0000;
}

.social-links .tw {
  background: #1da1f2;
}

.social-links .ig {
  background: #e1306c;
}

.search-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  cursor: pointer;
  transition: all .2s;
}

.search-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ============================================================
   HEADER SEARCH PANEL
   ============================================================ */
#header-search-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  z-index: 200;
  padding: 14px 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

#header-search-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.search-panel-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-panel-icon {
  color: var(--muted);
  font-size: 18px;
  flex-shrink: 0;
}

.search-panel-input {
  flex: 1;
  border: none;
  border-bottom: 2px solid var(--primary);
  outline: none;
  font-family: var(--font);
  font-size: 17px;
  color: var(--dark);
  background: transparent;
  padding: 6px 8px;
  caret-color: var(--primary);
  min-width: 0;
}

.search-panel-input::placeholder {
  color: var(--muted);
  font-size: 15px;
}

.search-panel-submit {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}

.search-panel-submit:hover {
  background: var(--primary-dk);
}

.search-panel-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: 15px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  flex-shrink: 0;
}

.search-panel-close:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Header Ad Banner */
.header-ad {
  background: #eee;
  border: 1px dashed #ccc;
  text-align: center;
  padding: 12px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-top: 10px;
}

/* ============================================================
   STICKY HEADER WRAP
   ============================================================ */
#site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 1100;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#main-nav {
  background: var(--dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

#main-nav .nav-link {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  color: #ddd !important;
  padding: 12px 13px !important;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}

#main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--primary);
  transition: left .2s, right .2s;
}

#main-nav .nav-link:hover,
#main-nav .nav-link.active {
  color: #fff !important;
}

#main-nav .nav-link:hover::after,
#main-nav .nav-link.active::after {
  left: 0;
  right: 0;
}

/* Dropdown — JS teleports to <body> on open, so only visual styles here */
#main-nav .dropdown-menu {
  background: var(--white);
  border: none;
  border-top: 3px solid var(--primary);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  min-width: 180px;
  padding: 6px 0;
}

#main-nav .dropdown-item {
  font-family: var(--font);
  font-size: 16px;
  color: var(--dark);
  padding: 8px 18px;
  transition: background .15s;
}

#main-nav .dropdown-item:hover {
  background: var(--light-bg);
  color: var(--primary);
}

/* Nav scroll wrap — horizontal scroll, dropdown escapes via position:fixed */
#main-nav .nav-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

#main-nav .nav-scroll-wrap::-webkit-scrollbar {
  display: none;
}

.main-nav-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: max-content;
}

/* ============================================================
   MOBILE TOPBAR
   ============================================================ */
.mob-topbar {
  padding: 8px 12px;
}

.mob-tb-side {
  flex: 0 0 44px;
  display: flex;
  align-items: center;
}

.mob-tb-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-topbar .site-logo-img {
  max-height: 46px;
  max-width: 180px;
}

/* Hamburger button */
.mob-hamburger {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 34px;
}

.mob-hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
.mob-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.mob-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mob-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  max-width: 85vw;
  height: 100%;
  background: var(--white);
  z-index: 1300;
  transform: translateX(-100%);
  transition: transform .3s ease;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 4px 0 24px rgba(0, 0, 0, .2);
}

.mob-drawer.open {
  transform: translateX(0);
}

.mob-drawer-header {
  padding: 14px 16px;
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1;
}

.mob-drawer-header .site-logo-img {
  max-height: 50px;
  max-width: 160px;
}

.mob-drawer-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--mid);
  cursor: pointer;
  padding: 0 6px;
  line-height: 1;
  flex-shrink: 0;
  transition: color .2s;
}

.mob-drawer-close:hover {
  color: var(--primary);
}

.mob-drawer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mob-drawer-nav>ul>li>a,
.mob-drawer-nav>ul>li>.mob-sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background .15s, color .15s;
}

.mob-drawer-nav>ul>li>a:hover,
.mob-drawer-nav>ul>li>.mob-sub-toggle:hover {
  color: var(--primary);
  background: var(--light-bg);
}

.mob-drawer-nav>ul>li>a.active {
  color: var(--primary);
  border-left: 3px solid var(--primary);
  padding-left: 17px;
}

.mob-sub-menu {
  display: none;
  background: var(--light-bg);
}

.mob-sub-menu.open {
  display: block;
}

.mob-sub-menu li a {
  display: block;
  padding: 10px 20px 10px 36px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}

.mob-sub-menu li a:hover {
  color: var(--primary);
}

/* ============================================================
   BREAKING NEWS TICKER
   ============================================================ */
#breaking-news {
  background: var(--primary);
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
}

.breaking-label {
  background: var(--dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 2px 14px;
  border-radius: 3px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  margin-right: 14px;
  flex-shrink: 0;
}

.ticker-wrap {
  overflow: hidden;
  flex: 1;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
  font-size: 16px;
  font-weight: 500;
  will-change: transform;
}

.ticker-content span {
  margin-right: 60px;
}

.ticker-content span::before {
  content: '⬤ ';
  font-size: 9px;
  opacity: .7;
  margin-right: 6px;
}

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

  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.section-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-header h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--primary);
  border-radius: 2px;
}

.more-btn {
  font-size: 13px;
  font-family: var(--font);
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 4px 14px;
  border-radius: 3px;
  font-weight: 600;
  transition: all .2s;
  white-space: nowrap;
}

.more-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow .25s, transform .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-3px);
}

.news-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.news-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}

.news-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.news-card .card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--primary);
  color: #fff;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 8px;
  flex: 1;
}

.card-title a:hover {
  color: var(--primary);
}

.card-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card-meta i {
  font-size: 11px;
}

/* ── Hero Card (large) ── */
.hero-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: box-shadow .25s;
  height: 100%;
}

.hero-card:hover {
  box-shadow: var(--hover-shadow);
}

.hero-card .hero-img-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: #ccc;
}

.hero-card .hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f2f2f2;
  transition: transform .4s;
}

.hero-card .hero-img-wrap .cat-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 11px;
  margin-bottom: 0;
}

.hero-card:hover .hero-img-wrap img {
  transform: scale(1.03);
}

.hero-card .hero-body {
  padding: 20px;
}

.hero-card .hero-title {
  font-size: 23px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 10px;
  color: var(--dark);
}

.hero-card .hero-title a:hover {
  color: var(--primary);
}

.hero-card .hero-excerpt {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-card .hero-meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Small horizontal card ── */
.small-card {
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  gap: 0;
  transition: box-shadow .2s, transform .2s;
  margin-bottom: 12px;
}

.small-card:last-child {
  margin-bottom: 0;
}

.small-card:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-2px);
}

.small-card .sc-img {
  width: 100px;
  min-width: 100px;
  height: 80px;
  overflow: hidden;
  background: #ddd;
  flex-shrink: 0;
}

.small-card .sc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.small-card:hover .sc-img img {
  transform: scale(1.05);
}

.small-card .sc-body {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.small-card .sc-title {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--dark);
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.small-card .sc-title a:hover {
  color: var(--primary);
}

.small-card .sc-meta {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   FEATURED / HERO SECTION
   ============================================================ */
#featured-section {
  padding: 28px 0 18px;
}

/* ── Featured Side Panel ── */
#featured-section .side-panel-col {
  padding-left: 12px;
  padding-right: 0;
}

#featured-section .side-panel {
  background: linear-gradient(160deg, #0f1c2e 0%, #1b3050 100%);
  border-radius: 6px;
  border: 1px solid rgba(100, 160, 220, 0.15);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
  padding: 12px;
  height: 100%;
  justify-content: space-between;
}

#featured-section .side-card {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 8px;
  border-left: 3px solid #c40000;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  min-height: 0;
}

#featured-section .side-card-img {
  display: block;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 6px;
  width: 120px;
}

#featured-section .side-card-img img {
  width: 120px;
  height: 78px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: transform 0.25s;
}

#featured-section .side-card:hover .side-card-img img {
  transform: scale(1.04);
}

#featured-section .side-card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 4px;
  align-items: flex-start;
}

#featured-section .side-card-body .cat-tag {
  font-size: 10px;
  padding: 1px 6px;
  margin-bottom: 2px;
}

#featured-section .side-card-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

#featured-section .side-card-title a {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: #e8f0f8;
  text-decoration: none;
}

#featured-section .side-card-title a:hover {
  color: #ffffff;
}

#featured-section .side-card .card-meta {
  font-size: 11px;
  color: #9dbbd8;
  margin-top: auto;
}

/* Responsive: tablet (< 992px) */
@media (max-width: 991.98px) {
  #featured-section .side-panel-col {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Responsive: phone (< 576px) */
@media (max-width: 575.98px) {
  #featured-section .side-panel {
    padding: 8px;
    gap: 6px;
  }

  #featured-section .side-card {
    padding: 6px;
    gap: 8px;
  }

  #featured-section .side-card-img {
    width: 80px;
  }

  #featured-section .side-card-img img {
    width: 80px;
    height: 54px;
  }

  #featured-section .side-card-title a {
    font-size: 12px;
    line-height: 1.3;
  }

  #featured-section .side-card .card-meta {
    font-size: 10px;
  }

  #featured-section .side-card-body .cat-tag {
    font-size: 9px;
  }
}

/* ============================================================
   CATEGORY SECTIONS
   ============================================================ */
.category-section {
  padding: 22px 0;
}

.category-section+.category-section {
  border-top: 1px solid var(--border);
}

/* ── Ad divider between sections ── */
.ad-divider {
  background: #eee;
  border: 1px dashed #ccc;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  margin: 10px 0;
  border-radius: 4px;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-widget {
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  margin-bottom: 24px;
}

.widget-header {
  background: var(--dark);
  color: #fff;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-header i {
  color: var(--primary);
}

.widget-body {
  padding: 14px 16px;
}

/* Popular news */
.popular-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity .2s;
}

.popular-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popular-item:hover {
  opacity: .8;
}

.pop-rank {
  font-size: 24px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  min-width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.popular-item:nth-child(1) .pop-rank {
  color: var(--primary);
}

.popular-item:nth-child(2) .pop-rank {
  color: #e06010;
}

.popular-item:nth-child(3) .pop-rank {
  color: #c09000;
}

.pop-img {
  width: 70px;
  height: 55px;
  border-radius: 4px;
  overflow: hidden;
  background: #ddd;
  flex-shrink: 0;
}

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

.pop-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--dark);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pop-title a:hover {
  color: var(--primary);
}

.pop-date {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}


/* Sidebar Ad */
.sidebar-ad {
  background: #eee;
  border: 1px dashed #ccc;
  text-align: center;
  padding: 30px 10px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  border-radius: 6px;
  margin-bottom: 24px;
}

/* Facebook widget */
.fb-widget-placeholder {
  background: #e7f0fd;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #1877f2;
  font-weight: 600;
}

.fb-widget-placeholder i {
  font-size: 42px;
  display: block;
  margin-bottom: 10px;
}

.fb-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1877f2;
  color: #fff;
  font-size: 13px;
  font-family: var(--font);
  font-weight: 700;
  border: none;
  padding: 7px 18px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  transition: opacity .2s;
}

.fb-like-btn:hover {
  opacity: .9;
}

/* Newsletter */
.newsletter-widget .widget-body {
  padding: 16px;
}

/* Widget description text */
.nl-widget-desc {
  font-size: 12.5px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.55;
}

/* Feedback message */
.nl-widget-msg {
  font-size: 13px;
  border-radius: 5px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-weight: 500;
}

.nl-widget-msg--success {
  background: #e6f9ee;
  color: #1a7a3a;
  border: 1px solid #a3d9b8;
}

.nl-widget-msg--warning {
  background: #fff8e1;
  color: #8a6000;
  border: 1px solid #ffe082;
}

.nl-widget-msg--error {
  background: #fdecea;
  color: #b71c1c;
  border: 1px solid #f5c6c6;
}

/* Form */
.nl-widget-form {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Input wrap with icon */
.nl-field-wrap {
  position: relative;
  margin-bottom: 2px;
}

.nl-field-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 13px;
  pointer-events: none;
}

.nl-field-input {
  font-family: var(--font);
  font-size: 13.5px;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 8px 10px 8px 32px;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: #fafafa;
}

.nl-field-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 0, 0, .08);
  background: #fff;
}

.nl-field-input.nl-field-invalid {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, .1);
}

/* Inline field errors */
.nl-field-error {
  display: none;
  font-size: 11.5px;
  color: #e53935;
  padding-left: 2px;
  margin-bottom: 4px;
}

/* OR divider between email and phone */
.nl-or-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 600;
}

.nl-or-divider::before,
.nl-or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Old generic input kept for backwards compat */
.newsletter-input {
  font-family: var(--font);
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 12px;
  width: 100%;
  margin-bottom: 8px;
  outline: none;
  transition: border-color .2s;
}

.newsletter-input:focus {
  border-color: var(--primary);
}

.subscribe-btn {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 9px 20px;
  width: 100%;
  cursor: pointer;
  transition: background .2s;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.subscribe-btn:hover {
  background: var(--primary-dk);
}

.subscribe-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark);
  color: #bbb;
  padding: 40px 0 0;
  margin-top: 36px;
}

.footer-logo-text {
  font-size: 30px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: #bbb;
  margin-bottom: 16px;
}

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

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #aaa;
  transition: all .2s;
}

.footer-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.footer-heading {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  font-size: 15.5px;
  color: #ccc;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a::before {
  content: '›';
  color: var(--primary);
  font-weight: 700;
}

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

.footer-contact p {
  font-size: 15.5px;
  color: #ccc;
  margin-bottom: 8px;
  display: grid;
  grid-template-columns: 1.25em 1fr;
  column-gap: 0.5em;
  align-items: center;
}

.footer-contact i {
  color: var(--primary);
  justify-self: center;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 14px 0;
  margin-top: 30px;
  text-align: center;
  font-size: 14.5px;
  color: #aaa;
}

/* ============================================================
   NEWS DETAILS PAGE
   ============================================================ */
.news-detail-wrap {
  padding: 28px 0;
}

.detail-category-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.detail-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.38;
  color: var(--dark);
  margin-bottom: 16px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13.5px;
  color: var(--muted);
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.detail-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.detail-meta i {
  color: var(--primary);
}

.detail-featured-img {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 6px;
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
}

.img-caption {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: -14px;
  margin-bottom: 20px;
  font-style: italic;
}

.detail-body {
  font-size: 17px;
  line-height: 1.95;
  color: #333;
  font-family: var(--font);
}

.detail-body *:not(code):not(pre):not(kbd) {
  font-family: var(--font) !important;
}

.detail-body p {
  margin-bottom: 18px;
}

/* Share buttons */
.share-section {
  margin: 24px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.share-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.share-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  padding: 8px 16px;
  border-radius: 7px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}

.share-btn:hover {
  opacity: .85;
}

.share-btn.fb {
  background: #1877f2;
}

.share-btn.tw {
  background: #1da1f2;
}

.share-btn.wa {
  background: #25d366;
}

.share-copy {
  background: #f4f4f4;
  color: #333;
  border: 1px solid #ddd;
}

.share-copy.copied {
  background: #27ae60;
  color: #fff;
  border-color: #27ae60;
}

/* Related news */
.related-section {
  padding: 28px 0;
}

/* ============================================================
   UTILITIES & HELPERS
   ============================================================ */
.section-wrap {
  padding: 20px 0;
}

.mb-section {
  margin-bottom: 28px;
}

.placeholder-img {
  background: linear-gradient(135deg, #ddd 25%, #ccc 50%, #ddd 75%);
  background-size: 200% 200%;
  animation: shimmer 1.8s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* Heights for placeholder images */
.h-hero {
  height: 320px;
}

.h-card {
  height: 190px;
}

.h-sm {
  height: 80px;
}

.h-pop {
  height: 55px;
}

.h-detail {
  height: 440px;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 991px) {
  .hero-card .hero-img-wrap {
    height: 240px;
  }

  .hero-card .hero-title {
    font-size: 19px;
  }

  .detail-title {
    font-size: 24px;
  }

  #top-header {
    padding: 0;
  }

  #main-nav .nav-link::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .logo-text .name {
    font-size: 22px;
  }

  .header-meta {
    gap: 8px;
  }

  .date-badge {
    display: none;
  }

  .detail-title {
    font-size: 22px;
  }

  .h-hero {
    height: 220px;
  }

  .h-card {
    height: 160px;
  }

  .hero-card .hero-img-wrap {
    height: 200px;
  }
}

@media (max-width: 575px) {
  .section-header h2 {
    font-size: 17px;
  }

  .small-card .sc-img {
    width: 80px;
    min-width: 80px;
  }
}

/* ============================================================
   POLL SECTION
   ============================================================ */
.poll-widget .widget-body {
  padding: 16px;
}

.poll-question {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.55;
}

.poll-option {
  margin-bottom: 10px;
}

/* sidebar: label inside div.poll-option */
.poll-option label,
/* main poll: label IS the .poll-option */
label.poll-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--mid);
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 5px;
  border: 1.5px solid var(--border);
  transition: border-color .2s, background .2s;
  user-select: none;
  line-height: 1.4;
}

.poll-option label:hover,
label.poll-option:hover {
  border-color: var(--primary);
  background: #fff5f5;
}

.poll-option input[type="radio"],
.poll-option input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  min-width: 16px;
  flex-shrink: 0;
  margin: 0;
  /* remove browser default top-margin */
  cursor: pointer;
  vertical-align: middle;
}

.poll-vote-btn {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 9px 0;
  width: 100%;
  cursor: pointer;
  transition: background .2s;
  margin-top: 4px;
}

.poll-vote-btn:hover {
  background: var(--primary-dk);
}

/* Result bars (shown after voting) */
.poll-results {
  display: none;
}

.poll-result-item {
  margin-bottom: 10px;
}

.poll-result-label {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.poll-bar-track {
  height: 10px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.poll-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 99px;
  transition: width 1s ease;
}

.poll-bar-fill.alt {
  background: #e06010;
}

.poll-bar-fill.alt2 {
  background: #1877f2;
}

.poll-bar-fill.alt3 {
  background: #25a244;
}

.poll-total {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  margin-top: 8px;
}

/* Section poll (inline, wider) */
.poll-section-wrap {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  padding: 24px 28px;
  margin: 10px 0;
}

.poll-section-wrap .poll-question {
  font-size: 17px;
}

.poll-section-wrap .poll-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
#hero-slider {
  position: relative;
  background: #111;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform .6s cubic-bezier(.77, 0, .18, 1);
}

.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: brightness(.7);
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .85));
  color: #fff;
  padding: 40px 36px 28px;
}

.slide-caption .s-cat {
  display: inline-block;
  background: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 9px;
  border-radius: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.slide-caption h2 {
  font-size: 27px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.slide-caption h2 a {
  color: #fff;
}

.slide-caption h2 a:hover {
  color: #ffd0d0;
}

.slide-caption .s-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  display: flex;
  gap: 14px;
}

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .45);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--primary);
}

.slider-btn.prev {
  left: 14px;
}

.slider-btn.next {
  right: 14px;
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 12px;
  right: 16px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

@media (max-width: 767px) {
  .slide img {
    height: 260px;
  }

  .slide-caption {
    padding: 24px 16px 16px;
  }

  .slide-caption h2 {
    font-size: 18px;
  }
}

/* ============================================================
   FEATURED / RECOMMENDED TABS SECTION
   ============================================================ */
.tab-section {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  margin-bottom: 24px;
}

.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  background: var(--light-bg);
}

.tab-btn {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  background: none;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}

.tab-btn.active,
.tab-btn:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-pane {
  display: none;
  padding: 18px;
}

.tab-pane.active {
  display: block;
}

.tab-news-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  transition: opacity .2s;
}

.tab-news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tab-news-item:hover {
  opacity: .8;
}

.tab-news-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--border);
  min-width: 26px;
  text-align: center;
  line-height: 1;
}

.tab-news-item:nth-child(1) .tab-news-num {
  color: var(--primary);
}

.tab-news-item:nth-child(2) .tab-news-num {
  color: #e06010;
}

.tab-news-item:nth-child(3) .tab-news-num {
  color: #c09000;
}

.tab-news-img {
  width: 80px;
  min-width: 80px;
  height: 62px;
  border-radius: 4px;
  overflow: hidden;
  background: #ddd;
}

.tab-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tab-news-title {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--dark);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tab-news-title a:hover {
  color: var(--primary);
}

.tab-news-meta {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   COMMENTS SECTION
   ============================================================ */
.comments-section {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  padding: 28px;
  margin-top: 24px;
}

.comments-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.comments-title i {
  color: var(--primary);
}

/* Comment form */
.comment-form-wrap {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 28px;
}

.comment-form-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

.comment-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.cf-input {
  font-family: var(--font);
  font-size: 14px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  padding: 9px 13px;
  width: 100%;
  outline: none;
  background: #fff;
  transition: border-color .2s;
  color: var(--dark);
}

.cf-input:focus {
  border-color: var(--primary);
}

textarea.cf-input {
  resize: vertical;
  min-height: 100px;
  margin-bottom: 12px;
}

.cf-submit {
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 700;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 28px;
  cursor: pointer;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cf-submit:hover {
  background: var(--primary-dk);
}

/* Individual comment */
.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comment-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.comment-item:last-child {
  border-bottom: none;
}

/* Nested reply */
.comment-item.reply {
  margin-left: 52px;
  padding-top: 14px;
  border-left: 3px solid var(--border);
  padding-left: 14px;
  margin-top: 0;
}

.comment-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.comment-avatar.av2 {
  background: #1877f2;
}

.comment-avatar.av3 {
  background: #25a244;
}

.comment-avatar.av4 {
  background: #e06010;
}

.comment-avatar.av5 {
  background: #8e44ad;
}

.comment-body {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.comment-author {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--dark);
}

.comment-date {
  font-size: 12px;
  color: var(--muted);
}

.comment-badge {
  font-size: 11px;
  background: var(--primary);
  color: #fff;
  padding: 1px 7px;
  border-radius: 99px;
  font-weight: 700;
}

.comment-badge.mod {
  background: #1877f2;
}

.comment-text {
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 8px;
}

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

.comment-action-btn {
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: color .2s;
}

.comment-action-btn:hover {
  color: var(--primary);
}

.comment-action-btn.liked {
  color: var(--primary);
}

@media (max-width: 575px) {
  .comment-form-grid {
    grid-template-columns: 1fr;
  }

  .comment-item.reply {
    margin-left: 20px;
  }

  .comments-section {
    padding: 16px;
  }
}

/* ============================================================
   STATIC PAGES (about, terms, privacy, etc.)
   ============================================================ */
.static-page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #3a0000 100%);
  color: #fff;
  padding: 50px 0 40px;
  margin-bottom: 0;
}

.static-page-hero h1 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 8px;
}

.static-page-hero p {
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  margin: 0;
}

.static-breadcrumb {
  background: var(--white);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.static-content-wrap {
  padding: 36px 0 48px;
}

.static-sidebar-nav .list-group-item {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-left: 3px solid transparent;
  transition: all .18s;
  cursor: pointer;
}

.static-sidebar-nav .list-group-item:hover,
.static-sidebar-nav .list-group-item.active {
  background: #fff5f5;
  border-left-color: var(--primary);
  color: var(--primary);
}

.static-sidebar-nav .list-group-item i {
  width: 16px;
  text-align: center;
  color: var(--primary);
}

.static-article {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  padding: 32px 36px;
}

.static-article h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.static-article h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 22px 0 10px;
}

.static-article p {
  font-size: 15.5px;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 14px;
}

.static-article ul,
.static-article ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.static-article li {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 6px;
}

.static-article .highlight-box {
  background: #fff5f5;
  border-left: 4px solid var(--primary);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  margin: 18px 0;
  font-size: 15px;
  color: var(--dark);
  font-weight: 500;
}

.last-updated {
  font-size: 13px;
  color: var(--muted);
  background: var(--light-bg);
  border-radius: 4px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.last-updated i {
  color: var(--primary);
}

/* Contact form */
.contact-form-wrap {
  margin-top: 20px;
}

.cf-row {
  margin-bottom: 14px;
}

.cf-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .static-article {
    padding: 18px 16px;
  }

  .static-page-hero h1 {
    font-size: 25px;
  }
}

/* ============================================================
   NEWSLETTER PAGE
   ============================================================ */
.newsletter-page-box {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  padding: 36px;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.newsletter-page-icon {
  width: 72px;
  height: 72px;
  background: #fff5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary);
  margin: 0 auto 18px;
}

.newsletter-page-box h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.newsletter-page-box p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 20px;
}

.nl-feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 22px;
}

.nl-feature-list li {
  font-size: 14px;
  color: var(--mid);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.nl-feature-list li:last-child {
  border-bottom: none;
}

.nl-feature-list i {
  color: var(--primary);
  width: 16px;
}
}

/* ================================================================
   NEWS LISTING PAGE (news/index.blade.php)
   All classes prefixed with .nl- to avoid collision
================================================================ */

/* ── Top Banner ── */
.nl-top-banner {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

/* ── Ad Banners ── */
.nl-ad-banner {
  background: #f0f0f0;
  border: 1px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 4px;
  text-transform: uppercase;
  overflow: hidden;
}

.nl-ad-728 {
  width: 100%;
  min-height: 90px;
}

.nl-ad-300 {
  width: 100%;
  min-height: 250px;
}

/* ── Breadcrumb bar ── */
.nl-breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
}

.nl-breadcrumb-bar .breadcrumb {
  font-size: 12px;
  margin: 0;
}

.nl-breadcrumb-bar .breadcrumb-item a {
  color: var(--primary);
}

.nl-breadcrumb-bar .breadcrumb-item.active {
  color: var(--muted);
}

/* ── Filter Bar ── */
.nl-filter-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  box-shadow: var(--card-shadow);
}

.nl-filter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Search row: input + submit side by side */
.nl-search-row {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
}

/* Search input */
.nl-search-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.nl-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 13px;
  pointer-events: none;
}

.nl-search-input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 32px 7px 30px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--dark);
  background: var(--light-bg);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.nl-search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 0, 0, .1);
  background: var(--white);
}

.nl-search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 2px 4px;
  font-size: 13px;
  line-height: 1;
}

.nl-search-clear:hover {
  color: var(--primary);
}

/* Category chips */
.nl-cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nl-chip {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mid);
  background: var(--white);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
}

.nl-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(196, 0, 0, .05);
}

.nl-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.nl-search-submit {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 14px;
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
  flex-shrink: 0;
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nl-search-submit:hover {
  background: var(--primary-dk);
}

/* Category select dropdown */
.nl-cat-select {
  flex-shrink: 0;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0 10px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--dark);
  background: var(--light-bg);
  cursor: pointer;
  outline: none;
  max-width: 150px;
  transition: border-color .2s, box-shadow .2s;
}

.nl-cat-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 0, 0, .1);
  background: var(--white);
}

@media (max-width: 575.98px) {
  .nl-cat-select {
    max-width: 110px;
    font-size: 12px;
    padding: 0 6px;
  }
}

/* ── Results count ── */
.nl-results-count {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ── News Card (listing) ── */
.nl-news-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}

.nl-news-card:hover {
  box-shadow: var(--hover-shadow);
  transform: translateY(-3px);
}

/* Thumbnail area */
.nl-thumb-wrap {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.nl-thumb-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}

.nl-news-card:hover .nl-thumb-img {
  transform: scale(1.03);
}

/* YouTube embed */
.nl-yt-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #000;
}

.nl-yt-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* No image placeholder */
.nl-no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  color: #ccc;
  font-size: 2rem;
  min-height: 180px;
}

/* Category tag on image */
.nl-cat-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
}

/* Card body */
.nl-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.nl-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--dark);
  margin: 0;
}

.nl-card-title a {
  color: inherit;
}

.nl-card-title a:hover {
  color: var(--primary);
}

.nl-card-summary {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nl-card-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.nl-card-meta i {
  font-size: 11px;
  margin-right: 3px;
}

.nl-video-badge {
  background: #ff0000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
}

/* ── Empty state ── */
.nl-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.nl-empty-state a {
  color: var(--primary);
  font-weight: 600;
}

/* ── Pagination ── */
.nl-pagination {
  margin-top: 8px;
}

.nl-pagination .pagination {
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nl-pagination .page-link {
  color: var(--primary);
  border-radius: 4px !important;
  border: 1px solid var(--border);
  font-size: 14px;
  padding: 6px 13px;
  font-family: var(--font);
  transition: all .2s;
}

.nl-pagination .page-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.nl-pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.nl-pagination .page-item.disabled .page-link {
  color: #ccc;
}

/* ── Sidebar rank badge ── */
.nl-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 4px;
  flex-shrink: 0;
}

/* ── Category list in sidebar ── */
.nl-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nl-cat-list li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}

.nl-cat-list li:last-child a {
  border-bottom: none;
}

.nl-cat-list li a:hover,
.nl-cat-list li a.active {
  color: var(--primary);
  background: rgba(196, 0, 0, .04);
  padding-left: 20px;
}

/* ================================================================
   RESPONSIVE — News Listing Page
================================================================ */
@media (max-width: 991.98px) {
  .nl-thumb-img {
    height: 200px;
  }

  .nl-ad-728 {
    min-height: 60px;
  }
}

@media (max-width: 767.98px) {
  .nl-search-wrap {
    min-width: 0;
  }

  .nl-thumb-img {
    height: 180px;
  }

  .nl-card-title {
    font-size: 15px;
  }
}

@media (max-width: 575.98px) {
  .nl-thumb-img {
    height: 160px;
  }

  .nl-ad-728 {
    min-height: 50px;
    font-size: 10px;
  }

  .nl-card-body {
    padding: 12px 14px 14px;
  }

  .nl-chip {
    font-size: 11.5px;
    padding: 4px 10px;
  }

  .nl-filter-bar {
    padding: 10px 12px;
  }
}

/* ═══════════════════════════════════════════════════════
   NEWS LISTING — TAG PILLS
   ═══════════════════════════════════════════════════════ */

/* Tag strip inside each news card */
.nl-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 9px;
  padding-top: 9px;
  border-top: 1px solid #f0eeee;
}

.nl-tag {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--primary);
  background: rgba(196, 0, 0, 0.07);
  border: 1px solid rgba(196, 0, 0, 0.22);
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
  line-height: 1.5;
  white-space: nowrap;
}

.nl-tag:hover {
  background: var(--tag-color, var(--primary));
  color: #fff;
  border-color: var(--tag-color, var(--primary));
  transform: translateY(-1px);
  text-decoration: none;
}

.nl-tag.active {
  background: var(--tag-color, var(--primary));
  color: #fff;
  border-color: var(--tag-color, var(--primary));
  font-weight: 700;
}

/* Active tag indicator strip (shown when tag filter is active) */
.nl-active-tag-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 2px;
  flex-wrap: wrap;
}

.nl-active-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px 4px 10px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  background: var(--tag-color, var(--primary));
  border: 1.5px solid var(--tag-color, var(--primary));
  user-select: none;
}

.nl-active-tag-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 10px;
  text-decoration: none;
  transition: background 0.15s;
  margin-left: 2px;
  flex-shrink: 0;
}

.nl-active-tag-remove:hover {
  background: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* Responsive */
@media (max-width: 575.98px) {
  .nl-tag {
    font-size: 10.5px;
    padding: 2px 8px;
  }

  .nl-card-tags {
    gap: 4px;
    margin-top: 7px;
    padding-top: 7px;
  }
}

/* ============================================================
   VIDEO NEWS SIDEBAR WIDGET  (.vn-*)
   ============================================================ */

/* YouTube icon — red */
.vn-widget .widget-header .vn-yt-icon {
  color: #ff0000;
}

/* "See all" link in widget header */
.vn-see-all {
  font-size: 11.5px;
  font-weight: 600;
  color: #e8c5c2;
  text-decoration: none;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: color .15s;
}

.vn-see-all:hover {
  color: #fff;
}

/* ── Main video block ── */
.vn-main {
  border-bottom: 1px solid var(--border);
}

/* Responsive 16:9 YouTube wrapper */
.vn-yt-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #000;
}

.vn-yt-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Info below the embed */
.vn-main-info {
  padding: 12px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Category badge */
.vn-cat-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: .03em;
  align-self: flex-start;
}

/* Main video title */
.vn-main-title {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.45;
}

.vn-main-title:hover {
  color: var(--primary);
}

/* Timestamp used in both main + list items */
.vn-time {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.vn-time i {
  font-size: 11px;
}

/* ── Scrollable video list ── */
.vn-list {
  padding: 4px 16px 8px;
}

.vn-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.vn-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Thumbnail with play icon overlay */
.vn-thumb-link {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 90px;
  height: 56px;
  border-radius: 5px;
  overflow: hidden;
  background: #000;
}

.vn-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .2s;
}

.vn-thumb-link:hover .vn-thumb-img {
  opacity: .8;
}

.vn-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.vn-play-icon i {
  font-size: 24px;
  color: #ff0000;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .55));
  transition: transform .2s;
}

.vn-thumb-link:hover .vn-play-icon i {
  transform: scale(1.15);
}

/* Item body */
.vn-item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vn-item-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.4;
}

.vn-item-title:hover {
  color: var(--primary);
}

/* ── Responsive tweaks ── */
@media (max-width: 575.98px) {
  .vn-thumb-link {
    width: 76px;
    height: 48px;
  }

  .vn-item-title {
    font-size: 13px;
  }
}

/* ============================================================
   VIDEO NEWS SECTION  (.vs-*)  — main-content area
   (pairs with .vn-* sidebar widget, reuses vn-yt-wrap / vn-play-icon)
   ============================================================ */

/* YouTube icon — red in section heading */
.vs-section .section-header h2 .vs-yt-icon {
  color: #ff0000;
  font-size: 18px;
}

/* Main (left) player card */
.vs-main-player {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background: #fff;
}

/* Info strip below the embed */
.vs-main-info {
  background: #fff;
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Title — slightly larger than sidebar edition */
.vs-main-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.5;
}

.vs-main-title:hover {
  color: var(--primary);
}

/* ── Side video list (right column) ── */
.vs-side-list {
  display: flex;
  flex-direction: column;
}

.vs-side-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.vs-side-item:first-child {
  padding-top: 0;
}

.vs-side-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Thumbnail with play-icon overlay (reuses .vn-play-icon) */
.vs-side-thumb {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 110px;
  height: 68px;
  border-radius: 5px;
  overflow: hidden;
  background: #000;
}

.vs-side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .2s;
}

.vs-side-thumb:hover img {
  opacity: .8;
}

.vs-side-thumb:hover .vn-play-icon i {
  transform: scale(1.15);
}

/* Item body */
.vs-side-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.vs-side-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.45;
}

.vs-side-title:hover {
  color: var(--primary);
}

/* ── Video chip in news listing filter bar ── */
.nl-chip--video i {
  color: #ff0000;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .vs-side-thumb {
    width: 90px;
    height: 56px;
  }

  .vs-side-title {
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .vs-main-title {
    font-size: 15px;
  }

  .vs-side-thumb {
    width: 76px;
    height: 48px;
  }
}

/* ============================================================
   Ad Slot Component
   ============================================================ */
.ad-slot {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ad-slot__label {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: #aaa;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ad-slot__image-link {
  display: block;
}

.ad-slot__img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.ad-slot__html,
.ad-slot__script {
  display: block;
}

/* Placeholder shown when no ad is configured for a placement */
.ad-slot--placeholder {
  border: 1px dashed #ddd;
  background: #f9f9f9;
  padding: 12px;
  font-size: 11px;
  color: #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  border-radius: 4px;
}

/* ── Poll Show Page styles ── */
.poll-show-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.poll-show-header {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  padding: 28px 32px 24px;
  margin-bottom: 0;
}

.poll-breadcrumb {
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
}

.poll-breadcrumb a {
  color: #c0392b;
  text-decoration: none;
}

.poll-breadcrumb a:hover {
  text-decoration: underline;
}

.poll-status-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.badge-active {
  background: #e8f8f0;
  color: #27ae60;
  border: 1px solid #a9dfbf;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
}

.badge-closed {
  background: #f4f4f4;
  color: #7f8c8d;
  border: 1px solid #ddd;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
}

.poll-meta-info {
  font-size: 13px;
  color: #888;
}

.poll-meta-info i {
  margin-right: 3px;
}

.poll-show-question {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .poll-show-question {
    font-size: 1.15rem;
  }
}

.poll-show-description {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Vote / Results card */
.poll-vote-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  padding: 24px 32px;
  margin-top: 16px;
}

@media (max-width: 576px) {

  .poll-show-header,
  .poll-vote-card,
  .poll-share-card {
    padding: 18px 16px;
  }
}

/* Options grid */
.poll-option-full {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  font-size: 14.5px;
}

.poll-option-full:hover {
  border-color: #c0392b;
  background: #fdf5f4;
}

.poll-option-full input {
  accent-color: #c0392b;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.poll-option-full.selected {
  border-color: #c0392b;
  background: #fdf5f4;
}

.poll-vote-btn-full {
  background: #c0392b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  margin-top: 6px;
  transition: background .2s;
}

.poll-vote-btn-full:hover {
  background: #a93226;
}

.poll-vote-btn-full:disabled {
  opacity: .65;
  cursor: not-allowed;
}

/* Results */
.poll-result-full-item {
  margin-bottom: 16px;
}

.poll-result-full-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.poll-result-full-label .pct {
  font-weight: 700;
  color: #c0392b;
}

.poll-bar-track-full {
  height: 10px;
  background: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
}

.poll-bar-fill-full {
  height: 100%;
  background: linear-gradient(90deg, #c0392b, #e74c3c);
  border-radius: 8px;
  transition: width .7s cubic-bezier(.4, 0, .2, 1);
}

.poll-total-full {
  text-align: right;
  font-size: 13px;
  color: #888;
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.poll-already-voted {
  font-size: 13px;
  color: #27ae60;
  margin-top: 10px;
}

/* Share card */
.poll-share-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  padding: 20px 32px;
  margin-top: 16px;
}

.poll-share-label {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 14px;
}

.share-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.share-fb {
  background: #1877f2;
  color: #fff;
}

.share-tw {
  background: #000;
  color: #fff;
}

.share-wa {
  background: #25d366;
  color: #fff;
}

.share-tg {
  background: #0088cc;
  color: #fff;
}


/* Back link */
.poll-back-link {
  font-size: 13px;
  margin: 20px 0 10px;
}

.poll-back-link a {
  color: #c0392b;
  text-decoration: none;
}

.poll-back-link a:hover {
  text-decoration: underline;
}

/* polls styles end */

/* ============================================================
   HOMEPAGE REDESIGN 2025 — Hero Section
   ============================================================ */

.hp-featured {
  margin-top: 1rem;
}

/* Hero Card — full-image with gradient overlay */
.hp-hero-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .14);
  transition: box-shadow .3s ease;
}

.hp-hero-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, .22);
}

.hp-hero-link {
  display: block;
  text-decoration: none;
  height: 100%;
}

.hp-hero-img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  max-height: 470px;
  overflow: hidden;
}

.hp-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(.25, .46, .45, .94);
}

.hp-hero-card:hover .hp-hero-img img {
  transform: scale(1.05);
}

.hp-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.4rem 1.4rem;
  background: linear-gradient(to top,
      rgba(0, 0, 0, .92) 0%,
      rgba(0, 0, 0, .55) 55%,
      transparent 100%);
}

.hp-hero-cat {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 3px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.hp-hero-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.42;
  margin: 0 0 .45rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}

.hp-hero-excerpt {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-hero-meta {
  display: flex;
  gap: 1.1rem;
  color: rgba(255, 255, 255, .72);
  font-size: 11.5px;
}

.hp-hero-meta i {
  margin-right: 3px;
}

/* Right-side stacked cards */
.hp-side-card {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: #fff;
  border-radius: 8px;
  padding: .5rem;
  border: 1px solid #efefef;
  transition: box-shadow .22s ease, transform .22s ease;
  flex: 1;
  min-height: 0;
}

.hp-side-card:hover {
  box-shadow: 0 5px 18px rgba(0, 0, 0, .1);
  transform: translateY(-2px);
  border-color: #e0e0e0;
}

.hp-side-card--lead {
  flex: 1.5;
}

.hp-side-img-link {
  flex-shrink: 0;
  display: block;
  width: 110px;
  height: 74px;
  border-radius: 6px;
  overflow: hidden;
}

.hp-side-card--lead .hp-side-img-link {
  width: 130px;
  height: 88px;
}

.hp-side-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.hp-side-card:hover .hp-side-img-link img {
  transform: scale(1.08);
}

.hp-side-body {
  flex: 1;
  min-width: 0;
}

.hp-side-title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.45;
  margin: .2rem 0 .3rem;
}

.hp-side-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color .2s;
}

.hp-side-title a:hover {
  color: #c0392b;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal-section {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   GLOBAL CARD IMPROVEMENTS
   ============================================================ */
.news-card {
  transition: box-shadow .25s ease, transform .25s ease;
}

.news-card:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, .1);
  transform: translateY(-3px);
}

.news-card .card-img-wrap img {
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.news-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .hp-hero-img {
    min-height: 280px;
    max-height: 340px;
  }

  .hp-hero-title {
    font-size: 1.15rem;
  }
}

@media (max-width: 767px) {
  .hp-hero-img {
    min-height: 230px;
    max-height: 280px;
  }

  .hp-hero-title {
    font-size: 1rem;
  }

  .hp-hero-excerpt {
    display: none;
  }

  .hp-side-img-link {
    width: 90px;
    height: 62px;
  }

  .hp-side-card--lead .hp-side-img-link {
    width: 105px;
    height: 72px;
  }

}

@media (max-width: 575px) {
  .hp-hero-img {
    min-height: 190px;
  }

  .hp-hero-overlay {
    padding: 2rem 1rem 1rem;
  }

  .hp-hero-title {
    font-size: .92rem;
  }

  .hp-hero-meta {
    flex-wrap: wrap;
    gap: .5rem;
  }
}

/* homepage redesign end */
/* -- Back to Top Button -- */
.back-to-top-btn {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 9999;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  color: #c40000;
  border: 2px solid #c40000;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .15);
  font-size: 18px;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}

.back-to-top-btn:hover {
  background: #c40000;
  color: #fff;
}

/* -- Top Category News Section -- */
.top-cat-section {
  border: 3px solid #c40000;
  border-radius: 8px;
  padding: 16px 20px 14px;
  margin: 20px 0;
  box-shadow: 0 4px 18px rgba(196, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.10);
}

.top-cat-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0d8d8;
}

.top-cat-badge {
  background: #c40000;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.top-cat-col-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.top-cat-item {
  display: block;
  font-size: .98rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px dashed #e8d8d8;
  line-height: 1.45;
  transition: color .2s;
}

.top-cat-item:hover {
  color: #c40000;
}

.top-cat-item:last-child {
  border-bottom: none;
}

@media (max-width: 575px) {
  .top-cat-section {
    padding: 12px;
  }

  .top-cat-item {
    font-size: 0.88rem;
  }
}