/* BLOG PAGE */

.blog-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  background: #eaf3ff;
  color: #075ebb;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
  background: #075ebb;
  color: white;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

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

.blog-content {
  padding: 20px;
}

.blog-year {
  display: inline-block;
  background: #075ebb;
  color: white;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.blog-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.blog-content p {
  color: #666;
  margin-bottom: 15px;
}

.read-more {
  color: #075ebb;
  font-weight: 600;
  text-decoration: none;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.page-btn {
  border: none;
  background: #075ebb;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}