/* Fixed sticky header full width for Neve FSE */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;        /* make it full browser width */
  z-index: 9999;
  background: #fff;
  padding-top: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Prevent content hiding behind fixed header */
body {
  padding-top: 30px;  /* adjust this depending on your header height */
  
}
.yoast-breadcrumbs a {
    color: #ccc;
    text-decoration: none;
}
/* 📱 Mobile adjustments */
@media (max-width: 768px) {
  .sticky-header {
    /* padding: 10px 0; /* tighter padding for mobile */
    padding: 10px;
    margin-left: 0px;
    width: 100%;
    position: fixed;
  }
  body {
    padding-top: 30px; /* adjust to match mobile header height */
  }
}