/* ============ BLOG LISTING ============ */
.blog-hero {
  /* background: linear-gradient(135deg, #003178, #0d47a1); */
  background-image:url(../new-image/blog-banner/2.png) ;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(
    circle at 50% 0%,
    rgba(255, 255, 255, 0.1),
    transparent 60%
  ); */
  background:linear-gradient(to right, rgb(0 49 120 / 32%), rgb(3 34 78 / 41%));
}
.blog-hero .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.blog-hero h1 {
  font-size: clamp(36px, 5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  position: relative;
}
.blog-hero .breadcrumb-light
{
      color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 14px;
    z-index: 1;
    position: relative;
}
.blog-hero .breadcrumb-light a{
      color: rgba(255, 255, 255, 0.85);
}
.blog-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.blog-listing-section
{
    padding:60px 0 00px;
}
/* Featured */
.featured-post {
    max-width: 1280px;
    margin: -40px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}
.featured-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: var(--shadow-md);
}
.featured-img {
  aspect-ratio: 16/11;
  background: linear-gradient(135deg, #dde6f7, #a8b9d8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 90px;
  font-weight: 800;
}
.featured-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tag-pill {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.featured-body h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 14px;
}
.featured-body h2 a {
  color: var(--ink);
}
.featured-body h2 a:hover {
  color: var(--primary);
}
.featured-body p {
  color: var(--ink-soft);
  margin: 0 0 20px;
  font-size: 15.5px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}
.author-chip {
  display: flex;
  align-items: center;
  gap: 8px;
}
.author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.blog-filter-section
{
  padding: 60px 0px  40px;
}

/* Filters */
.blog-filters {
  
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-pills a {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--outline);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  transition: 0.2s var(--ease);
}
.category-pills a:hover,
.category-pills a.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.blog-search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--outline);
  border-radius: 999px;
  padding: 8px 16px;
  gap: 8px;
  min-width: 260px;
}
.blog-search input {
  border: 0;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  flex: 1;
  background: transparent;
}

/* Grid */
.blog-grid {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid  #73778357;
  transition: 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.blog-card .img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #dde6f7, #a8b9d8);
  display: flex;
  align-items: stretch;
  justify-content: center;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
}
    .blog-card .img img{
        width:100%;
    }
    .blog-card .img .tag-pill {
        position: absolute;
        top: 14px;
        left: 14px;
        margin: 0;
        background: #fff;
        color: var(--primary);
    }
.blog-card .body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
    .blog-card h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 10px;
        line-height: 1.35;
        display: -webkit-box;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
.blog-card h3 a {
  color: var(--ink);
}
.blog-card h3 a:hover {
  color: var(--primary);
}
.blog-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0 0 16px;
  flex: 1;
}
    .blog-card p {
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Show only 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
.read-more {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  border-top: 1px solid var(--outline);
  padding-top: 16px;
  margin-top: auto;
  width: 100%;
}
.read-more:hover {
  gap: 10px;
}

@media (max-width: 992px) {
  .featured-card {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .featured-body {
    padding: 28px;
  }
}
