﻿.listing-search-hero-card,
.listing-search-filter-card,
.listing-search-results-card {
    border: 1px solid #e4e6ef;
    border-radius: 1rem;
    background: #ffffff;
}

.home-listing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e4e6ef;
    border-radius: 0.85rem;
    padding: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .home-listing-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08);
    }

.home-listing-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.65rem;
    background-color: #ffffff;
    border: 1px solid #e4e6ef;
    padding: 6px;
}

.home-listing-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 0.45rem;
    background-color: #ffffff;
}

.home-listing-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    margin-top: 0.85rem;
}

.home-listing-title-wrapper {
    min-height: 48px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.35rem;
    padding: 0 2px;
}

.home-listing-title {
    width: 100%;
    text-align: center;
    line-height: 1.2;
    min-height: 2.4em;
    max-height: 2.4em;
    overflow: hidden;
    position: relative;
}

.home-listing-title-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    padding-right: 18px;
}

.home-listing-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.22;
    max-height: 2.44em;
    min-height: 2.44em;
    word-break: break-word;
    width: 100%;
    text-align: center;
}

.home-listing-location {
    min-height: 18px;
}

.home-listing-price-wrapper {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

.home-listing-price {
    display: inline-block;
    line-height: 1.1;
}

@media (max-width: 991.98px) {
    .listing-search-filter-card {
        margin-bottom: 1.5rem;
    }
}

.listing-search-sort-label {
    white-space: nowrap;
}