/* RentAHouse.pk — isolated homepage dealer card patch
   This file intentionally contains NO global layout rules. */

.homepage-dealer-card{
  margin-top:20px;
  width:100%;
  max-width:none;height:134px;
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  overflow:hidden;
  border:1px solid #eadfc9;
  border-radius:14px;
  background:#fffdf8;
}

.homepage-dealer-photo{
  min-width:0;
  overflow:hidden;
  background:#f2eee5;
}

.homepage-dealer-photo img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}

.homepage-dealer-info{
  min-width:0;
  padding:12px 20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.homepage-dealer-label{
  display:block;
  margin-bottom:3px;
  color:#0F6B3A;
  font-size:11px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:.045em;
  text-transform:uppercase;
}

.homepage-dealer-info h2{
  margin:0 0 3px;
  font-size:21px;
  line-height:1.12;
  letter-spacing:-.02em;
}

.homepage-dealer-info p{
  margin:0 0 8px;
  color:#526058;
  font-size:12px;
}

.homepage-dealer-actions{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}

.homepage-dealer-actions a{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border:1px solid #d8e6dc;
  border-radius:9px;
  background:#fff;
  font-size:12px;
  font-weight:800;
}

.homepage-dealer-whatsapp{
  color:#0F6B3A;
  background:#EAF7EF!important;
}

.homepage-dealer-chat{
  color:#17211b;
}

/* Keep the existing WhatsApp SVG from growing inside this isolated card. */
.homepage-dealer-actions .whatsapp-inline{
  width:18px!important;
  height:18px!important;
  min-width:18px!important;
  min-height:18px!important;
  max-width:18px!important;
  max-height:18px!important;
  flex-basis:18px!important;
  margin-right:5px!important;
}

@media(max-width:900px){
  .homepage-dealer-card{
    width:100%;
    max-width:none;
    grid-template-columns:190px minmax(0,1fr);
    min-height:138px;
  }
  .homepage-dealer-photo{height:138px}
}

@media(max-width:560px){
  .homepage-dealer-card{
    display:block;
    min-height:0;
  }
  .homepage-dealer-photo{
    width:100%;
    height:190px;
  }
  .homepage-dealer-photo img{
    object-position:center center;
  }
  .homepage-dealer-info{
    padding:15px;
  }
  .homepage-dealer-info h2{
    font-size:19px;
  }
  .homepage-dealer-actions a{
    flex:1 1 0;
  }
}





/* V3 exact boundary test:
   X = full existing left column.
   Y = calculated in dealer-home-test-v3.php so dealer bottom equals Top 4 bottom. */
@media (min-width:901px){
  .homepage-dealer-card{
    width:100%!important;
    max-width:none!important;
    overflow:hidden!important;
  }
  .homepage-dealer-photo{
    overflow:hidden!important;
  }
  .homepage-dealer-photo img{
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
  }
}


/* Final tiny polish: spacing between chat bubble and label */
.homepage-dealer-chat{
  display:inline-flex!important;
  align-items:center!important;
}
.homepage-dealer-chat .live-chat-bubble{
  display:inline-block;
  margin-right:6px;
  line-height:1;
}
.homepage-dealer-chat .live-chat-text{
  display:inline-block;
}
