/* =========================================================
   NURIA REALTY — INSIGHTS SYSTEM
========================================================= */

/* =========================================================
   ARTICLE LAYOUT
========================================================= */

.nr-article{
  max-width:860px;
  margin:auto;
}

.nr-article-meta,
.nr-insights-meta{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;

  margin-bottom:2rem;

  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:1.6px;

  color:#8a8a8a;
}

.nr-article-title{
  font-size:clamp(2.4rem,5vw,4.5rem);
  line-height:1.04;
  letter-spacing:-2px;

  margin-bottom:2rem;

  color:var(--nr-dark);
}

.nr-article-intro{
  font-size:1.2rem;
  line-height:2;
  color:#555;

  margin-bottom:3rem;
}

.nr-article p{
  font-size:1.04rem;
  line-height:2;
  color:#4d4d4d;

  margin-bottom:1.8rem;
}

/* =========================================================
   ARTICLE IMAGE
========================================================= */

.nr-article-image{
  margin:60px 0;
  overflow:hidden;
}

.nr-article-image img{
  width:100%;
  height:auto;
  display:block;
}

/* =========================================================
   TOPIC LABEL
========================================================= */

.nr-insights-topic{
  margin-top:10px;
  margin-bottom:2rem;

  font-size:.82rem;
  font-weight:600;

  letter-spacing:1.2px;
  text-transform:uppercase

/* =========================================================
   ACCESS WALL / GATE
========================================================= */

.nr-access-wall,
.nr-insights-wall{
  margin:70px 0 0;
  padding:48px;

  background:#f7f7f5;
  border-left:2px solid var(--nr-red);
}

.nr-access-wall h3,
.nr-insights-wall h5{
  font-size:1.9rem;
  margin-bottom:1rem;
}

.nr-access-wall p,
.nr-insights-wall p{
  color:#666;
  margin-bottom:2rem;
}

/* =========================================================
   SIGNATURE
========================================================= */

.nr-insight-signature{
  margin-top:70px;
  padding-top:30px;

  border-top:1px solid var(--nr-border);
}

.nr-insight-signature p{
  font-size:.95rem;
  color:#777;
  margin:0;
}

/* =========================================================
   INSIGHTS GRID
========================================================= */

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

.nr-insights-grid-card h3{
  font-size:1.5rem;
  margin-bottom:1rem;
}

.nr-insights-grid-card p{
  color:#666;
  line-height:1.9;
}

/* =========================================================
   SUBSCRIBE SECTION
========================================================= */

.nr-subscribe-box{
  padding:60px;
  background:#f7f7f5;
  text-align:center;
}

.nr-subscribe-box h2{
  margin-bottom:1.4rem;
}

.nr-subscribe-box p{
  max-width:760px;
  margin:0 auto 2rem;
  color:#666;
}

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

@media (max-width:991px){

  .nr-access-wall,
  .nr-insights-wall{
    padding:40px;
  }

  .nr-subscribe-box{
    padding:50px 40px;
  }
}

@media (max-width:767px){

  .nr-article-title{
    letter-spacing:-1.2px;
  }

  .nr-access-wall,
  .nr-insights-wall{
    padding:32px;
  }

  .nr-subscribe-box{
    padding:40px 28px;
  }
}