.elementor-kit-6{--e-global-color-primary:#084386;--e-global-color-secondary:#9B0F1A;--e-global-color-text:#000000;--e-global-color-accent:#555555;--e-global-typography-primary-font-family:"Geologica";--e-global-typography-primary-font-weight:600;--e-global-typography-primary-line-height:1.5em;--e-global-typography-secondary-font-family:"Geologica";--e-global-typography-secondary-font-weight:500;--e-global-typography-secondary-line-height:1.5em;--e-global-typography-text-font-family:"Geologica";--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.5em;--e-global-typography-accent-font-family:"Geologica";--e-global-typography-accent-font-weight:500;--e-global-typography-accent-line-height:1.5px;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 a{color:#C9E2FF;}.elementor-kit-6 a:hover{color:#FFFFFF;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1300px;}.e-con{--container-max-width:1300px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-kit-6{--e-global-typography-primary-font-size:25px;--e-global-typography-secondary-font-size:20px;--e-global-typography-text-font-size:17px;--e-global-typography-text-line-height:1.4em;--e-global-typography-accent-font-size:17px;--e-global-typography-accent-line-height:1.4em;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6{--e-global-typography-primary-font-size:20px;--e-global-typography-secondary-font-size:18px;--e-global-typography-secondary-line-height:1.4em;--e-global-typography-text-font-size:16px;--e-global-typography-text-line-height:1.3em;--e-global-typography-accent-font-size:16px;--e-global-typography-accent-line-height:1.5em;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* =========================
   News Listing Card (Elementor)
   Class setup:
   Outer container:  news-card
   Image widget:     news-card__img
   Title widget:     news-card__title
   ========================= */

.news-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

/* Hover */
.news-card:hover{
  transform: translateY(-4px);
  border-color: rgba(0,0,0,.12);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

/* Make the image behave like a proper thumbnail */
.news-card .news-card__img img{
  width: 100%;
  height: 220px;          /* change if you want bigger/smaller */
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

/* Slight zoom on hover */
.news-card:hover .news-card__img img{
  transform: scale(1.04);
}

/* Space below image (inside card) */
.news-card > .e-con-inner{
  padding: 12px 12px 14px;
}

/* Title styling */
.news-card__title{
  margin: 10px 0 0 !important;
  line-height: 1.35;
  font-weight: 700;
  font-size: 18px;
  color: #111;
  letter-spacing: .1px;

  /* Nice Nepali rendering */
  font-family: Mukta, Noto Sans Devanagari, Arial, sans-serif;
}

/* Title clamp (2 lines) */
.news-card__title,
.news-card__title a{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

/* Optional: if your title is a link, give a clean hover */
.news-card__title a:hover{
  opacity: .9;
}

/* Mobile adjustments */
@media (max-width: 767px){
  .news-card .news-card__img img{
    height: 180px;
  }
  .news-card__title{
    font-size: 16px;
  }
}/* End custom CSS */