/* --- LİSTE GÖRÜNÜMÜ (YAN YANA İKİLİ YATAY KARTLAR) --- */

/* Masaüstünde Tam İki Sütun Yapar */
@media (min-width: 992px) {
    .office-list-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Mobilde Alt Alta Yapar */
@media (max-width: 991px) {
    .office-list-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

/* Yatay Kartın Ana Yapısı */
.office-list-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px;
    text-decoration: none !important;
    position: relative;
    transition: box-shadow 0.2s;
}

.office-list-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Logo Kutusu (Görseldeki gibi kenarlıklı beyaz alan) */
.list-image-box {
    width: 90px;
    height: 65px;
    flex-shrink: 0;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    margin-right: 15px;
    overflow: hidden;
}

.list-image-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Orta Kısım (Yazılar) */
.list-info-box {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list-office-name {
    font-weight: 700;
    font-size: 15px;
    color: #212529;
    margin-bottom: 4px;
}

.list-office-manager {
    font-size: 13px;
    color: #6c757d;
}

/* Sağ Kısım (Premium ve İl/İlçe) */
.list-meta-box {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding-right: 25px; /* Favori yıldızına boşluk bırakıyoruz */
    min-width: 120px;
}

.list-premium-badge {
    font-size: 13px;
    font-weight: 700;
    color: #d81b60; /* Görseldeki Pembe Renk */
    margin-bottom: 4px;
}

.list-office-location {
    font-size: 12px;
    color: #6c757d;
}

/* Sponsorlu/Premium Kart (Görseldeki Tamamen Pembe Olanlar) */
.office-list-item.sponsored {
    background: #d81b60;
    border-color: #d81b60;
}

.office-list-item.sponsored .list-office-name,
.office-list-item.sponsored .list-office-manager,
.office-list-item.sponsored .list-premium-badge,
.office-list-item.sponsored .list-office-location,
.office-list-item.sponsored .list-office-manager i {
    color: #ffffff !important;
}

/* Favori Yıldızı Konumu (Tam ortada sağ köşede) */
.office-list-item .ofis-favori-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    z-index: 2;
}