.elementor-8401 .elementor-element.elementor-element-a04e467{--display:flex;}.elementor-8401 .elementor-element.elementor-element-79b685a{--display:flex;}.elementor-8401 .elementor-element.elementor-element-a8b1b6d{--display:flex;}.elementor-8401 .elementor-element.elementor-element-8ade830{--display:flex;}/* Start custom CSS for html, class: .elementor-element-fc98819 *//* 1. Full-bleed section: “escape” any max-width wrapper */
.hero-full-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;

  /* your background */
  background-color: #fff;
  /* vertical padding */
  padding: 60px 0;
}

/* 2. Inner capped container */
.hero-full-bleed .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* 3. Text column */
.hero-text {
  flex: 1 1 300px;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.hero-text .subtitle {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.hero-text .tagline {
  color: #6b9ad3;
  margin-bottom: 2rem;
}
.hero-text .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #8cc2e5;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}

/* 4. Image column */
.hero-image {
  flex: 1 1 300px;
  text-align: right;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 5. Mobile stack */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-image {
    margin-top: 2rem;
    text-align: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-95eec3a *//* ===== Resets & Body ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* ===== Full-bleed Wrapper ===== */
.sil-homes-full-width {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  background-color: #fff;  /* edge-to-edge white */
  padding: 40px 0;
}

/* ===== Inner Container (capped on mobile) ===== */
.sil-homes-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.sil-homes-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #4A4A4A;
}

/* ===== Grid (mobile-first) ===== */
.sil-homes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* ===== Card Styles ===== */
.sil-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.sil-card .card-image {
  width: 100%;
  height: 220px;           /* taller image */
  background: #eee;
  overflow: hidden;
}
.sil-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sil-card .new-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #8CC2E5;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.sil-card .card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sil-card .location {
  font-size: 0.95rem;
  color: #999;
  margin-bottom: 8px;
}
.sil-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #4A4A4A;
}
.sil-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 18px;
  color: #666;
}
.sil-card .card-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: #666;
}
.sil-card .card-icons span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f0f0f0;
  padding: 4px 8px;
  border-radius: 4px;
}

/* ===== Mobile Font Tweaks ===== */
@media (max-width: 768px) {
  .sil-card h3 {
    font-size: 1.1rem;
  }
  .sil-card p {
    font-size: 0.95rem;
  }
}

/* ===== Desktop Override (≥1024px) ===== */
@media (min-width: 1024px) {
  /* lift the cap so grid spans full-bleed wrapper */
  .sil-homes-section {
    max-width: none;
    margin: 0 20px;
    padding: 0;
  }
  /* four equal-width columns */
  .sil-homes-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}/* End custom CSS */