.rop-property-section{
  background:#f8fafc;
  padding:70px 5%;
}

.rop-property-section-head{
  max-width:1280px;
  margin:0 auto 28px;
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
}

.rop-property-section-head h2{
  margin:0;
  color:#0b1f3a;
  font-family:"Space Grotesk",sans-serif;
  font-size:clamp(2rem,4vw,4rem);
  line-height:1;
  letter-spacing:-.06em;
}

.rop-property-section-head p{
  color:#64748b;
  max-width:620px;
  line-height:1.7;
  font-weight:650;
  margin:14px 0 0;
}

.rop-section-link{
  flex-shrink:0;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#0b1f3a;
  color:#fff;
  padding:12px 18px;
  border-radius:999px;
  font-weight:1000;
  text-decoration:none;
  transition:.25s ease;
}

.rop-section-link:hover{
  background:#123d7a;
  color:#fff;
  transform:translateY(-2px);
}

.rop-premium-grid{
  max-width:1280px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.rop-empty-state{
  grid-column:1/-1;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:28px;
  padding:42px;
  text-align:center;
  color:#64748b;
}

.rop-empty-state i{
  font-size:2rem;
  color:#d90429;
  margin-bottom:12px;
}

.rop-empty-state h3{
  color:#0b1f3a;
  margin:0 0 8px;
}

.rop-empty-state p{
  margin:0;
}

@media(max-width:1180px){
  .rop-premium-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:850px){
  .rop-property-section-head{
    display:block;
  }

  .rop-section-link{
    margin-top:18px;
  }

  .rop-premium-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:560px){
  .rop-property-section{
    padding:50px 4%;
  }

  .rop-premium-grid{
    grid-template-columns:1fr;
  }
}