/* ============================================================
   Filter Bar — used on blogs.php, events.php, gallery.php
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-bar a {
  display: inline-block;
  padding: 9px 24px;
  border: 2px solid #e8540a;
  border-radius: 30px;
  color: #e8540a;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  background: transparent;
}

.filter-bar a:hover,
.filter-bar a.active {
  background: #e8540a;
  color: #fff;
  border-color: #e8540a;
}

/* ============================================================
   Empty States — blogs, events, gallery
   ============================================================ */
.page-empty-state {
  width: 100%;
  text-align: center;
  padding: 70px 20px;
  display: flex;
  justify-content: center;
}

.page-empty-state .empty-icon {
  font-size: 60px;
  color: #f5b08a;
  margin-bottom: 18px;
}

.page-empty-state h4 {
  font-size: 22px;
  color: #e8540a;
  margin-bottom: 10px;
}

.page-empty-state p {
  color: #6c757d;
  font-size: 15px;
}

/* ============================================================
   Pagination — blogs, events, gallery
   ============================================================ */
.page-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 50px;
  padding-bottom: 10px;
}

.page-pagination a,
.page-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 2px solid #e8540a;
  border-radius: 8px;
  color: #e8540a;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
  background: transparent;
}

.page-pagination a:hover,
.page-pagination a.current {
  background: #e8540a;
  color: #fff;
}

.page-pagination span.disabled {
  border-color: #ccc;
  color: #aaa;
  cursor: default;
}
