/*
 * taxonomy.css
 * Loaded on category and tag archive pages.
 */

/* Hero — reuses .post-hero / .post-hero-inner from main.css.
   Extra bottom padding so the grid sits tightly below. */
.tax-hero .post-hero-inner {
  padding-bottom: 48px;
}

/* Eyebrow label above the heading */
.tax-eyebrow {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

/* Page title */
.tax-hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 12px;
  max-width: 800px;
}

/* Optional description */
.tax-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 600px;
}

/* Post count */
.tax-meta {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

/* Pagination */
.tax-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0 8px;
  flex-wrap: wrap;
}

.tax-pagination a,
.tax-pagination span {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.tax-pagination a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.tax-pagination .current {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.tax-pagination .dots {
  border: none;
  background: none;
  color: var(--gray);
}

@media (max-width: 900px) {
  .tax-hero .post-hero-inner {
    padding-bottom: 36px;
  }
}
