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

.featuredListingsHeading {
    margin: 0 auto;
    text-align: center;
    width: 95%;
}

.featuredListingsHeading h2 {
    color: #171c2a;
    font-size: 45px;
    font-weight: 500;
    margin: 0;
}

.featuredListingsSubtitle {
    color: #242323;
    font-size: 16px;
    margin: 10px auto;
    max-width: 600px;
}

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

.listingCards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    justify-items: center;
    margin: auto;
    padding-top: 3rem;
    width: 95%;
}

.card {
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    color: inherit !important;
    display: flex;
    flex-direction: column;
    text-align: left;
    text-decoration: none;
    width: 320px;
}

.card:hover,
.card:focus {
    color: inherit !important;
    text-decoration: none;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.cardBody,
.cardFooter {
    padding: 16px;
}

.cardPrice {
    color: #09426a;
    font-size: 1.5rem;
    font-weight: 500;
}

.cardAddress {
    font-weight: 600;
    margin-bottom: 0;
}

.cardCity {
    font-weight: 300;
    margin-bottom: 5px;
}

.card-footer {
    font-size: 14px;
    margin-top: auto;
}

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

.blueBtn:hover {
    background-color: #343434;
    color: #fafafa !important;
}

@media (min-width: 1100px) {
    .listingCards {
        max-width: 1100px;
    }
}