/* BLOG CAROUSEL */

.snp-blog-carousel{
  margin-top:28px;
  padding:22px;
  border-radius:22px;
  background:#fff;
  border:1px solid #e5e7eb;
  box-shadow:0 10px 30px rgba(15,23,42,.045);
}

.blog-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  margin-bottom:18px;
}

.blog-head span{
  color:#4f46e5;
  font-size:9px;
  font-weight:900;
  letter-spacing:3px;
}

.blog-head h2{
  margin-top:7px;
  font-size:24px;
  color:#0f172a;
}

.blog-head a{
  color:#4f46e5;
  font-size:13px;
  font-weight:900;
}

.blog-carousel-wrap{
  position:relative;
}

.blog-track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding:4px;
}

.blog-track::-webkit-scrollbar{
  display:none;
}

.blog-card{
  min-width:340px;
  max-width:340px;
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  border:1px solid #e5e7eb;
  box-shadow:0 10px 26px rgba(15,23,42,.045);
  transition:.3s;
}

.blog-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 42px rgba(79,70,229,.12);
}

.blog-card img{
  width:100%;
  height:150px;
  object-fit:cover;
}

.blog-card div{
  padding:16px;
}

.blog-card span{
  display:inline-flex;
  padding:5px 10px;
  border-radius:999px;
  background:#eef2ff;
  color:#4f46e5;
  font-size:11px;
  font-weight:900;
}

.blog-card h3{
  margin:12px 0 8px;
  font-size:17px;
  line-height:1.35;
  color:#0f172a;
}

.blog-card p{
  font-size:13px;
  line-height:1.55;
  color:#64748b;
}

.blog-card small{
  display:block;
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid #edf2f7;
  font-size:11px;
  color:#64748b;
}

.blog-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#4f46e5;
  font-size:30px;
  box-shadow:0 10px 25px rgba(15,23,42,.12);
  cursor:pointer;
  z-index:2;
}

.blog-prev{left:-16px;}
.blog-next{right:-16px;}

@media(max-width:700px){
  .blog-card{
    min-width:280px;
  }

  .blog-head{
    align-items:flex-start;
    flex-direction:column;
    gap:8px;
  }
}