/* ===== CRASH COUNSEL NETWORK — PAGE OVERRIDES ===== */

/* Fix inner-page hero banners — remove cutoff image, use gradient instead */
.page-title .background-container {
  display: none !important;
}

.page-title {
  padding: 140px 0 60px !important;  /* top padding covers the absolute header (~100px) + breathing room */
  background: linear-gradient(135deg, #0D0D0D 0%, #1a0404 40%, #0D0D0D 100%) !important;
  border-bottom: 3px solid #8AD705;
  position: relative;
  overflow: hidden;
}

.page-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(164, 224, 60, 0.03) 40px,
    rgba(164, 224, 60, 0.03) 41px
  );
  pointer-events: none;
}

.page-title .service-container {
  background-image: none !important;
  width: 100% !important;
  margin: 0 !important;
  position: relative;
  z-index: 2;
}

.page-title .auto-container {
  position: relative;
  z-index: 2;
}

.page-title h1 {
  color: #FFFFFF !important;
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-breadcrumb li,
.page-breadcrumb li a {
  color: #AAAAAA !important;
}

.page-breadcrumb li a:hover {
  color: #A4E03C !important;
}

.page-breadcrumb li::before {
  color: #555 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-title {
    padding: 120px 0 50px !important;
  }
  .page-title h1 {
    font-size: 34px !important;
  }
}
