.blogs{
  max-width: 1050px;
  margin: 110px auto 60px;
  padding: 20px;
}

.blog-title{
  font-size: 26px;
  margin-bottom: 15px;
}

.blog-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
  gap: 18px;
}

.blog-card{
  background: rgba(255,255,255,.06);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  transition: .25s ease;
  cursor: pointer;
}

.blog-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.3);
}

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

.blog-info{
  padding: 14px;
}

.blog-date{
  font-size: 12px;
  opacity: .7;
}

.blog-info h3{
  margin: 6px 0;
  font-size: 18px;
}

.blog-info p{
  font-size: 13px;
  opacity: .8;
}

.blog-tools{
  margin: 10px 0 18px;
  display: flex;
  gap: 10px;
}

.blog-tools input,
.blog-tools select{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  outline: none;
}

.blog-tools input{
  flex: 1;
}

.pagination{
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 6px;
}

.page-btn{
  padding: 7px 13px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.page-btn.active{
  background: white;
  color: black;
}

.skeleton{
  background: linear-gradient(90deg,#1b1f2b 25%,#2a3045 37%,#1b1f2b 63%);
  background-size: 400% 100%;
  animation: shimmer 1.3s infinite;
}

@keyframes shimmer{
  0%{background-position:-400px 0}
  100%{background-position:400px 0}
}

.skeleton-card{
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
}