.smda-mieszkania-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.smda-mieszkanie-card {
    position: relative;
    flex: 0 1 calc(33.333% - 20px);
    box-sizing: border-box;
    border-radius: 0;
    background: #ffffff;
    padding: 22px 26px;
    transition: background-color 0.2s;
}

.smda-mieszkanie-card:hover {
    background-color: #eaebec;
}

.smda-card-status {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    color: #fff;
}

.smda-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    background-color: currentColor;
}

.smda-status-label {
    text-transform: capitalize;
}

.smda-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.smda-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 12px;
}

.smda-card-content {
    display: flex;
    flex-direction: column;
}

.smda-card-title {
    font-weight: 700;
    margin: 0 0 12px 0;
}

.smda-card-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-bottom: 10px;
    font-size: 14px;
    flex-direction: row;
}

.smda-card-building,
.smda-card-floor,
.smda-card-rooms,
.smda-card-area {
    margin-right: 10px;
}

.smda-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.smda-card-price {
    font-size: 16px;
}

.smda-card-more {
    color: #000;
    text-decoration: underline;
    font-size: 13px;
}

.smda-card-area {
    margin-right: 10px;
    font-weight: 500; /* albo dowolnie dopasować */
}


@media (max-width: 900px) {
    .smda-mieszkanie-card {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .smda-mieszkanie-card {
        flex: 0 1 100%;
    }
}

.smda-mieszkanie-card {
    position: relative;
    flex: 0 1 calc(33.333% - 20px);
    box-sizing: border-box;
    padding: 22px 26px;
    background: #ffffff;
}

.smda-card-status {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
}

.smda-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.smda-status-label {
    color: #000;
    text-transform: capitalize;
}
