/* ══════════════════════════════════════════════════════════
   NBNS NEWS - COMPLETE STYLESHEET
   Modern, responsive design with Bootstrap integration
   ══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   GLOBAL RESET & BASE STYLES
   ══════════════════════════════════════════════════════════ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --nbns-red: #D0021B;
  --nbns-dark-red: #8B0000;
  --nbns-gold: #C9963A;
  --nbns-dark: #1a0000;
  --nbns-gradient: linear-gradient(135deg, #1a0000 0%, #2d0a0a 100%);
  --font-primary: 'DM Sans', sans-serif;
  --font-heading: 'Bebas Neue', cursive;
  --font-bengali: 'Noto Serif Bengali', serif;
}

body {
  font-family: var(--font-primary);
  color: #333;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ══════════════════════════════════════════════════════════
   BREAKING NEWS TICKER
   ══════════════════════════════════════════════════════════ */

.ticker-bar {
  background: var(--nbns-red);
  color: white;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
}

.ticker-label {
  background: white;
  color: var(--nbns-red);
  padding: 6px 20px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  flex-shrink: 0;
  margin-left: 20px;
  border-radius: 4px;
}

.ticker-track {
  display: flex;
  gap: 60px;
  animation: scroll 60s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-size: 14px;
  font-weight: 500;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */

.navbar {
  padding: 15px 0;
  border-bottom: 2px solid #f0f0f0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-badge {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: white;
}

.logo-badge span {
  color: white;
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 2px;
}

#logo-image{
  width: 50px;
  height: 50px;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: 2px;
  color: #1a0000;
  line-height: 1;
}

.logo-name em {
  color: var(--nbns-red);
  font-style: normal;
}

.logo-sub {
  font-size: 11px;
  color: #666;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop Nav Links */
.nav-links .nav-link {
  color: #333;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  margin: 0 2px;
  border-radius: 6px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  background: var(--nbns-gradient);
  color: white;
}

/* Action Buttons */
.nav-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nbns-red);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  text-decoration: none;
}

.nav-live:hover {
  background: var(--nbns-dark-red);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(208,2,27,0.4);
  color: white;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.nav-enquiry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nbns-gold);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-enquiry:hover {
  background: #B8862A;
  transform: translateY(-2px);
}

/* Mobile Menu */
.navbar-toggler {
  border: none;
  padding: 8px 4px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ══════════════════════════════════════════════════════════
   SECTION TITLES
   ══════════════════════════════════════════════════════════ */

.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--nbns-dark);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--nbns-red);
}

.section-icon {
  font-size: 36px;
}

/* ══════════════════════════════════════════════════════════
   CATEGORY FILTER
   ══════════════════════════════════════════════════════════ */

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 12px;
}

.filter-btn {
  padding: 10px 20px;
  background: white;
  color: #333;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover {
  border-color: var(--nbns-red);
  color: var(--nbns-red);
}

.filter-btn.active {
  background: var(--nbns-gradient);
  color: white;
  border-color: transparent;
}

/* ══════════════════════════════════════════════════════════
   NEWS CARDS
   ══════════════════════════════════════════════════════════ */

.news-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s;
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card-img-placeholder {
  height: 200px;
  background: var(--nbns-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-img-icon {
  font-size: 80px;
  opacity: 0.3;
}

.card-body {
  padding: 20px;
}

.card-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.card-cat {
  background: var(--nbns-red);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-time {
  font-size: 12px;
  color: #999;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a0000;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #999;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

/* ══════════════════════════════════════════════════════════
   ADVERTISEMENT ZONES
   ══════════════════════════════════════════════════════════ */

.ad-zone {
  background: #f8f8f8;
  border: 1px dashed #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  position: relative;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ad-label {
  font-size: 10px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.ad-loading {
  color: #ccc;
  font-size: 14px;
}

.ad-header {
  max-width: 728px;
  margin: 20px auto;
  min-height: 90px;
}

.ad-sidebar {
  position: sticky;
  max-width: 300px;
  min-height: 250px;
  margin-bottom: 20px;
}

.ad-in-feed {
  max-width: 100%;
  min-height: 90px;
  margin: 40px 0;
}

.ad-mobile-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 10px;
  min-height: 50px;
}

.ad-close {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

/* ══════════════════════════════════════════════════════════
   SIDEBAR WIDGETS
   ══════════════════════════════════════════════════════════ */

.widget {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.widget-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--nbns-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--nbns-red);
}

.trending-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trending-item {
  display: flex;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.trending-item:last-child {
  border-bottom: none;
}

.trending-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--nbns-red);
  min-width: 30px;
}

.trending-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ══════════════════════════════════════════════════════════ */

.newsletter-section {
  background: var(--nbns-gradient);
  padding: 60px 0;
  margin-top: 80px;
}

.newsletter-title {
  font-family: var(--font-heading);
  color: white;
  font-size: 36px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.newsletter-desc {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
}

.newsletter-form {
  max-width: 500px;
}

.newsletter-input {
  height: 55px;
  border-radius: 30px 0 0 30px;
  border: none;
  padding: 0 25px;
  font-size: 15px;
  background: white;
}

.newsletter-input:focus {
  box-shadow: none;
  outline: none;
}

.newsletter-btn {
  height: 55px;
  padding: 0 35px;
  background: var(--nbns-gold);
  color: white;
  border: none;
  border-radius: 0 30px 30px 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.newsletter-btn:hover {
  background: #B8862A;
  color: white;
}

.newsletter-message {
  margin-top: 15px;
  font-size: 14px;
}

.newsletter-message .alert {
  padding: 10px 15px;
  border-radius: 8px;
}

/* ══════════════════════════════════════════════════════════
   ENQUIRY MODAL
   ══════════════════════════════════════════════════════════ */

.enquiry-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.3s ease;
}

.enquiry-modal.active {
  display: flex;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.enquiry-modal-content {
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideIn 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.enquiry-modal-header {
  background: var(--nbns-gradient);
  padding: 30px;
  border-radius: 12px 12px 0 0;
  position: relative;
}

.enquiry-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.enquiry-modal-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

.enquiry-modal-title {
  font-family: var(--font-heading);
  font-size: 32px;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.enquiry-modal-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

.enquiry-modal-body {
  padding: 30px;
}

.enquiry-form-group {
  margin-bottom: 20px;
}

.enquiry-form-label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.enquiry-form-label .required {
  color: var(--nbns-red);
  margin-left: 4px;
}

.enquiry-form-input,
.enquiry-form-textarea,
.enquiry-form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--font-primary);
  transition: border-color 0.3s;
  background: white;
}

.enquiry-form-input:focus,
.enquiry-form-textarea:focus,
.enquiry-form-select:focus {
  outline: none;
  border-color: var(--nbns-red);
}

.enquiry-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.enquiry-form-submit {
  width: 100%;
  padding: 16px;
  background: var(--nbns-red);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-primary);
}

.enquiry-form-submit:hover {
  background: var(--nbns-dark-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(208,2,27,0.3);
}

.enquiry-form-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.enquiry-success-message {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.enquiry-success-message.active {
  display: block;
}

.enquiry-success-icon {
  font-size: 80px;
  margin-bottom: 20px;
  animation: successBounce 0.6s ease;
}

@keyframes successBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.enquiry-success-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.enquiry-success-text {
  color: #666;
  font-size: 16px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */

footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 30px;
  margin-top: 10px;
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-badge {
  width: 40px;
  height: 40px;
  background: var(--nbns-gradient);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-badge span {
  color: white;
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: 1px;
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 2px;
  color: white;
}

.footer-desc {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s;
  font-size: 18px;
}

.social-btn:hover {
  background: var(--nbns-red);
  transform: translateY(-3px);
  color: white;
}

.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.weather-widget {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.weather-temp {
  font-size: 36px;
  font-weight: 700;
  color: var(--nbns-gold);
  margin-bottom: 5px;
}

.weather-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.footer-copy a {
  color: var(--nbns-gold);
}

.footer-kolkata {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════════════
   LOAD MORE BUTTON
   ══════════════════════════════════════════════════════════ */

.btn-load-more {
  padding: 15px 40px;
  background: var(--nbns-gradient);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-load-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(208,2,27,0.3);
}


/* ══════════════════════════════════════════════════════════
   ADVERTISEMENT STYLES
   ══════════════════════════════════════════════════════════ */

.ad-container {
  margin: 20px 0;
  text-align: center;
  overflow: hidden;
}

/* Header Ad */
#ad-header {
  background: #f8f8f8;
  padding: 10px;
  min-height: 90px;
}

/* Sidebar Ad */
#ad-sidebar_right {
  background: #f8f8f8;
  padding: 10px;
  min-height: 250px;
}

.ad-sticky {
  position: sticky;
  top: 80px;
  z-index: 100;
}

/* In-Feed Ad */
#ad-in_feed {
  background: #f8f8f8;
  padding: 15px;
  margin: 30px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

/* Mobile Bottom Ad */
#ad-mobile_bottom {
  display: none;
}

@media (max-width: 767px) {
  #ad-mobile_bottom {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 5px;
  }
  
  #ad-header,
  #ad-sidebar_right {
    display: none;
  }
  
  #ad-in_feed {
    min-height: 250px;
  }
}

/* Ad label */
.ad-container::before {
  content: 'Advertisement';
  display: block;
  font-size: 10px;
  color: #999;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
  /* Mobile Navigation */
  .nav-links {
    margin: 20px 0;
  }
  
  .nav-links .nav-link {
    display: block;
    padding: 12px 20px;
    margin: 5px 0;
  }
  
  /* Hide sidebar on mobile */
  .ad-sidebar {
    display: none;
  }
  
  /* Newsletter */
  .newsletter-title {
    font-size: 28px;
    text-align: center;
  }
  
  .newsletter-desc {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .newsletter-form {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (min-width: 992px) {
  /* Hide mobile sticky ad on desktop */
  .ad-mobile-sticky {
    display: none !important;
  }
}

@media (max-width: 575px) {
  /* Ticker */
  .ticker-label {
    padding: 4px 12px;
    font-size: 11px;
    margin-left: 10px;
  }
  
  .ticker-track span {
    font-size: 12px;
  }
  
  /* Cards */
  .card-img-placeholder {
    height: 180px;
  }
  
  .card-title {
    font-size: 16px;
  }
  
  /* Category Filter */
  .category-filter {
    padding: 15px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  /* Section Title */
  .section-title {
    font-size: 24px;
  }
  
  /* Newsletter */
  .newsletter-input,
  .newsletter-btn {
    height: 50px;
  }
  
  .newsletter-btn {
    padding: 0 25px;
    font-size: 13px;
  }
}

/* ══════════════════════════════════════════════════════════
   UTILITY CLASSES
   ══════════════════════════════════════════════════════════ */

.text-nbns-red {
  color: var(--nbns-red);
}

.bg-nbns-gradient {
  background: var(--nbns-gradient);
}

.card-hidden {
  display: none;
}

.card-visible {
  display: block;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease;
}

/* Loading Spinner */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

/* ══════════════════════════════════════════════════════════
   FEATURED NEWS SLIDER (Light Styled)
   ══════════════════════════════════════════════════════════ */

#featuredNews {
  display: block !important;
  position: relative;
  min-height: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 55px; /* Resolves overlap and bottom padding issue */
  padding: 0 !important;
}

.featured-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.featured-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.featured-slide > a {
  display: flex;
  width: 100%;
  height: 100%;
  color: #333;
  text-decoration: none;
  background: #ffffff;
}

.featured-img {
  width: 55%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.featured-img.placeholder-gradient {
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-icon {
  font-size: 120px;
  opacity: 0.15;
}

.featured-content {
  width: 45%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(90deg, #ffffff 0%, #fafafa 100%);
  position: relative;
}

.featured-category {
  display: inline-block;
  background: var(--nbns-gold);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
  margin-bottom: 20px;
}

.featured-title {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #1a0000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0;
}

.featured-excerpt {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.featured-meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 15px;
}

.featured-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Zoom effect on slider hover */
.featured-slide > a:hover .featured-img {
  transform: scale(1.02);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 📱 Responsive Adjustments */
@media (max-width: 991px) {
  #featuredNews {
    height: auto;
    min-height: auto;
    background: #ffffff;
    margin-bottom: 35px;
  }
  
  .featured-slide {
    position: relative;
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease;
  }
  
  .featured-slide.active {
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  
  .featured-slide > a {
    flex-direction: column;
  }
  
  .featured-img {
    width: 100%;
    height: 220px;
  }
  
  .featured-content {
    width: 100%;
    padding: 25px;
    background: #ffffff;
  }
  
  .featured-title {
    font-size: 20px;
  }
}

/* ══════════════════════════════════════════════════════════
   LATEST NEWS LIST WIDGET
   ══════════════════════════════════════════════════════════ */

.latest-news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.latest-list-item {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
}

.latest-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.latest-list-link {
  display: block;
  text-decoration: none;
}

.latest-list-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.latest-list-tag {
  background: rgba(208, 2, 27, 0.08);
  color: var(--nbns-red);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.latest-list-time {
  font-size: 11px;
  color: #999;
}

.latest-list-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.latest-list-link:hover .latest-list-title {
  color: var(--nbns-red);
}