/* Rental overrides: hero overlay and CTA overlay */
.sa-hero { position: relative; overflow: hidden; }
.sa-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36); /* dark overlay */
  pointer-events: none;
  z-index: 1;
}
.sa-hero::before { z-index: 0; }
.sa-hero-content { position: relative; z-index: 2; }

/* CTA subtle overlay */
.sa-cta-section { position: relative; }
.sa-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,54,93,0.12), rgba(26,54,93,0.28));
  pointer-events: none;
  z-index: 1;
}
.sa-cta-content { position: relative; z-index: 2; }
