/* =========================================================
   NURIA REALTY — CORE LAYOUTS
========================================================= */

/* =========================================================
   INTRO BLOCK
========================================================= */

.nr-intro-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.nr-intro-title{
  font-size:clamp(2rem,4vw,3.5rem);
  margin-bottom:1.5rem;
}

.nr-intro-text{
  font-size:1.02rem;
  color:#666;
  line-height:1.9;
}

.nr-intro-image{
  overflow:hidden;
  min-height:420px;
}

.nr-intro-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* =========================================================
   REPRESENTATION BLOCKS
========================================================= */

.nr-representation-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.nr-representation-card{
  position:relative;
  overflow:hidden;
  background:#f8f8f8;
}

.nr-representation-card img{
  width:100%;
  height:520px;
  object-fit:cover;
  transition:transform .45s ease;
}

.nr-representation-card:hover img{
  transform:scale(1.04);
}

.nr-representation-overlay{
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  padding:34px;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0,0,0,.84) 100%
    );
}

.nr-representation-overlay h3{
  color:#fff;
  margin-bottom:12px;
  font-size:1.5rem;
}

.nr-representation-overlay p{
  color:rgba(255,255,255,.84);
  margin:0;
}

/* =========================================================
   MARKET SECTION
========================================================= */

.nr-market-card{
  padding:42px;
  border:1px solid var(--nr-border);
  height:100%;
  background:#fff;
  transition:all .25s ease;
}

.nr-market-card:hover{
  border-color:var(--nr-red);
  transform:translateY(-4px);
}

.nr-market-card h3{
  font-size:1.4rem;
  margin-bottom:1rem;
}

.nr-market-card p{
  color:#666;
  margin-bottom:0;
}

/* =========================================================
   EDITORIAL LINKS
========================================================= */

.nr-link{
  display:inline-flex;
  align-items:center;
  gap:8px;

  color:var(--nr-red);
  text-decoration:none;

  font-weight:600;
}

.nr-link::after{
  content:'→';
  transition:transform .25s ease;
}

.nr-link:hover{
  color:var(--nr-dark);
}

.nr-link:hover::after{
  transform:translateX(4px);
}

.nr-link{
  ...
}

.nr-link::after{
  content:'→';
}
/* =========================================================
   INSIGHTS PREVIEW
========================================================= */

.nr-insights-card{
  border-top:2px solid var(--nr-red);
  padding-top:24px;
}

.nr-insights-meta{
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:1.4px;
  color:#999;
  margin-bottom:1rem;
}

.nr-insights-title{
  font-size:1.7rem;
  margin-bottom:1rem;
}

.nr-insights-text{
  color:#666;
  line-height:1.9;
}

.nr-insights-wall{
  margin-top:2rem;
  padding:30px;
  background:var(--nr-light);
  border-left:2px solid var(--nr-red);
}

.nr-insights-wall h5{
  margin-bottom:12px;
}

.nr-insights-wall p{
  margin-bottom:20px;
  color:#666;
}

/* =========================================================
   CTA SECTION
========================================================= */

.nr-cta{
  background:#f7f7f5;
  color:var(--nr-dark);
  border-top:1px solid var(--nr-border);
  border-bottom:1px solid var(--nr-border);
}

.nr-cta-title{
  color:var(--nr-dark);
}

.nr-cta-text{
  color:#666;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:991px){
  .nr-intro-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .nr-intro-image{
    min-height:360px;
  }

  .nr-representation-grid{
    grid-template-columns:1fr;
  }

  .nr-representation-card img{
    height:420px;
  }
}

@media (max-width:767px){
  .nr-section{
    padding:80px 0;
  }

  .nr-intro-image{
    min-height:300px;
  }

  .nr-representation-overlay{
    padding:24px;
  }

  .nr-market-card{
    padding:32px;
  }
}