.blog-page {
  max-width: 1300px;
  margin: auto;
  padding: 40px 20px;
}

/* FILTER BAR */
.blog-filters form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.blog-filters input,
.blog-filters select {
  padding: 10px 14px;
  background: #181b22;
  color: #fff;
  border: 1px solid #2a2f3a;
  border-radius: 6px;
}

.blog-filters button {
  background: #7a1c1a;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.blog-filters button:hover {
  background: #912323;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.blog-card {
  background: #111822;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 15px;
}

.blog-content h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.blog-content p {
  color: #c7c7c7;
  font-size: 14px;
  line-height: 1.4;
}

.blog-date {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}

/* Remove underline everywhere in cards */
.blog-link {
  text-decoration: none;
  color: inherit;
}

/* Card hover polish */
.blog-card {
  background: #111822;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Image zoom on hover */
.blog-img {
  overflow: hidden;
}

.blog-img img {
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.08);
}

/* Reset button */
.reset-btn {
  padding: 10px 16px;
  background: #2a2f3a;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}

.reset-btn:hover {
  background: #3a3f4a;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 50px 0 20px;
  flex-wrap: wrap;
}

.pagination a {
  padding: 8px 14px;
  background: #181b22;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

.pagination a:hover {
  background: #7a1c1a;
}

.pagination a.active {
  background: #7a1c1a;
  font-weight: 600;
}
