/* ============ Page banner (archive / page) ============ */
.page-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 320px;
  padding: 90px 0 54px;
  background: var(--bg);
  color: #eef9ff;
  border: 0;
  display: block;
}

.page-banner-media {
  position: absolute;
  top: -30px;
  right: -30px;
  bottom: -30px;
  left: -30px;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-banner-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  filter: blur(14px) saturate(1.2);
  opacity: 0.7;
  transform: scale(1.06);
}

.page-banner-surface {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 25% 20%, rgba(59, 130, 246, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(8, 22, 34, 0.25) 0%, rgba(8, 22, 34, 0.7) 55%, rgba(8, 22, 34, 0.88) 100%);
  pointer-events: none;
}

.page-banner .flux-container {
  position: relative;
  z-index: 2;
}

.page-banner-inner {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: inherit;
  width: auto;
}

.page-banner-inner h1 {
  font-size: clamp(30px, 4vw, 52px);
}

/* ============ Filter bar ============ */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 26px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid var(--border);
  background: rgba(17, 24, 39, .8);
  color: var(--muted);
  border-radius: 10px;
  padding: 8px 13px;
  font-size: 13px;
  cursor: pointer;
  transition: .2s ease;
  display: inline-block;
  text-decoration: none;
}

.chip:hover,
.chip.is-active {
  color: #fff;
  border-color: var(--blue);
  background: rgba(37, 99, 235, .22);
}

.filter-select {
  height: 38px;
  background: rgba(17, 24, 39, .8);
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 12px;
  font-size: 13px;
}

/* ============ List (category) ============ */
.list-wrap {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.list-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  transition: .2s ease;
}

.list-item:hover {
  background: rgba(17, 24, 39, 0.28);
  padding-left: 10px;
  padding-right: 10px;
  border-bottom-color: rgba(59, 130, 246, .35);
}

.list-item h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--heading);
  line-height: 1.3;
  font-weight: 700;
}

.list-item h3 a { color: inherit; }
.list-item h3 a:hover { color: var(--blue-light); }

.list-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* ============ Pagination ============ */
.pagination-wrap { margin-top: 34px; }

.page-navigator {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

.page-navigator li a,
.page-navigator li span {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(17, 24, 39, .6);
  font-size: 14px;
  white-space: nowrap;
}

.page-navigator .current span,
.page-navigator .current a,
.page-navigator a:hover {
  background: var(--blue-2);
  color: #fff;
  border-color: var(--blue);
}

