.site-footer,
.footer-bar,
.footer-bar-align-center,
.site-info {
  display: none !important;
}


/* Kill GeneratePress header, nav, footer */
.site-header,
.main-navigation,
.site-footer,
.footer-bar,
.site-info {
  display: none !important;
}

/* Remove top spacing GP reserves */
body {
  padding-top: 0 !important;
}


/* Hide author + date meta on USPS Insider articles */
.uspsi-meta{
  display: none !important;
}

/* ===== USPS INSIDER PRIMARY NAV (Calm Authority) ===== */

.main-navigation {
  display: block !important;
  background: #0e0e0f;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.main-navigation .main-nav ul {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 16px 20px;
  margin: 0;
  list-style: none;
}

.main-navigation .main-nav ul li {
  margin: 0;
}

.main-navigation .main-nav ul li a {
  color: #e6e6e6;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  padding: 6px 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
  border-bottom: 2px solid transparent;
}

.main-navigation .main-nav ul li a:hover {
  color: #ff3b3b;
  border-bottom: 2px solid #ff3b3b;
}

.main-navigation .main-nav ul li.current-menu-item a,
.main-navigation .main-nav ul li.current_page_item a {
  color: #ffffff;
  border-bottom: 2px solid #ff3b3b;
}

/* Mobile */
@media (max-width: 768px) {
  .main-navigation .main-nav ul {
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
  }

  .main-navigation .main-nav ul li a {
    font-size: 14px;
  }
}


/* === USPS INSIDER SITEWIDE FOOTER === */
.uspsi-site-footer {
  background: #0e0e0f;
  color: #e6e6e6;
  padding: 48px 20px 24px;
  margin-top: 60px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.uspsi-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
}

.uspsi-footer-col h3,
.uspsi-footer-col h4 {
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 800;
}

.uspsi-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.uspsi-footer-col li {
  margin-bottom: 8px;
}

.uspsi-footer-col a {
  color: #cfcfcf;
  text-decoration: none;
  font-weight: 600;
}

.uspsi-footer-col a:hover {
  color: #ff3b3b;
}

.uspsi-footer-tagline {
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
}

.uspsi-footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #9a9a9a;
}

/* Floating USPS 955 Hub Button */
.uspsi-float955{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99999;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 16px;
  border-radius: 999px;

  font-weight: 800;
  font-size: 14px;
  letter-spacing: .2px;
  text-decoration: none;

  background: #111;
  color: #fff;

  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);

  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.uspsi-float955:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.30);
  opacity: .98;
}

.uspsi-float955:active{
  transform: translateY(0);
}

/* Mobile safe area support */
@supports (padding: max(0px)) {
  .uspsi-float955{
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
  }
}

body.page-id-3647 .uspsi-float955{
  display: none;
}