.dw-property-card-wrap {
    height: 100%;
}

.dw-property-card {
    border-radius: 8px;
    border-color: #dfe7eb;
    box-shadow: 0 8px 20px rgba(19, 38, 43, 0.06);
    overflow: hidden;
    transition: all 0.2s ease;
}

.dw-property-card:hover {
    border-color: rgba(var(--color-primary-rgb), 0.35);
    box-shadow: 0 14px 32px rgba(19, 38, 43, 0.12);
    transform: translateY(-2px);
}

.dw-property-media {
    position: relative;
    height: 220px;
    margin: 0;
    overflow: hidden;
    background: #edf1f3;
}

.dw-property-media a {
    display: block;
    width: 100%;
    height: 100%;
}

.dw-property-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dw-property-media::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, rgba(8, 23, 29, 0.42) 0%, rgba(8, 23, 29, 0) 46%);
}

.dw-property-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: calc(100% - 58px);
}

.dw-property-badge {
    padding: 5px 9px;
    color: #1f343b;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
}

.dw-property-badge-primary {
    color: #ffffff;
    background: var(--color-primary);
}

.dw-property-card .btn-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    left: auto;
    width: 34px;
    height: 34px;
    line-height: 34px;
    margin: 0;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(19, 38, 43, 0.18);
}

.dw-property-card .label {
    display: none;
}

.dw-property-details {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    gap: 8px;
    min-height: 125px;
    padding: 18px;
}

.dw-property-title {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.28;
}

.dw-property-title a {
    color: #13262b;
}

.dw-property-title a:hover {
    color: var(--color-primary);
}

.dw-property-location {
    display: -webkit-box;
    min-height: 44px;
    overflow: hidden;
    color: #60717a;
    font-size: 14px;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.dw-property-private {
    color: #60717a;
    font-size: 14px;
    line-height: 1.45;
}

.dw-property-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #edf1f3;
}

.dw-property-price-label {
    display: block;
    color: #7a8a92;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.dw-property-price {
    color: #13262b;
    font-size: 16px;
}

.dw-property-link {
    flex: 0 0 auto;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 800;
}