.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
    height: 327px;
}

.project-card:hover .project-card-image {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.project-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Badge */
.project-card-badge {
    position: absolute;
    top: 14px;
    left: 20px;
    z-index: 3;
}

.project-card-badge-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 6px 12px;

    border-radius: 24px;
    background: rgba(62, 58, 57, 0.25);

    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    backdrop-filter: blur(8px);
}

/* Overlay */
.project-card-overlay {
    position: absolute;
    inset: auto 0 0 0;
    height: 150px;

    background:
        linear-gradient(
            180deg,
            rgba(62, 58, 57, 0) 0%,
            rgba(62, 58, 57, 0.90) 80%
        );

    backdrop-filter: blur(10px);

    mask-image: linear-gradient(
        to bottom,
        transparent,
        rgba(62, 58, 57, 0) 0%,
        rgba(62, 58, 57) 60%,
        rgba(62, 58, 57)
    );
}

/* Content */
.project-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 2;

    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 12px;
    line-height: 1.2;
}

/* Price */
.project-card-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.project-card-price-range {
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-card-price-info {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-shadow: 0 0 4px rgba(0,0,0,.25);
    font-family: 'Montserrat', sans-serif;
}

.project-card-price-currency {
    font-family: 'Lato', sans-serif;
}

.project-card-price-min,
.project-card-price-max {
    font-family: 'Montserrat', sans-serif;
}

.project-card-installment {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.project-card-installment-label,
.project-card-installment-period {
    color: #E8E8E8;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.project-card-installment-price {
    color: #E8E8E8;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

/* Property Info */
.project-card-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.project-card-title {
    margin: 0;
    text-align: left;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-card-location-text {
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 24px;
}

.project-card-location-text i {
    background: linear-gradient(180deg, var(--Tosca-Primary-Tosca-100, #50C3CB) 0%, var(--Tosca-Primary-Tosca-300, #006A81) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 16px;
    line-height: 1;
}