/* Kill gradient banding by using a solid background */
body { background: var(--bg) !important; }

/* Remove any section or layout borders/shadows that can look like lines */
.site-header, .site-footer, section, .container, .hero, #projects {
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  background-image: none !important;
}

/* Nuke any pseudo-element bars/stripes from sections or header/footer */
section::before, section::after,
.site-header::before, .site-header::after,
.site-footer::before, .site-footer::after {
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
}

/* Remove heading underlines regardless of where they came from */
h2::before, h2::after,
section h2::before, section h2::after,
#objective h2::after, #education h2::after {
  content: none !important;
  display: none !important;
  height: 0 !important;
  background: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Hide any <hr> separators if present */
hr { display: none !important; }
