/* ================================
   Sub Sale Page
   ================================ */

/* --- Call-to-action banner with background --- */
.cta-banner {
  background-image: url('../images/ipropertylistings.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: clamp(250px, 45vh, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* subtle dark overlay */
}

.cta-overlay {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.cta-overlay h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
}

.cta-overlay a {
  color: #f35525;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.cta-overlay a:hover {
  color: #ff6a3d;
  text-decoration: underline;
}