.neighborhoods-section {
  background-color: #f8fafb;
  padding: 50px 20px;
  margin-bottom: 40px; }

.neighborhoods-inner {
  max-width: 1166px;
  margin: 0 auto; }

.neighborhoods-heading {
  font-family: proxima_nova_rgbold;
  font-size: 30px;
  font-weight: bold;
  color: #373737;
  text-align: center;
  margin-bottom: 8px; }

.neighborhoods-subheading {
  font-size: 15px;
  color: #6b7280;
  text-align: center;
  margin-bottom: 30px; }

.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px; }

.neighborhood-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border: 1px solid #e4eaec;
  border-radius: 8px;
  padding: 14px 16px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease; }
  .neighborhood-item:hover {
    border-color: #4CAF50;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15); }

.neighborhood-pin {
  flex-shrink: 0; }

.neighborhood-text {
  font-size: 15px;
  color: #373737;
  font-weight: 500; }

@media screen and (max-width: 1023px) {
  .neighborhoods-grid {
    grid-template-columns: repeat(3, 1fr); } }

@media screen and (max-width: 767px) {
  .neighborhoods-section {
    padding: 30px 15px; }
  .neighborhoods-heading {
    font-size: 22px; }
  .neighborhoods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px; }
  .neighborhood-item {
    padding: 12px; }
  .neighborhood-text {
    font-size: 14px; } }
