/* =========================================
   OpenEstate Immobilienliste – Clean Layout
   Bild oben / Titel / Details / Buttons
   ========================================= */

/* Card */
#openestate_listing .openestate_listing_entry{
  display:grid;
  grid-template-columns:1fr;
  grid-template-areas:
    "image"
    "title"
    "col1"
    "col2"
    "actions";
  row-gap:10px;
  min-width:0;
}

/* Bild */
#openestate_listing .openestate_listing_entry img{
  grid-area:image;
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:12px;
  display:block;
}

/* Titel */
#openestate_listing .openestate_listing_entry > a{
  grid-area:title;
  display:block;
  font-size:18px;
  font-weight:700;
  line-height:1.35;
  color:#111;
  text-decoration:none;

  /* Umbruch erzwingen */
  white-space:normal;
  overflow-wrap:anywhere;
  word-break:break-word;
}

/* Falls OpenEstate span benutzt */
#openestate_listing .openestate_listing_entry > a span{
  white-space:normal;
  overflow-wrap:anywhere;
}

/* Detailspalten */
#openestate_listing .col_1{ grid-area:col1; }
#openestate_listing .col_2{ grid-area:col2; }

/* Listen */
#openestate_listing ul{
  list-style:none;
  padding:0;
  margin:0;
}

#openestate_listing li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:8px 12px;
  border-bottom:1px solid #c0c0c0;
  font-size:14px;

  background:#a0a0a0;
  color:#111;
}

/* Preis leicht hervorheben */
#openestate_listing .col_2 li:nth-child(3){
  font-size:16px;
  font-weight:700;
}

/* Buttons */
#openestate_listing .openestate_actions,
#openestate_listing .actions,
#openestate_listing .openestate_listing_actions{
  grid-area:actions;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:8px;
}

#openestate_listing a[href*="details"],
#openestate_listing a[href*="expose"],
#openestate_listing a[href*="fav"],
#openestate_listing a[href*="contact"]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,0.14);
  text-decoration:none;
}

/* Mobile */
@media (max-width:768px){

  #openestate_listing .openestate_listing_entry img{
    height:190px;
  }

  #openestate_listing .openestate_listing_entry > a{
    font-size:16px;
  }

}