/* ==========================================================
   THE POLITICAL RIFT — RIFT SIGNALS PAGE
   Scope: .rift-signals ONLY
========================================================== */

.rift-signals{
  --rs-accent:#ff6f00;
  --rs-bg:#fdf6e3;
  --rs-text:#333333;
  --rs-muted:rgba(51,51,51,.70);
  --rs-border:rgba(0,0,0,.10);
  --rs-shadow:0 10px 28px rgba(0,0,0,.08);

  background:var(--rs-bg);
  color:var(--rs-text);
}

/* =========================
   HERO
========================== */

.rift-signals .rs-hero{
  position:relative;
  width:100%;
  min-height:600px;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  overflow:hidden;
}

.rift-signals .rs-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.rift-signals .rs-hero-inner{
  position:relative;
  z-index:2;
  min-height:600px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px 20px;
}

.rift-signals .rs-title{
  font-size:clamp(2.4rem,5vw,3.5rem);
  color:var(--rs-accent);
  margin-bottom:14px;
}

.rift-signals .rs-hero-sub{
  font-size:clamp(1.05rem,2vw,1.35rem);
  max-width:900px;
  line-height:1.7;
  color:#e6e6e6;
}

/* =========================
   SECTION BANDS
========================== */

.rift-signals .rs-band{
  padding:44px 20px;
  text-align:center;
  background:var(--rs-bg);
}

.rift-signals .rs-wrap{
  max-width:900px;
  margin:0 auto;
}

.rift-signals .rs-prose{
  max-width:720px;
  margin:0 auto;
  line-height:1.75;
  font-size:1.08rem;
}

.rift-signals .rs-h2{
  font-size:2rem;
  margin-bottom:12px;
}

.rift-signals .rs-subline{
  line-height:1.7;
  margin-bottom:30px;
}

/* =========================
   INDEX SELECTOR BLOCKS
========================== */

.rift-signals .rs-indexes{
  display:flex;
  flex-direction:column;
  gap:34px;
  align-items:center;
}

.rift-signals .rs-index{
  max-width:620px;
  text-align:center;
}

.rift-signals .rs-kicker{
  font-size:.75rem;
  letter-spacing:1.4px;
  color:#888;
  font-weight:700;
  margin-bottom:6px;
}

/* =========================
   BUTTON SELECTORS (FINAL)
========================== */

.rift-signals .rs-btn{
  display:inline-block;
  padding:14px 26px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.14);
  background:#ffffff;
  text-decoration:none;
  font-weight:600;
  color:var(--rs-text);
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  letter-spacing:.2px;
  transition:all .18s ease;
}

.rift-signals .rs-btn:hover{
  background:#ffffff;
  border-color:#ff6f00;
  box-shadow:0 0 0 2px rgba(255,111,0,.18), 0 12px 28px rgba(0,0,0,.10);
  transform:translateY(-1px);
}

/* =========================
   SUMMARY TEXT
========================== */

.rift-signals .rs-summary{
  margin-top:10px;
  font-size:.95rem;
  line-height:1.6;
  color:#555555;
  max-width:560px;
  margin-left:auto;
  margin-right:auto;
}

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

@media (max-width:600px){

  .rift-signals .rs-hero{
    min-height:520px;
  }

  .rift-signals .rs-hero-inner{
    min-height:520px;
  }

  .rift-signals .rs-btn{
    width:100%;
    max-width:340px;
  }

}