/* ==========================================================================
   HailGeeks Blog — shared utilities: breadcrumbs, eyebrows, buttons,
   banners, error pages.
   ========================================================================== */

/* ---------- Breadcrumbs ---------- */

.breadcrumbs {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumbs a { color: var(--color-muted); }
.breadcrumbs a:hover { color: var(--color-blue-hover); }
.breadcrumbs i { font-size: 9px; color: var(--color-disabled); }
.breadcrumbs .breadcrumbs__current { color: var(--color-muted); }

/* ---------- Eyebrow pill ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-blue);
  background: var(--color-blue-soft);
  border: 1px solid var(--color-blue-soft-border);
  border-radius: var(--radius-pill);
  padding: 6px 13px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 46px;
  padding: 0 24px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  transition: var(--ease-lift);
}

.btn:hover { transform: translateY(-1px); }

.btn--primary { background: var(--color-blue); color: #fff; }
.btn--primary:hover { background: var(--color-blue-hover); color: #fff; }

.btn--ghost {
  background: var(--color-surface);
  border: 1px solid var(--color-border-input);
  color: var(--color-heading);
}

.btn--ghost:hover { border-color: var(--color-border-blue); color: var(--color-heading); }

.btn--light { background: #fff; color: var(--color-navy); height: 54px; padding: 0 28px; font-size: 15.5px; font-weight: 800; border-radius: var(--radius-md); }

.btn i { font-size: 13px; }
.btn .fa-arrow-right { font-size: 12px; }

/* ---------- Email Alerts banner ---------- */

.alerts-banner {
  background: linear-gradient(120deg, #0b2e4e, #155599);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 48px);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.alerts-banner__text { max-width: 600px; }

.alerts-banner__eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #7fb3f0;
  margin: 0 0 8px;
}

.alerts-banner__heading {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0;
}

.alerts-banner__desc {
  font-size: 16px;
  line-height: 1.55;
  color: #cfe0f0;
  margin: 12px 0 0;
}

.alerts-banner__link { flex: none; }

/* ---------- Navy CTA band (category page bottom) ---------- */

.navy-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--color-navy);
  border-radius: 20px;
  padding: 36px clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-banner);
}

.navy-cta__text { min-width: 260px; flex: 1; }

.navy-cta__heading {
  font-size: clamp(21px, 2.6vw, 27px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 8px;
}

.navy-cta__desc {
  font-size: 15px;
  line-height: 1.55;
  color: #bcd0e3;
  margin: 0;
}

.navy-cta .btn { flex: none; height: 52px; padding: 0 28px; font-size: 15px; }

/* ---------- Error pages (404 / 500) ---------- */

.error-page {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 96px) var(--gutter);
  text-align: center;
}

.error-page__code {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--color-heading);
  line-height: 1;
}

.error-page--500 .error-page__code { color: var(--color-error-500); }

.error-page__heading {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-heading);
  margin: 14px 0 6px;
}

.error-page__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-muted);
  margin: 0 auto 18px;
  max-width: 340px;
}

.error-page__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
