#block-featuredproperties {
    background-color: #c1d42e;
}

.featuredListings {
    color: #fafafa;
    padding: 50px 0;
    text-align: center;
}

.featuredListings h2 {
    font-weight: 500;
    margin: 0;
}

.featuredLoadingMessage {
    padding-top: 3rem;
    text-align: center;
}

.listingCards {
    margin: auto;
    padding-top: 2rem;
    max-width: 1300px;
}

.listingCard {
    border-radius: 2px;
    height: 300px;
    overflow: hidden;
    padding: 0 !important;
    position: relative;
    width: 100%;
}

.listingLink {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.listingLink:hover ~ .listingOverlay,
.listingLink:focus ~ .listingOverlay {
    transform: translate3d(0, 71%, 0);
}

.listingLink:hover ~ .listingTitle,
.listingLink:focus ~ .listingTitle {
    transform: translate3d(0, 0, 0);
}

.listingOverlay {
    background-color: rgba(255, 255, 255, .9);
    color: #2c9be5;
	display: flex;
	flex-direction: column;
	height: 100%;
    justify-content: center;
	position: absolute;
    text-align: left;
	top: 0;
	transition: transform 300ms;
	transform: translate3d(0, 83%, 0);
    width: 100%;
}

.listingImg {
    display: block;
	height: 100%;
    object-fit: cover;
    width: 100%;
}

.listingTitle {
    display: flex;
    font-size: 18px;
    justify-content: space-between;
    margin: 0;
    padding: 1rem;
    transform: translate3d(0, -0, 0);
    transition: transform 300ms;
}

.listingAddress {
    font-size: 14.5px;
    font-weight: 700;
}

.listingPrice {
    font-size: 14.5px;
}

.listingBody {
    color: #3f3f46;
    flex-grow: 1;
    gap: 1rem;
	padding: 0 1rem 1rem 1rem;
	transition: opacity 500ms 100ms;
}

.listingInfo {
    font-size: 17px;
}

.featuredMoreBtn {
    background-color: #fafafa;
    border-radius: 5px;
    color: #3f3f46;
    cursor: pointer;
    display: inline-block;
    font-size: 17px;
    margin-top: 3rem;
    padding: 10px 20px;
    transition: all .1s ease-in-out;
}

.featuredMoreBtn:hover {
    background-color: #f4f4f5;
    color: #3f3f46 !important;
}

@media (min-width: 768px) {
    .featuredListings {
        padding: 100px 0;
    }

    .featuredListings h2 {
        font-size: 3.5rem !important;
    }
}