/* ===========================================
   ЗЕЛЁНЫЙ СТРОЧНЫЙ ЛИСТИНГ
   =========================================== */

.es-listing-row-green {
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
    background: #fff;
}

.es-listing-row-green:hover {
    background: #f7f9fc;
}

.es-listing-row-green-link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 20px;
    padding: 12px 15px;
    text-decoration: none !important;
    color: #333 !important;
}

/* ===== АДРЕС ===== */
.es-row-green-address {
    flex: 1;
    min-width: 150px;
    font-weight: 500;
    font-size: 15px;
    color: #1a1a1a;
    line-height: 1.3;
}

/* ===== ПРАВАЯ ЧАСТЬ ===== */
.es-row-green-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== КАТЕГОРИЯ ===== */
.es-row-green-category {
    display: inline-block;
    background: #69c200;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ===== ЦЕНА ===== */
.es-row-green-price {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #10ea1f !important;
    white-space: nowrap;
}

/* ===== ПЛОЩАДЬ ===== */
.es-row-green-area {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #666 !important;
    white-space: nowrap;
}

/* ===========================================
   АДАПТИВНОСТЬ
   =========================================== */

@media (max-width: 768px) {
    .es-listing-row-green-link {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px 12px;
        padding: 8px 12px;
    }
    
    .es-row-green-address {
        flex: 1 1 100%;
        min-width: auto;
        font-size: 14px;
        order: 1;
    }
    
    .es-row-green-meta {
        flex: 1 1 100%;
        justify-content: space-between;
        order: 2;
    }
    
    .es-row-green-price {
        font-size: 16px !important;
    }
    
    .es-row-green-area {
        font-size: 13px !important;
    }
    
    .es-row-green-category {
        font-size: 11px;
        padding: 3px 12px;
    }
}

@media (max-width: 480px) {
    .es-listing-row-green-link {
        padding: 6px 10px;
        gap: 4px 8px;
    }
    
    .es-row-green-address {
        font-size: 13px;
    }
    
    .es-row-green-price {
        font-size: 15px !important;
    }
    
    .es-row-green-area {
        font-size: 12px !important;
    }
    
    .es-row-green-category {
        font-size: 10px;
        padding: 2px 10px;
    }
}