@media only screen and (max-width: 1280px) {
    .mob-listings-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 84px 4px 5px;
        gap: 0px 0;
        box-sizing: border-box;
        max-width: 100%;
    }

    .mob-listing-card {
        width: 48%;
        margin: 1%;
        background-color: #ffffff;
        border: 1px solid #007782;
        border-radius: 9px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        height: 260px;
        padding: 4px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

    .mob-ilan-kullanici {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 4px 10px 5px 11px;
        font-size: 13px;
    }

    .mob-profil-resmi {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 3px;
        margin-left: -9px;
    }

    .mob-kullanici-adi {
        font-weight: 500;
        color: #333;
        flex: 1;
        font-size: 13px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mob-image-wrapper {
        position: relative;
    }

    .mob-ilan-resim {
        width: 100%;
        height: 130px;
        object-fit: cover;
        display: block;
    }

    .mob-favori-ikon {
        position: absolute;
        top: 8px;
        right: 8px;
        color: #007782;
        font-size: 20px;
        background: #ffffff;
        border-radius: 50%;
        padding: 5px;
        width: 31px;
        height: 31px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #ddd;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
        z-index: 2;
    }



    .mob-ilan-detay {
        padding: 3px 4px 0px;
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .mob-ilan-baslik {
        font-size: 0.95rem;
        font-weight: 500;
        color: #333;
        font-family: "Inter", sans-serif;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-top: 9px;
    }

    .mob-ilan-fiyat {
        font-size: 15px;
        font-weight: bold;
        color: #007782;
        margin-top: -4px;
        font-family: "Inter", sans-serif;
    }

    .mob-ilan-konum {
        font-size: 11px;
        color: #777;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 2px;
    }

    .mob-ilan-tarih {
        white-space: nowrap;
    }

    .custom-fav-icon.clicked {
        color: red !important;
        background-color: rgba(255, 255, 255, 0.8);
    }

    /* Tablet (768px ve üzeri) için 3 sütun düzeni */
    @media (min-width: 768px) {
        .mob-listing-card {
            width: calc(33.333% - 12px);
            margin: 6px;
        }
    }
}