/* ------------------------- News Corner Section CSS Start ----------------------------- */
/* ═══════════════════════════════════════════════════════════
   NEWS CORNER & CIRCULARS — Slider CSS (Date Circle Fixed)
   Primary : #466439  |  Gold : #c8a84b
   Fonts   : Teko (heading) + Roboto (body)
   Fix     : Date circle ab puri dikhi — overflow:hidden se bahar
   ═══════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Teko:wght@500;600;700&family=Roboto:wght@300;400;500;600;700&display=swap");

#news_region {
  --p: #466439;
  --pd: #2f4526;
  --pl: #eef4ea;
  --gold: #c8a84b;
  --td: #0d1a0b;
  --tb: #2a3828;
  --tl: #7a9070;
  --bd: #cfdec8;
  --bl: #e2eed9;
  --w: #ffffff;
  --bg: #f4f6f2;
  --fh: "Teko", sans-serif;
  --fb: "Roboto", sans-serif;
}

#news_region {
  border-radius: 6px !important;
  overflow: hidden !important;
  border: 1px solid var(--bd) !important;
  box-shadow:
    0 2px 8px rgba(40, 80, 30, 0.07),
    0 8px 24px rgba(40, 80, 30, 0.09) !important;
}

/* HEADER */
#news_region .t-Region-header {
  background: #466439 !important;
  background-image: none !important;
  padding: 18px 24px 16px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border-bottom: 2px solid var(--bl) !important;
  position: relative !important;
}

#news_region .t-Region-headerIcon .t-Icon {
  color: var(--p) !important;
  font-size: 15px !important;
}

#news_region .t-Region-title {
  font-family: var(--fh) !important;
  font-size: 1.35rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
}

/* ALL CIRCULARS BUTTON */
#news_region .t-Button {
  position: relative !important;
  overflow: hidden !important;
  border: 1.5px solid var(--p) !important;
  border-radius: 3px !important;
  color: var(--p) !important;
  font-family: var(--fb) !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 7px 16px !important;
  box-shadow: none !important;
  transition:
    color 0.3s ease,
    box-shadow 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

#news_region .t-Button::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: var(--p) !important;
  transform: scaleX(0) !important;
  transform-origin: left center !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 0 !important;
}

#news_region .t-Button .t-Button-label,
#news_region .t-Button .t-Icon {
  position: relative !important;
  z-index: 1 !important;
  color: inherit !important;
}

#news_region .t-Button .t-Icon--right {
  transition: transform 0.25s ease !important;
}

#news_region .t-Button:hover::before {
  transform: scaleX(1) !important;
}

#news_region .t-Button:hover {
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(70, 100, 57, 0.3) !important;
}

#news_region .t-Button:hover .t-Icon--right {
  transform: translateX(4px) !important;
}

#news_region .t-Button:active {
  transform: translateY(1px) !important;
}

/* REGION BODY */
#news_region .t-Region-body {
  background: var(--bg) !important;
  padding: 24px 28px !important;
  position: relative !important;
}

#news_region .t-Region-buttons {
  display: none !important;
}

/* SLIDER OUTER */
#news_region .nc-slider-outer {
  position: relative !important;
  padding: 0 44px !important;
}

/* ARROWS */
#news_region .nc-arrow-btn {
  position: absolute !important;
  top: 40% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  width: 38px !important;
  height: 38px !important;
  background: var(--w) !important;
  border: 1.5px solid var(--bd) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: var(--p) !important;
  font-size: 16px !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(40, 80, 30, 0.12) !important;
  line-height: 1 !important;
}

#news_region .nc-arrow-btn:hover {
  background: var(--p) !important;
  border-color: var(--p) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(40, 80, 30, 0.28) !important;
}

#news_region .nc-arrow-btn.nc-prev {
  left: 0 !important;
}

#news_region .nc-arrow-btn.nc-next {
  right: 0 !important;
}

/* TRACK */
#news_region .nc-track-wrap {
  overflow: hidden !important;
}

#news_region .nc-track {
  display: flex !important;
  gap: 20px !important;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ═══════════════════════════════════════════
   CARD — overflow: visible ZAROORI hai
   date circle card ke andar position:absolute se aata hai
   ═══════════════════════════════════════════ */

#news_region .nc-card {
  background: var(--w) !important;
  border-radius: 10px !important;
  overflow: visible !important;
  border: 1px solid #e0e8da !important;
  box-shadow: 0 2px 16px rgba(40, 80, 30, 0.09) !important;
  display: flex !important;
  flex-direction: column !important;
  flex-shrink: 0 !important;
  position: relative !important;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease !important;
}

#news_region .nc-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 12px 32px rgba(40, 80, 30, 0.18) !important;
}

/* ═══════════════════════════════════════════
   IMAGE WRAP — overflow:hidden sirf image ke liye
   date badge yahan ke ANDAR nahi hoga template mein
   ═══════════════════════════════════════════ */

#news_region .nc-img-wrap {
  position: relative !important;
  height: 200px !important;
  overflow: hidden !important;
  border-radius: 10px 10px 0 0 !important;
  flex-shrink: 0 !important;
  background: var(--pd) !important;
}

#news_region .nc-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.45s ease !important;
  filter: brightness(0.9) !important;
}

#news_region .nc-card:hover .nc-img-wrap img {
  transform: scale(1.05) !important;
}

#news_region .nc-img-wrap.nc-no-img {
  background: linear-gradient(135deg, var(--p) 0%, var(--pd) 100%) !important;
}

#news_region .nc-img-wrap.nc-no-img img {
  display: none !important;
}

/* ═══════════════════════════════════════════
   DATE CIRCLE
   .nc-card pe position:absolute
   top = image height (200px) - circle half (28px) = 172px
   Template mein .nc-date-badge ko .nc-img-wrap ke BAHAR
   directly .nc-card ke child ke roop mein rakho
   ═══════════════════════════════════════════ */

#news_region .nc-date-badge {
  position: absolute !important;
  top: 172px !important;
  left: 20px !important;
  z-index: 10 !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  background: var(--p) !important;
  border: 3px solid var(--w) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 14px rgba(40, 80, 30, 0.32) !important;
  pointer-events: none !important;
}

#news_region .nc-d-day {
  font-family: var(--fh) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1 !important;
  display: block !important;
}

#news_region .nc-d-mon {
  font-family: var(--fb) !important;
  font-size: 7px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  color: var(--gold) !important;
  text-transform: uppercase !important;
  display: block !important;
  margin-top: 1px !important;
  line-height: 1 !important;
}

/* CONTENT */
#news_region .nc-body {
  padding: 40px 18px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  flex: 1 !important;
}

#news_region .nc-tag {
  display: none !important;
}

#news_region .nc-title {
  font-family: var(--fh) !important;
  font-size: 1.35rem !important;
  font-weight: 600 !important;
  color: var(--td) !important;
  line-height: 1.2 !important;
  margin: 0 0 10px !important;
  text-align: left !important;
  letter-spacing: 0.3px !important;
}

#news_region .nc-desc {
  font-family: var(--fb) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #6b7566 !important;
  line-height: 1.75 !important;
  margin: 0 0 18px !important;
  text-align: left !important;
  flex: unset !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

#news_region .nc-readmore {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: var(--fb) !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  color: #ffffff !important;
  background: var(--p) !important;
  padding: 10px 22px !important;
  border-radius: 4px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.22s ease !important;
  width: auto !important;
}

#news_region .nc-readmore:hover {
  background: var(--pd) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 14px rgba(40, 80, 30, 0.3) !important;
}

#news_region .nc-arrow {
  font-size: 14px !important;
  transition: transform 0.2s ease !important;
  display: inline-block !important;
}

#news_region .nc-readmore:hover .nc-arrow {
  transform: translateX(4px) !important;
}

/* DOTS */
#news_region .nc-dots {
  display: flex !important;
  justify-content: center !important;
  gap: 6px !important;
  margin-top: 20px !important;
}

#news_region .nc-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: var(--bd) !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  border: none !important;
  padding: 0 !important;
}

#news_region .nc-dot.nc-on {
  background: var(--p) !important;
  width: 20px !important;
  border-radius: 4px !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #news_region .t-Region-header {
    padding: 14px 18px 12px !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }

  #news_region .t-Region-title {
    font-size: 1.1rem !important;
    letter-spacing: 3px !important;
  }

  #news_region .t-Region-body {
    padding: 18px !important;
  }

  #news_region .nc-slider-outer {
    padding: 0 36px !important;
  }

  #news_region .nc-img-wrap {
    height: 170px !important;
  }

  #news_region .nc-date-badge {
    top: 142px !important;
  }

  /* 170 - 28 */
  #news_region .nc-title {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 480px) {
  #news_region .t-Region-title {
    font-size: 1rem !important;
    letter-spacing: 2.5px !important;
  }

  #news_region .t-Region-body {
    padding: 14px !important;
  }

  #news_region .nc-slider-outer {
    padding: 0 32px !important;
  }

  #news_region .nc-arrow-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 13px !important;
  }

  #news_region .nc-img-wrap {
    height: 180px !important;
  }

  #news_region .nc-date-badge {
    top: 152px !important;
  }

  /* 180 - 28 */
  #news_region .nc-title {
    font-size: 1.15rem !important;
  }

  #news_region .nc-desc {
    font-size: 12.5px !important;
  }
}

/* ------------------------- News Corner Section CSS End ----------------------------- */
