.neighborhood-card {
     border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    overflow: hidden;
    /*margin: 15px !important;*/
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 2px 4px #00000040;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    position: relative !important;
    height: 300px;
    /*margin: 35px !important;*/

}
.neighborhood-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25) !important;
}

.neighborhood-card img {
  width: 100%;
  height: auto !important;
  display: block !important;
  height: 230px !important;
  object-fit: cover !important;
}
.neighborhood-info {
  padding: 10px !important;
  font-family: BentonSans;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 70px;
}
.neighborhood-info div{
    display: flex;
}
.neighborhood-info a {
  margin: 0px !important;
  padding: 0 !important;
  font-size: 14px  !important;
  font-weight: 500 !important;
  color: #002349 !important;    
  line-height: 25px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  width: 100% !important;
}
/* Carousel wrapper */
.neighborhood-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.neighborhood-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.neighborhood-carousel-track .neighborhood-card {
  flex: 0 0 calc(33.333% - 20px);
  box-sizing: border-box;
}

/* Arrows */
.neighborhood-carousel-wrapper-navigation .prev,
.neighborhood-carousel-wrapper-navigation .next,
.featured-neighborhood-carousel-wrapper-navigation .fl-arrow--prev,
.featured-neighborhood-carousel-wrapper-navigation .fl-arrow--next{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  padding: 14px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  transition: background 0.3s ease;
  z-index: 10;
}

.neighborhood-carousel-wrapper-navigation .prev:hover,
.neighborhood-carousel-wrapper-navigation .next:hover{
  background: #b8860b; /* gold hover */
}

.neighborhood-carousel-wrapper-navigation .prev{ left: -70px; }  /* moved further outside */
.neighborhood-carousel-wrapper-navigation .next{ right: -70px; } /* moved further outside */
@media (max-width: 1268px) {
  .neighborhood-carousel-track .neighborhood-card { flex: 0 0 50%; }
  .neighborhood-carousel-wrapper-navigation .prev{ left: 10px; }
  .neighborhood-carousel-wrapper-navigation .next{ right: 10px; }
}
@media (max-width: 668px) {
  .neighborhood-carousel-track .neighborhood-card { flex: 0 0 100% ; }
}

.neighborhood-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.neighborhood-grid .neighborhood-card {
    flex: 0 0 calc(33.333% - 20px);
    box-sizing: border-box;
}

/* Neighborhood Filter Form */
.neighborhood-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  align-items: center;
}

.neighborhood-filter input,
.neighborhood-filter select {
  padding: 10px 15px !important;
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  flex: 1;
  min-width: 150px;
}

.neighborhood-filter button {
  padding: 10px 20px !important;
  background: #002349 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background 0.3s ease !important;
}

.neighborhood-filter button:hover {
  background: #001a35 !important;
}

/* Responsive Grids */
@media (max-width: 1268px) {
  .neighborhood-grid .neighborhood-card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .neighborhood-grid {
    gap: 15px;
  }
  
  .neighborhood-grid .neighborhood-card {
    flex: 0 0 100%;
  }
  
  .neighborhood-filter {
    padding: 15px;
    gap: 10px;
  }
  
  .neighborhood-filter input,
  .neighborhood-filter select,
  .neighborhood-filter button {
    min-width: 100%;
    flex: 0 0 calc(50% - 8px) !important;
  }
}