/* =========================================
   HOLIDAY PROPERTY CARDS
========================================= */

.listing_list{
  display:grid;
  gap:28px;
  margin-top:24px;
}

/* CARD */

.listing_card{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  background:#0e0e0e;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:
    0 20px 60px rgba(0,0,0,.45);
}

/* IMAGE */

.listing_image{
  position:relative;
  height:520px;
  overflow:hidden;
}

.listing_image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.02);
}

/* OVERLAY */

.listing_image::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.96) 0%,
      rgba(0,0,0,.78) 22%,
      rgba(0,0,0,.32) 48%,
      rgba(0,0,0,.04) 75%,
      rgba(0,0,0,0) 100%
    );
  z-index:1;
}

/* BODY */

.listing_body{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:24px;
}

/* PILLS */

.listing_meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
}

.small_pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:32px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(44,202,202,.16);
  border:1px solid rgba(44,202,202,.35);
  color:#cfffff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
  backdrop-filter:blur(10px);
}

/* TITLE */

.listing_body h2{
  margin:0 0 10px;
  color:#fff;
  font-size:42px;
  line-height:.92;
  font-weight:900;
  letter-spacing:-.05em;
}

/* DESCRIPTION */

.listing_body p{
  margin:0 0 18px;
  color:rgba(255,255,255,.88);
  font-size:18px;
  line-height:1.45;
  max-width:90%;
}

/* META ROW */

.lead_meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:24px;
}

.lead_meta div{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 14px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-size:13px;
  font-weight:700;
  backdrop-filter:blur(8px);
}

/* ACTIONS */

.lead_actions{
  display:flex;
  gap:12px;
}

.lead_actions .secondary_btn{
  flex:1;
  height:52px;
  border:none;
  border-radius:18px;
  background:rgba(15,15,15,.88);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  font-size:15px;
  font-weight:800;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:.18s ease;
}

.lead_actions .secondary_btn:hover{
  transform:translateY(-1px);
  background:rgba(44,202,202,.16);
  border-color:rgba(44,202,202,.35);
}

/* EMPTY */

.empty_state{
  padding:60px 24px;
  border-radius:28px;
  background:#111;
  border:1px solid rgba(255,255,255,.05);
  text-align:center;
}

.empty_state h2{
  margin:0 0 10px;
  color:#fff;
  font-size:28px;
  font-weight:900;
}

.empty_state p{
  margin:0;
  color:#9e9e9e;
}

/* MOBILE */

@media(max-width:768px){

  .listing_image{
    height:500px;
  }

  .listing_body{
    padding:18px;
  }

  .listing_body h2{
    font-size:30px;
  }

  .listing_body p{
    font-size:15px;
    max-width:100%;
  }

  .lead_meta{
    gap:8px;
    margin-bottom:18px;
  }

  .lead_meta div{
    min-height:38px;
    font-size:12px;
    padding:0 12px;
  }

  .lead_actions{
    gap:10px;
  }

  .lead_actions .secondary_btn{
    height:46px;
    font-size:14px;
    border-radius:16px;
  }

  .small_pill{
    height:28px;
    padding:0 12px;
    font-size:10px;
  }
}