/* ===========================================
   ЗЕЛЁНЫЙ СТРОЧНЫЙ ЛИСТИНГ (без площади и old price)
   =========================================== */

.es-listing-row-green {
    margin: 8px 0;
    border-bottom: 1px solid #e9ecef;
    transition: background 0.2s ease;
}

.es-listing-row-green:hover {
    background: rgba(16, 234, 31, 0.04);
}

.es-listing-row-green-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none !important;
    color: #1a1a1a !important;
    gap: 15px;
    flex-wrap: wrap;
}

/* АДРЕС */
.es-row-green-address {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
    min-width: 150px;
}

/* ПРАВАЯ ЧАСТЬ */
.es-row-green-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* КАТЕГОРИЯ */
.es-row-green-category {
    display: inline-block;
    padding: 4px 14px;
    background: #69c200;
    color: #fff !important;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ЦЕНА */
.es-row-green-price {
    font-weight: 700;
    font-size: 18px;
    color: #10ea1f;
    white-space: nowrap;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 768px) {
    .es-listing-row-green-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 12px;
    }
    
    .es-row-green-address {
        font-size: 15px;
        min-width: auto;
        width: 100%;
    }
    
    .es-row-green-meta {
        width: 100%;
        justify-content: space-between;
    }
    
    .es-row-green-price {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .es-listing-row-green-link {
        padding: 8px 10px;
    }
    
    .es-row-green-address {
        font-size: 14px;
    }
    
    .es-row-green-category {
        font-size: 10px;
        padding: 2px 10px;
    }
    
    .es-row-green-price {
        font-size: 15px;
    }
}