.loop-neighborhood {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style-type: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    overflow: hidden;
    border-radius: 10px;
}

.loop-neighborhood a {
    text-decoration: none;
    color: black;
}

.loop-neighborhood a:hover {
    color: black;
}

.loop-neighborhood figure {
    margin: 0;
    position: relative;
    margin-bottom: 10px;
    height: 250px;
}

.loop-neighborhood img {
  height: 100%;
  object-fit: cover;
}

.loop-neighborhood figcaption {
    display: flex;
    justify-content: center;
    width: 100%;
    transform: translateY(20%);
    position: absolute;
    bottom: 0;
    left: 0;
}

.loop-neighborhood figcaption span {
    display: flex;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    text-transform: uppercase;
    background: #859179;
    font-family: Transat, Arial, sans-serif;
    padding: 4px 18px 3px;
}

.loop-neighborhood .neighborhood-details {
    text-align: center;
    padding: 20px;
}

.loop-neighborhood .neighborhood-subtitle {
    margin-bottom: 0px;
    font-size: 14px;
}

.loop-neighborhood .neighborhood-title {
    margin-top: 0px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
}


